Files
pqs-9100_client/frontend/src/views/machine/testScript/components/setValueTable.vue

203 lines
6.7 KiB
Vue
Raw Normal View History

2024-12-30 14:43:13 +08:00
import { ref } from "vue"
2024-12-26 09:28:19 +08:00
<template>
2025-02-24 08:38:54 +08:00
<el-dialog title="检测项目信息" v-model="dialogVisible" @close="close" v-bind="dialogBig" width="1400">
<div class="table-container">
<el-table
:data="tableData"
:header-cell-style="{
textAlign: 'center',
backgroundColor: '#003078',
color: '#fff'
}"
stripe
:cell-style="{ textAlign: 'center' }"
height="600px"
>
<el-table-column type="index" label="序号" width="60" />
<el-table-column prop="pname" label="参考设定值类型" />
<el-table-column prop="name" label="参考设定值子类型" />
<el-table-column prop="phase" label="相别" />
<el-table-column prop="value" label="参考设定值" />
<el-table-column label="操作">
<template #default="{ row }">
<el-button type="primary" link :icon="EditPen">编辑</el-button>
</template>
</el-table-column>
</el-table>
</div>
<!-- <ProTable
2025-02-17 08:39:18 +08:00
ref="proTable"
:columns="columns"
2024-12-30 14:43:13 +08:00
:request-api="getTableList"
:pagination="false"
2025-02-17 08:39:18 +08:00
:toolButton="false"
:style="{ height: '530px', maxHeight: '530px', overflow: 'hidden' }"
2024-12-30 14:43:13 +08:00
>
2025-02-24 08:38:54 +08:00
2025-02-17 08:39:18 +08:00
<template #tableHeader="scope">
<el-button v-auth.testScript="'add'" type="primary" :icon="CirclePlus" @click="add">新增</el-button>
<el-button
v-auth.testScript="'delete'"
type="danger"
:icon="Delete"
plain
:disabled="!scope.isSelected"
@click="batchDelete(scope.selectedListIds)"
>
删除
</el-button>
2024-12-30 14:43:13 +08:00
</template>
2025-02-24 08:38:54 +08:00
2025-02-17 08:39:18 +08:00
<template #operation="scope">
<el-button
v-auth.testScript="'upgrade'"
type="primary"
v-if="scope.row.type !== 1"
link
:icon="Share"
@click="copy(scope.row)"
>
复制
</el-button>
<el-button
v-auth.testScript="'edit'"
type="primary"
link
:icon="EditPen"
:model-value="false"
@click="edit(scope.row)"
>
编辑
</el-button>
<el-button
v-auth.testScript="'delete'"
type="primary"
link
:icon="Delete"
@click="batchDelete(scope.row)"
>
删除
</el-button>
2024-12-30 14:43:13 +08:00
</template>
2025-02-24 08:38:54 +08:00
</ProTable> -->
2024-12-30 14:43:13 +08:00
2025-02-17 08:39:18 +08:00
<template #footer>
<div>
2025-02-24 08:38:54 +08:00
<el-button @click="close"> </el-button>
2025-02-17 08:39:18 +08:00
<el-button type="primary" @click="save">保存</el-button>
</div>
</template>
</el-dialog>
<el-dialog :title="dialogTitle" v-model="showForm" @close="close" width="500">
<el-form ref="form" :model="form" label-width="auto">
<el-form-item label="参考设定值类型" prop="name">
<el-input v-model="form.name" />
</el-form-item>
<el-form-item label="参考设定值子类型" prop="standardName">
<el-input v-model="form.standardName" />
</el-form-item>
<el-form-item label="参考设定值" prop="standardTime">
<el-input v-model="form.standardTime" />
</el-form-item>
</el-form>
<template #footer>
<div>
<el-button @click="close()"> </el-button>
<el-button type="primary" @click="save"> </el-button>
</div>
</template>
2024-12-30 14:43:13 +08:00
</el-dialog>
2025-02-17 08:39:18 +08:00
</template>
2024-12-26 09:28:19 +08:00
<script setup lang="ts">
2024-12-30 14:43:13 +08:00
import type { TestScript } from '@/api/device/interface/testScript'
import type { ColumnProps } from '@/components/ProTable/interface'
2025-02-17 08:39:18 +08:00
import { CirclePlus, EditPen, Delete, Share } from '@element-plus/icons-vue'
import { reactive, ref } from 'vue'
2025-02-24 08:38:54 +08:00
import { getDictTreeByCode } from '@/api/system/dictionary/dictTree'
2024-12-30 14:43:13 +08:00
import { dialogBig } from '@/utils/elementBind'
2025-02-24 08:38:54 +08:00
import { checkDataList, scriptDtlsCheckDataList } from '@/api/device/testScript/index'
2025-02-17 08:39:18 +08:00
const showForm = ref(false)
2024-12-30 14:43:13 +08:00
const dialogVisible = ref(false)
const dialogTitle = ref('')
2025-02-24 08:38:54 +08:00
const props = defineProps({
activeName: {
type: String,
required: true
2025-02-17 08:39:18 +08:00
},
2025-02-24 08:38:54 +08:00
formContent: {
type: [Object, Array],
required: true
2025-02-17 08:39:18 +08:00
},
2025-02-24 08:38:54 +08:00
form: {
type: [Object, Array],
required: true
}
})
const tableData: any = ref([])
// 表格配置项
2025-02-17 08:39:18 +08:00
const form = ref({
name: 220,
standardName: 0,
standardTime: 0
})
2024-12-30 14:43:13 +08:00
// 打开弹窗,可能是新增,也可能是编辑
2025-02-24 08:38:54 +08:00
const open = async (row: any) => {
2024-12-30 14:43:13 +08:00
dialogVisible.value = true
2025-02-24 08:38:54 +08:00
// checkDataList({ scriptId: props.formContent.id, scriptType: props.activeName }).then((res: any) => {
// })
let treeData: any = []
await getDictTreeByCode({
name: '',
id: '',
pid: '',
pids: '',
code: 'Script_Error',
sort: 0
}).then((res: any) => {
treeData = res.data[0].children
})
let checkDataList = [
{
pid: '004e06c7145e8454493dd69ad485c2a9',
valueType: '2da2a32c0cd19fb6368b9f4c249c2b3c',
dataType: 'real',
enable: 1,
errorFlag: 1
}
]
await scriptDtlsCheckDataList({
...props.form,
scriptId: props.formContent?.id,
scriptType: props.activeName,
checkDataList: checkDataList
}).then((res: any) => {
res.data.forEach((item: any) => {
let pList = treeData.filter((i: any) => i.id == item.pid)[0]
item.pname = pList.name
item.name = pList.children.filter((i: any) => i.id == item.valueType)[0].name
})
tableData.value = res.data
})
2025-02-17 08:39:18 +08:00
}
const save = () => {
dialogVisible.value = false
2024-12-30 14:43:13 +08:00
}
// 关闭弹窗
const close = () => {
dialogVisible.value = false
}
2025-02-24 08:38:54 +08:00
2024-12-30 14:43:13 +08:00
// 对外映射
defineExpose({ open })
2024-12-26 09:28:19 +08:00
</script>
2025-02-17 08:39:18 +08:00
<style scoped></style>