| | |
| | | |
| | | </el-table-column> |
| | | <el-table-column prop="stationNum" label="工位号" show-overflow-tooltip="" /> |
| | | <el-table-column prop="plcPos" label="偏移量" show-overflow-tooltip="" /> |
| | | <el-table-column prop="posType" label="流程字类型" show-overflow-tooltip="" /> |
| | | <el-table-column prop="plcPos" label="偏移量" show-overflow-tooltip="" /> <el-table-column prop="posType" |
| | | label="流程字类型" show-overflow-tooltip=""> |
| | | <template #default="scope"> |
| | | <el-tag :type="dv('PLCDataTypeEnum', scope.row.posType)?.tagType"> {{ dv('PLCDataTypeEnum', |
| | | scope.row.posType)?.name}}</el-tag> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="ledIP" label="显示屏ip地址" show-overflow-tooltip="" /> |
| | | <el-table-column prop="text" label="描述" show-overflow-tooltip="" /> |
| | | <el-table-column label="修改记录" width="80" align="center" show-overflow-tooltip> |
| | |
| | | import { ref } from "vue"; |
| | | import { ElMessageBox, ElMessage } from "element-plus"; |
| | | import { auth } from '/@/utils/authFunction'; |
| | | |
| | | import { getDictLabelByVal as dv } from '/@/utils/dict-utils'; |
| | | import ModifyRecord from '/@/components/table/modifyRecord.vue'; |
| | | |
| | | import printDialog from '/@/views/system/print/component/hiprint/preview.vue' |