Explorar el Código

shiyu04140941

shiyu hace 3 años
padre
commit
0c532fb772
Se han modificado 1 ficheros con 4 adiciones y 5 borrados
  1. 4 5
      src/views/algorithmsLibrary/algorithmsPlatformList.vue

+ 4 - 5
src/views/algorithmsLibrary/algorithmsPlatformList.vue

@@ -4,7 +4,7 @@
             <template slot="searchItem1">
                 <span class="label">ID</span>
                 <el-input
-                    v-model="searchParams.id"
+                    v-model="searchParams.algorithmCode"
                     size="small"
                     clearable
                     placeholder="请输入"
@@ -87,12 +87,11 @@ export default {
         return {
             searchParams: {
                 //搜索参数
-                id: "", // ID
+                algorithmCode: "", // ID
                 algorithmName: "", // 算法名称
                 description: "", // 算法描述
                 uploadMode: "", // 私有类型
             },
-            validationStatusList: [],
             getDataWay:{
                     //加载表格数据
                     dataType: "url",
@@ -105,7 +104,7 @@ export default {
                 //表格列
                 {
                     label: "ID",
-                    prop: "id",
+                    prop: "algorithmCode",
                 },
                 {
                     label: "算法名称",
@@ -143,7 +142,7 @@ export default {
         },
         doReset() {
             this.searchParams = {
-                id: "",
+                algorithmCode: "",
                 algorithmName: "",
                 description: "",
                 uploadMode: "",