田源
2025-01-09 d7e3c8a813f8f85c89c06782f1e36e8089ffc31b
Source/UBCS-WEB/src/views/ruleBasic/usableCharacter.vue
@@ -1,14 +1,13 @@
<template>
  <basic-container>
    <el-header>
      <div style="margin-bottom: 15px">
        编码规则:
        <el-select v-model="select" :filter-method="filterValue" filterable placeholder="请选择" size="small"
        <el-select v-model="select" :filter-method="filterValue" filterable placeholder="请选择" size="small" v-loading="selectLoading"
                   @change="selectHandler">
          <el-option v-for="(item,index) in queryReleasedList"
                     :key="item.oid"
                     :label="item.name"
                     :label="item.name + ' (' + item.id + ')'"
                     :value="item.oid"></el-option>
        </el-select>
      </div>
@@ -87,7 +86,8 @@
      tableData: [],
      select: "",
      selectValue: "",
      editVisble: false
      editVisble: false,
      selectLoading:false,
    }
  },
  watch: {
@@ -144,6 +144,7 @@
        const res2 = await getList({codeRuleId: this.select, chartType: "charset", chartValue: this.characterValue});
        this.tableData = res2.data.data;
        this.loading = false;
        this.selectLoading = false;
      } catch (error) {
        this.$message.warning(error)
      }