被检设备

This commit is contained in:
sjl
2024-11-06 20:31:07 +08:00
parent ea254245c7
commit 6abac988c7
8 changed files with 812 additions and 121 deletions

View File

@@ -4,7 +4,7 @@
<el-form :model='formContent' ref='dialogFormRef' :rules='rules' class='form-two'>
<el-divider >基础数据</el-divider>
<el-form-item label='数据模型' :label-width='140' prop='dataType'>
<el-select v-model="formContent.dataType" clearable placeholder="请选择资源类型">
<el-select v-model="formContent.dataType" clearable placeholder="请选择数据模型">
<el-option
v-for="item in dictStore.getDictData('High_Cate')"
:key="item.id"
@@ -262,7 +262,7 @@ import { el } from 'element-plus/es/locale';
const open = (sign: string, data: Dict.ResDictPq) => {
titleType.value = sign
dialogVisible.value = true
console.log(dictStore)
//console.log(dictStore)
selectedStatMethods.value = data.statMethod ? data.statMethod.split(',') : []
if (data.id) {
formContent.value = { ...data }

View File

@@ -19,7 +19,7 @@
</template>
</ProTable>
</div>
<pq-popup :refresh-table='proTable?.getTableList' ref='pqPopup'/>
<PqPopup :refresh-table='proTable?.getTableList' ref='pqPopup'/>
</template>
<script setup lang='tsx' name='dict'>