|
@@ -1,7 +1,7 @@
|
|
<template>
|
|
<template>
|
|
<div>
|
|
<div>
|
|
<search-layout :needBox="true">
|
|
<search-layout :needBox="true">
|
|
- <template slot="searchItem1">
|
|
|
|
|
|
+ <!--<template slot="searchItem1">
|
|
<span class="label">ID</span>
|
|
<span class="label">ID</span>
|
|
<el-input
|
|
<el-input
|
|
v-model="searchParams.algorithmCode"
|
|
v-model="searchParams.algorithmCode"
|
|
@@ -11,7 +11,7 @@
|
|
maxlength="60"
|
|
maxlength="60"
|
|
>
|
|
>
|
|
</el-input>
|
|
</el-input>
|
|
- </template>
|
|
|
|
|
|
+ </template>-->
|
|
<template slot="searchItem2">
|
|
<template slot="searchItem2">
|
|
<span class="label">算法名称</span>
|
|
<span class="label">算法名称</span>
|
|
<el-input
|
|
<el-input
|
|
@@ -87,17 +87,26 @@ export default {
|
|
return {
|
|
return {
|
|
searchParams: {
|
|
searchParams: {
|
|
//搜索参数
|
|
//搜索参数
|
|
- algorithmCode: "", // ID
|
|
|
|
|
|
+ //algorithmCode: "", // ID
|
|
algorithmName: "", // 算法名称
|
|
algorithmName: "", // 算法名称
|
|
description: "", // 算法描述
|
|
description: "", // 算法描述
|
|
- uploadMode: "", // 私有类型
|
|
|
|
|
|
+ //uploadMode: "", // 私有类型
|
|
},
|
|
},
|
|
getDataWay:{
|
|
getDataWay:{
|
|
//加载表格数据
|
|
//加载表格数据
|
|
dataType: "url",
|
|
dataType: "url",
|
|
|
|
+ //dataType: "data",
|
|
type: "post",
|
|
type: "post",
|
|
// firstRequest: false,
|
|
// firstRequest: false,
|
|
data: this.$api.algorithmsLibrary.selectAlgoPlatformList,
|
|
data: this.$api.algorithmsLibrary.selectAlgoPlatformList,
|
|
|
|
+ /*data:[
|
|
|
|
+ {
|
|
|
|
+ algorithmCode:'111',
|
|
|
|
+ algorithmName:'111',
|
|
|
|
+ description:
|
|
|
|
+ '打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲哈维打款哈对我来讲'
|
|
|
|
+ }
|
|
|
|
+ ],*/
|
|
param: {},
|
|
param: {},
|
|
},
|
|
},
|
|
columns: [
|
|
columns: [
|
|
@@ -113,6 +122,7 @@ export default {
|
|
{
|
|
{
|
|
label: "算法描述",
|
|
label: "算法描述",
|
|
prop: "description",
|
|
prop: "description",
|
|
|
|
+ showOverflowTooltip: true
|
|
},
|
|
},
|
|
],
|
|
],
|
|
pagination: {
|
|
pagination: {
|
|
@@ -142,10 +152,10 @@ export default {
|
|
},
|
|
},
|
|
doReset() {
|
|
doReset() {
|
|
this.searchParams = {
|
|
this.searchParams = {
|
|
- algorithmCode: "",
|
|
|
|
|
|
+ //algorithmCode: "",
|
|
algorithmName: "",
|
|
algorithmName: "",
|
|
description: "",
|
|
description: "",
|
|
- uploadMode: "",
|
|
|
|
|
|
+ //uploadMode: "",
|
|
};
|
|
};
|
|
this.doSearch();
|
|
this.doSearch();
|
|
},
|
|
},
|