Commit 93f89c39 authored by 张俊's avatar 张俊

应用详情基本信息

parent 3bc708ea
...@@ -24,8 +24,14 @@ ...@@ -24,8 +24,14 @@
</div> </div>
</div> </div>
<div class="type_box_select"> <div class="type_box_select">
<mavon-editor v-model="list_arr" :boxShadow="false" :toolbarsFlag="false" :subfield="subfield" :defaultOpen="preview" :editable="false" v-if="now_service == 0"/> <!-- <mavon-editor v-model="list_arr" :boxShadow="false" :toolbarsFlag="false" :subfield="subfield" :defaultOpen="preview" :editable="false" v-if="now_service == 0"/> -->
<info-list
:list_arr="list_arr"
v-if="now_service == 0"
>
<mavon-editor slot="app_code" v-model="appcode" :boxShadow="false" :toolbarsFlag="false" :subfield="subfield" :defaultOpen="preview" :editable="false"/>
</info-list>
<div v-if="now_service == 1&&now_user == 0"> <div v-if="now_service == 1&&now_user == 0">
<p style="color:#8890a7;">镜像列表:</p> <p style="color:#8890a7;">镜像列表:</p>
<!-- <table-um <!-- <table-um
...@@ -253,7 +259,25 @@ export default { ...@@ -253,7 +259,25 @@ export default {
now_service: 0, now_service: 0,
header_arr: [], header_arr: [],
list_arr: '', list_arr: [
{
title: "应用简介:",
info: "",
},
{
title: "功能简介:",
info: "",
},
{
title: "应用场景:",
info: "",
},
{
title: "应用参数:",
info: "",
type: "solt",
solt_name: "app_code",
}],
appcode: "", appcode: "",
addImageFlag:false addImageFlag:false
}; };
...@@ -280,6 +304,7 @@ export default { ...@@ -280,6 +304,7 @@ export default {
this.get_image_list() this.get_image_list()
this.get_options() this.get_options()
this.get_file_name() this.get_file_name()
this.get_app_code()
}, },
mounted() { mounted() {
this.header_arr = [ this.header_arr = [
...@@ -588,13 +613,24 @@ export default { ...@@ -588,13 +613,24 @@ export default {
getServiceBaseInfo() { getServiceBaseInfo() {
this.$http this.$http
.get("/apaas/hubApi/market/readme/"+this.$route.params.id) .get("/apaas/hubApi/market/app/detail/"+this.$route.params.id)
.then((response) => { .then((response) => {
let data = response.data.data; let data = response.data.data;
this.list_arr = data this.$set(this.list_arr[0], "info", data.yyjj);
this.$set(this.list_arr[1], "info", data.gnjj);
this.$set(this.list_arr[2], "info", data.cjsl);
}) })
.catch(function(response) {}); .catch(function(response) {});
}, },
get_app_code(){
this.$http
.get("/apaas/hubApi/market/values/"+this.$route.params.id)
.then((response) => {
let data = response.data.data;
this.appcode = data
})
.catch(function(response) {});
}
}, },
}; };
......
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