|
@@ -117,6 +117,21 @@
|
|
|
:value="item.value"
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
+
|
|
|
+ <el-select
|
|
|
+ v-model="statusType"
|
|
|
+ placeholder="请选择状态"
|
|
|
+ @change="changeSelectType"
|
|
|
+ style="width: 110px;margin-right: 10px;"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in statusList"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+
|
|
|
<el-input
|
|
|
v-model="searchText"
|
|
|
style="width: 250px;margin-right: 10px;"
|
|
@@ -749,6 +764,12 @@ export default {
|
|
|
// { index: 98,label:"已发布"},
|
|
|
// { index: 99,label:"未发布"},
|
|
|
],
|
|
|
+ statusList:[
|
|
|
+ {value:'',label:'所有状态'},
|
|
|
+ {value:1,label:"测试"},
|
|
|
+ {value:2,label:"稳定"}
|
|
|
+ ],
|
|
|
+ statusType:'',
|
|
|
labelSelect: [
|
|
|
{ value: "", label: "所有类型" },
|
|
|
{ value: "agent", label: "智能体" },
|
|
@@ -827,7 +848,8 @@ export default {
|
|
|
label: this.selectLabel, //应用的标签搜索
|
|
|
type: this.showType, //应用的类型
|
|
|
juri: this.selectJuri, //应用权限 1:我的 2:组织内 3:所有人
|
|
|
- stand: "cn" //cn站还是hk站
|
|
|
+ stand: "cn", //cn站还是hk站
|
|
|
+ status:this.statusType
|
|
|
};
|
|
|
|
|
|
this.ajax
|