From 8d21af2967a0de3a2f61f22094c5f753465f087f Mon Sep 17 00:00:00 2001 From: liutong <836164388@qq.com> Date: Fri, 14 Mar 2025 11:12:58 +0800 Subject: [PATCH] =?UTF-8?q?feat(market):=20=E6=B7=BB=E5=8A=A0=E4=BC=81?= =?UTF-8?q?=E4=B8=9A=E4=BF=A1=E6=81=AF=E9=A1=B5=E9=9D=A2=E5=B9=B6=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E5=AF=BC=E8=88=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 firm_info.vue 页面组件,用于展示企业详细信息 - 在 index.vue 中添加打开企业信息页面的导航功能 - 更新 pages.json,配置企业信息页面的导航栏样式 --- pages.json | 9 +++ pages/market/my/firm_info.vue | 121 ++++++++++++++++++++++++++++++++++ pages/market/my/index.vue | 10 ++- 3 files changed, 139 insertions(+), 1 deletion(-) create mode 100644 pages/market/my/firm_info.vue diff --git a/pages.json b/pages.json index 0a0b224..d281f0b 100644 --- a/pages.json +++ b/pages.json @@ -351,6 +351,15 @@ "navigationBarBackgroundColor": "#fff", "navigationBarTextStyle": "black" } + }, + { + "path": "pages/market/my/firm_info", + "style": { + "navigationBarTitleText": "企业信息", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#292929", + "navigationBarTextStyle": "white" + } } diff --git a/pages/market/my/firm_info.vue b/pages/market/my/firm_info.vue new file mode 100644 index 0000000..097d5c7 --- /dev/null +++ b/pages/market/my/firm_info.vue @@ -0,0 +1,121 @@ + + + + + + diff --git a/pages/market/my/index.vue b/pages/market/my/index.vue index aef340b..0fe95ff 100644 --- a/pages/market/my/index.vue +++ b/pages/market/my/index.vue @@ -67,7 +67,7 @@ 23 - + 企业信息 @@ -143,6 +143,14 @@ export default { }) }, + //打开企业信息 + openViewFirmInfo(){ + uni.navigateTo({ + url: '/pages/market/my/firm_info' + }) + }, + + //打开设置 openViewSetUp(){ uni.navigateTo({