Browse Source

shiyu04140941

shiyu 3 years ago
parent
commit
0c532fb772
1 changed files with 4 additions and 5 deletions
  1. 4 5
      src/views/algorithmsLibrary/algorithmsPlatformList.vue

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

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