3
0
zhangjie 5 ماه پیش
والد
کامیت
7d865babc8

+ 0 - 4
src/modules/admin/big-model/ModelManage/CueWordTpl/ModifyTpl.vue

@@ -94,10 +94,6 @@ export default {
         return {};
       },
     },
-    modelId: {
-      type: [Number, String],
-      default: "",
-    },
     appType: {
       type: String,
       default: "",

+ 1 - 15
src/modules/admin/big-model/ModelManage/CueWordTpl/index.vue

@@ -12,14 +12,6 @@
     >
       <div class="part-box part-box-filter part-box-flex">
         <el-form ref="FilterForm" label-position="left" inline>
-          <el-form-item label="模型列表:">
-            <NormalSelect
-              v-model="modelId"
-              :init="true"
-              :func="modelListQuery"
-              :params="modelSelectParams"
-            ></NormalSelect>
-          </el-form-item>
           <el-form-item label="应用类型:">
             <NormalSelect
               v-model="appType"
@@ -116,7 +108,6 @@ export default {
       dataList: [],
       curCueWordRow: {},
       appType: "",
-      modelId: "",
       appTypeOptions: [],
     };
   },
@@ -171,12 +162,7 @@ export default {
   },
   watch: {
     appType(val) {
-      if (val && this.modelId) {
-        this.getList();
-      }
-    },
-    modelId(val) {
-      if (val && this.appType) {
+      if (val) {
         this.getList();
       }
     },