From 50f6f1b4d2f21942778d254b3de9f87e8e31502e Mon Sep 17 00:00:00 2001 From: liudianxin Date: Thu, 16 Jul 2020 16:00:52 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8F=9C=E5=8D=95=E7=BB=9F=E4=B8=80=E9=83=BD?= =?UTF-8?q?=E7=94=A8=E5=90=8E=E7=AB=AF=E6=95=B0=E6=8D=AE=EF=BC=8C=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E7=9A=84=E6=9C=8D=E5=8A=A1=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/menu.vue | 5 +---- src/components/service-list/service_list.vue | 4 ++-- src/pages/service_shop/shop_list.vue | 6 +++--- src/pages/user/order/order_detail.vue | 14 ++++++++++---- src/pages/user/user.vue | 17 +++++++++++++++-- src/store/index.js | 2 +- 6 files changed, 32 insertions(+), 16 deletions(-) diff --git a/src/components/menu.vue b/src/components/menu.vue index 37a9806..42f6e94 100644 --- a/src/components/menu.vue +++ b/src/components/menu.vue @@ -132,7 +132,6 @@ export default { }, methods: { gotopage(n) { - console.log("function gotopage,menu test:" + n); if (n == "logout") { window.location.href = "/iam/api/logout"; } else if (n == "login") { @@ -157,17 +156,15 @@ export default { this.$router.push({ name: "shoppingCart" }); }, navAction(path) { - console.log("function navAction,menu test:" + path); this.now_menu = path; window.sessionStorage.setItem("menuVisitUrl", path); this.$router.push(path); }, gotoChildPage(v, parent) { - console.log("function gotoChildPage,menu test:" + v + "|" + parent); if (v.visit_url) { if (v.visit_url == "/fwgl/" || v.visit_url == "/yygl/") { this.$router.push(v.visit_url + this.$store.getters.level); - } else if (parent == "/services_shop") { + } else if (parent == "/shop") { this.$store.commit("serviceShopMenuAct", v.visit_url); this.$router.push(v.visit_url); } else { diff --git a/src/components/service-list/service_list.vue b/src/components/service-list/service_list.vue index 8d312b2..7dfeb6a 100644 --- a/src/components/service-list/service_list.vue +++ b/src/components/service-list/service_list.vue @@ -247,13 +247,13 @@ export default { prop: "", childDomains: [ { - id: 1, + id: 2, name: "平台应用", prop: "", childDomains: null }, { - id: 2, + id: 1, name: "开发者应用", prop: "", childDomains: null diff --git a/src/pages/service_shop/shop_list.vue b/src/pages/service_shop/shop_list.vue index 1e2769a..c68a3d5 100644 --- a/src/pages/service_shop/shop_list.vue +++ b/src/pages/service_shop/shop_list.vue @@ -37,13 +37,13 @@ export default { this.name = "数据服务"; this.urlFilter = "5"; this.url = "/shop/sjfwDetail"; - this.filterNames = ["数据服务类型", "数据领域", "数据来源机构"]; + this.filterNames = ["数据服务类型", "服务领域", "数据来源机构"]; break; case "space_time_service_list": this.name = "时空服务"; this.urlFilter = "6"; this.url = "/shop/skfwDetail"; - this.filterNames = ["时空服务类型", "应用领域", "服务来源组织"]; + this.filterNames = ["时空服务类型", "服务领域", "服务来源组织"]; break; case "video_service_list": this.name = "视频服务"; @@ -61,7 +61,7 @@ export default { this.name = "综合应用"; this.urlFilter = "21"; this.url = "/shop/zhfwDetail"; - this.filterNames = ["服务类型", "应用领域", "服务来源组织"]; + this.filterNames = ["服务类型", "服务领域", "服务来源组织"]; break; case "app_store_list": this.name = "应用商店"; diff --git a/src/pages/user/order/order_detail.vue b/src/pages/user/order/order_detail.vue index 3afb4c8..ee533cb 100644 --- a/src/pages/user/order/order_detail.vue +++ b/src/pages/user/order/order_detail.vue @@ -323,8 +323,8 @@ export default { { prop: "name", label: "字段编码", - minWidth: "20%", - align: "left" + minWidth: "10%", + align: "center" }, { prop: "show_type", @@ -335,14 +335,20 @@ export default { { prop: "label", label: "字段名称", - minWidth: "40%", + minWidth: "20%", align: "center" }, { prop: "descript", label: "字段说明", minWidth: "40%", - align: "left" + align: "center" + }, + { + prop: "example", + label: "字段示例", + minWidth: "20%", + align: "center" } ], list_arr: [ diff --git a/src/pages/user/user.vue b/src/pages/user/user.vue index b19a7d1..3d9ea28 100644 --- a/src/pages/user/user.vue +++ b/src/pages/user/user.vue @@ -1,6 +1,11 @@