chengsc
2025-01-16 8b0d749cfbec8bf0afe71a8956bfeeed6f27cdfc
Web/src/views/wcs/wcsAlarmInfo/index.vue
@@ -55,10 +55,11 @@
        <el-table-column type="index" label="序号" width="55" align="center" />
        <el-table-column prop="plcIP" label="PLCIP地址" show-overflow-tooltip="" />
        <el-table-column prop="plcPort" label="PLCIP端口" show-overflow-tooltip="" />
        <el-table-column prop="stationNum" label="工位号" show-overflow-tooltip="" />
        <el-table-column prop="alarmCode" label="报警编号" show-overflow-tooltip="" />
        <el-table-column prop="alarmName" label="报警描述" show-overflow-tooltip="" />
        <el-table-column prop="ledIP" label="显示屏ip地址" show-overflow-tooltip="" />
        <el-table-column prop="status" label="状态" show-overflow-tooltip="">
        <el-table-column prop="status" label="是否报警" show-overflow-tooltip="">
          <template #default="scope">
            <el-tag :type="dv('YesNoEnum', scope.row.status)?.tagType"> {{ dv('YesNoEnum',
              scope.row.status)?.name}}</el-tag>
@@ -125,7 +126,7 @@
const queryParams = ref<any>({});
const tableParams = ref({
  page: 1,
  pageSize: 10,
  pageSize: 20,
  total: 0,
});