|
@@ -51,6 +51,19 @@
|
|
|
:value="item.value"
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
+ <el-select
|
|
|
+ v-model="AreaType"
|
|
|
+ placeholder="请选择状态"
|
|
|
+ @change="changeSelectType"
|
|
|
+ style="width: 110px;margin-right: 10px;"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in AreaSelect"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
@@ -440,6 +453,12 @@ export default {
|
|
|
{ value: "agent", label: "智能体" },
|
|
|
{ value: "workflow", label: "工作流" }
|
|
|
],
|
|
|
+ AreaType:'',
|
|
|
+ AreaSelect: [
|
|
|
+ { value: "cn", label: "cn" },
|
|
|
+ { value: "hk", label: "hk" },
|
|
|
+ { value: "com", label: "com" }
|
|
|
+ ],
|
|
|
userId: this.$route.query["userid"],
|
|
|
org: this.$route.query["org"],
|
|
|
oid: this.$route.query["oid"],
|
|
@@ -503,6 +522,7 @@ export default {
|
|
|
this.type = type;
|
|
|
const { data } = await this.ajax.get(this.$store.state.api + 'select_oidArea', { oid: this.oid });
|
|
|
this.region = data[0][0].area;
|
|
|
+ this.AreaType = data[0][0].area;
|
|
|
this.getAppStoreControl().then(_ => {
|
|
|
this.getData();
|
|
|
this.getTypeList();
|
|
@@ -614,7 +634,7 @@ export default {
|
|
|
label: this.selectLabel, //应用的标签搜索
|
|
|
type: this.showType, //应用的类型
|
|
|
juri: this.selectJuri, //应用权限 1:我的 2:组织内 3:所有人
|
|
|
- stand: this.region ? this.region : "cn", //cn站还是hk站
|
|
|
+ stand: this.AreaType ? this.AreaType : "cn", //cn站还是hk站
|
|
|
status: this.statusType,
|
|
|
exportType:
|
|
|
this.controlsObj &&
|