gaoluyang
2025-03-13 0ffd16355fa1541e4c253a8c9b20e5ec256daf26
动态监督新增数据后,列表中未展示数据
已修改2个文件
11 ■■■■ 文件已修改
src/views/CNAS/process/ensureResults/qualityControlPlan/components/detailFormDialog.vue 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/CNAS/process/ensureResults/qualityControlPlan/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/CNAS/process/ensureResults/qualityControlPlan/components/detailFormDialog.vue
@@ -38,7 +38,7 @@
        </el-col>
        <el-col :span="12">
          <el-form-item label="监督原因" prop="superviseReason">
            <el-input v-model="form.superviseReason" clearable size="small"></el-input>
            <el-input v-model="form.superviseReason" clearable disabled size="small"></el-input>
          </el-form-item>
        </el-col>
        <el-col :span="12">
@@ -94,10 +94,15 @@
  },
  // 方法集合
  methods: {
    openDia(type, row) {
    openDia(type, row, causeType) {
      this.formDia = true
      this.operationType = type
      this.getUserList()
      if (causeType == 1) {
        this.form.superviseReason = '定期监督'
      } else {
        this.form.superviseReason = '动态监督'
      }
      if (type === 'edit') {
        this.searchInfo(row)
      }
src/views/CNAS/process/ensureResults/qualityControlPlan/index.vue
@@ -571,7 +571,7 @@
    showDialog(type, row) {
      this.formDia = true
      this.$nextTick(() => {
        this.$refs.formDia.openDia(type, row)
        this.$refs.formDia.openDia(type, row, this.yearDetailForm.causeType)
      })
    },
    closeDia() {