ludc
2024-07-12 c89223e74b0a00094639c24bd16c7f3995632f5c
Source/plt-web/plt-web-ui/src/components/PLT-basic-component/transfer.vue
@@ -2,7 +2,6 @@
  <el-dialog
    v-dialogDrag
    :close-on-click-modal="false"
    :destroy-on-close="true"
    :title="title"
    :visible.sync="visible"
    append-to-body="true"
@@ -53,10 +52,10 @@
        if (newval) {
          // 清空data数组
          this.data = [];
          newval.forEach((city) => {
          newval.forEach((item) => {
            this.data.push({
              label: city.name,
              key: city.oid,
              label: item.name,
              key: item.oid,
            });
          });
          this.loading = false;