WXL
2024-04-18 cd3f1d61e8530ecc50c72a7d223ce640732a2b84
src/components/SFtable/index.vue
@@ -42,7 +42,8 @@
      width="120"
    >
      <template slot-scope="scope">
        <dict-tag :options="usable" :value="scope.row.isavailable" />
        <dict-tag :options="qyoptions" :value="scope.row.usestate" />
      </template>
    </el-table-column>
    <el-table-column
@@ -87,7 +88,7 @@
      mode: [],
      languagelist: [],
      editabshape: [],
      usable: [],
      qyoptions: [],
      precedencetype: [],
    };
  },
@@ -129,7 +130,7 @@
  created() {
    this.mode = store.getters.mode;
    this.languagelist = store.getters.languagelist;
    this.usable = store.getters.usable;
    this.qyoptions = store.getters.usable;
    this.precedencetype = store.getters.precedencetype;
    this.editabshape = store.getters.editabshape;
  },
@@ -150,7 +151,7 @@
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      $emit("handleSelectionChange", selection);
      this.$emit("handleSelectionChange", selection);
    },
  },
};