Commit 1920d2ea authored by 徐一鸣's avatar 徐一鸣

Merge branch 'dev' of cloud.wodcloud.com:apaas/apaas-v3-ui into dev

parents 8e9b5db2 77bb1af0
...@@ -27,9 +27,9 @@ ...@@ -27,9 +27,9 @@
<el-select @change="changeZhType" v-model="zhyyVal" placeholder="请选择" class="zhyy_select"> <el-select @change="changeZhType" v-model="zhyyVal" placeholder="请选择" class="zhyy_select">
<el-option <el-option
v-for="item in optionsZhyy" v-for="item in optionsZhyy"
:key="item.value" :key="item.id"
:label="item.label" :label="item.name"
:value="item.value" :value="item.id"
></el-option> ></el-option>
</el-select> </el-select>
</div> </div>
...@@ -365,6 +365,7 @@ ...@@ -365,6 +365,7 @@
:title="dialogInfo.title" :title="dialogInfo.title"
:msg="dialogInfo.msg" :msg="dialogInfo.msg"
:submit="dialogInfo.submit" :submit="dialogInfo.submit"
:cancelHide="true"
></apass-dialog> ></apass-dialog>
</div> </div>
</template> </template>
...@@ -495,12 +496,7 @@ export default { ...@@ -495,12 +496,7 @@ export default {
zhfwQqt: "JSON", zhfwQqt: "JSON",
skfwQqt: "", skfwQqt: "",
skfwRadios: [], skfwRadios: [],
optionsZhyy: [ optionsZhyy: [],
{ label: "模型算法类", value: 22 },
{ label: "查询验证类", value: 23 },
{ label: "流程类", value: 24 },
{ label: "应用类", value: 34 },
],
zhyyVal: 22, zhyyVal: 22,
jcxxtx: false, jcxxtx: false,
form: { form: {
...@@ -964,6 +960,7 @@ export default { ...@@ -964,6 +960,7 @@ export default {
this.btnList = response.data.data; this.btnList = response.data.data;
this.skfwRadios = this.btnList[1].childDomains; this.skfwRadios = this.btnList[1].childDomains;
this.skfwQqt = this.skfwRadios[0].id; this.skfwQqt = this.skfwRadios[0].id;
this.optionsZhyy = this.btnList[4].childDomains;
this.activeBtn = 0; this.activeBtn = 0;
} else { } else {
console.log(response.data.errMsg); console.log(response.data.errMsg);
...@@ -1001,6 +998,7 @@ export default { ...@@ -1001,6 +998,7 @@ export default {
this.getOrganization(); this.getOrganization();
} else { } else {
self.is_map = 0; self.is_map = 0;
self.getServiceType1();
} }
}, },
goBack() { goBack() {
...@@ -1081,7 +1079,6 @@ export default { ...@@ -1081,7 +1079,6 @@ export default {
} }
}); });
self.judgeMap(); self.judgeMap();
self.getServiceType1();
self.getArea(); self.getArea();
}, },
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment