From 65e831bc57f90e811bfed73207e22fd3115419da Mon Sep 17 00:00:00 2001 From: "lenovo008\\lenovo" Date: Fri, 19 Jul 2024 14:05:08 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BC=80=E5=8F=91?= =?UTF-8?q?=E7=8E=AF=E5=A2=83=E5=9F=BA=E7=A1=80URL=E5=92=8Cs-search-block.?= =?UTF-8?q?vue=E7=BB=84=E4=BB=B6=E7=9A=84=E7=83=AD=E8=AF=8D=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将开发环境的基础URL更改为了http://192.168.1.118:48080,以适应新的开发服务器配置。同时,在s-search-block.vue组件中调整了热词列表的展示方式,通过注释掉原有代码来临时隐藏热词视图,以待后续逻辑的完善。 --- yudao-mall-uniapp-master/.env.development | 2 +- .../sheep/components/s-search-block/s-search-block.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/yudao-mall-uniapp-master/.env.development b/yudao-mall-uniapp-master/.env.development index def1cc3..f3d3497 100644 --- a/yudao-mall-uniapp-master/.env.development +++ b/yudao-mall-uniapp-master/.env.development @@ -1,2 +1,2 @@ # SHOPRO_DEV_BASE_URL = https://yanghaodong.51vip.biz - SHOPRO_DEV_BASE_URL = http://192.168.1.129:48080 \ No newline at end of file + SHOPRO_DEV_BASE_URL = http://192.168.1.118:48080 \ No newline at end of file diff --git a/yudao-mall-uniapp-master/sheep/components/s-search-block/s-search-block.vue b/yudao-mall-uniapp-master/sheep/components/s-search-block/s-search-block.vue index 1e9c2b5..812cf06 100644 --- a/yudao-mall-uniapp-master/sheep/components/s-search-block/s-search-block.vue +++ b/yudao-mall-uniapp-master/sheep/components/s-search-block/s-search-block.vue @@ -30,12 +30,12 @@ /> - {{ item }} + > --> From fd80e1460aa67bafa6b8678c5d987190c4f4353d Mon Sep 17 00:00:00 2001 From: "lenovo008\\lenovo" Date: Fri, 19 Jul 2024 14:08:58 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E5=93=81=E7=89=8C=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=B8=BA=E9=83=91=E5=A4=A7=E5=95=86=E5=9F=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改了页面标题、console.log输出、以及store中的商城信息配置,将品牌名从“芋道商城”更新为“郑大商城”。 --- yudao-mall-uniapp-master/pages.json | 2 +- yudao-mall-uniapp-master/sheep/config/index.js | 2 +- yudao-mall-uniapp-master/sheep/store/app.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/yudao-mall-uniapp-master/pages.json b/yudao-mall-uniapp-master/pages.json index 406a407..128820b 100644 --- a/yudao-mall-uniapp-master/pages.json +++ b/yudao-mall-uniapp-master/pages.json @@ -683,7 +683,7 @@ ], "globalStyle": { "navigationBarTextStyle": "black", - "navigationBarTitleText": "芋道商城", + "navigationBarTitleText": "郑大商城", "navigationBarBackgroundColor": "#FFFFFF", "backgroundColor": "#FFFFFF", "navigationStyle": "custom" diff --git a/yudao-mall-uniapp-master/sheep/config/index.js b/yudao-mall-uniapp-master/sheep/config/index.js index 209a9dc..fcc1211 100644 --- a/yudao-mall-uniapp-master/sheep/config/index.js +++ b/yudao-mall-uniapp-master/sheep/config/index.js @@ -7,7 +7,7 @@ if (process.env.NODE_ENV === 'development') { baseUrl = import.meta.env.SHOPRO_BASE_URL; } version = import.meta.env.SHOPRO_VERSION; -console.log(`[芋道商城 ${version}] http://doc.iocoder.cn`); +console.log(`[郑大商城 ${version}] http://doc.iocoder.cn`); export const apiPath = import.meta.env.SHOPRO_API_PATH; export const staticUrl = import.meta.env.SHOPRO_STATIC_URL; diff --git a/yudao-mall-uniapp-master/sheep/store/app.js b/yudao-mall-uniapp-master/sheep/store/app.js index 811fd8c..babe2ae 100644 --- a/yudao-mall-uniapp-master/sheep/store/app.js +++ b/yudao-mall-uniapp-master/sheep/store/app.js @@ -61,10 +61,10 @@ const app = defineStore({ // TODO 芋艿:未来支持管理后台可配;对应 https://api.shopro.sheepjs.com/shop/api/init if (true) { this.info = { - name: '芋道商城', + name: '郑大商城', logo: 'https://static.iocoder.cn/ruoyi-vue-pro-logo.png', version: '1.1.13', - copyright: '全部开源,个人与企业可 100% 免费使用', + copyright: '超牛的', copytime: 'Copyright© 2018-2024', cdnurl: 'https://file.sheepjs.com', // 云存储域名 From 2738329416062527b8afe9f804e71fab9172e977 Mon Sep 17 00:00:00 2001 From: "lenovo008\\lenovo" Date: Fri, 19 Jul 2024 14:11:35 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E5=93=81=E7=89=8C=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=B8=BA=E9=83=91=E5=A4=A7=E9=92=92=E6=B0=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改了页面标题、console.log输出、以及store中的商城信息配置,将品牌名从“郑大商城”更新为“郑大钒水”。 --- yudao-mall-uniapp-master/pages.json | 2 +- yudao-mall-uniapp-master/sheep/config/index.js | 2 +- yudao-mall-uniapp-master/sheep/store/app.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/yudao-mall-uniapp-master/pages.json b/yudao-mall-uniapp-master/pages.json index 128820b..77c041b 100644 --- a/yudao-mall-uniapp-master/pages.json +++ b/yudao-mall-uniapp-master/pages.json @@ -683,7 +683,7 @@ ], "globalStyle": { "navigationBarTextStyle": "black", - "navigationBarTitleText": "郑大商城", + "navigationBarTitleText": "郑大钒水", "navigationBarBackgroundColor": "#FFFFFF", "backgroundColor": "#FFFFFF", "navigationStyle": "custom" diff --git a/yudao-mall-uniapp-master/sheep/config/index.js b/yudao-mall-uniapp-master/sheep/config/index.js index fcc1211..14dd2b7 100644 --- a/yudao-mall-uniapp-master/sheep/config/index.js +++ b/yudao-mall-uniapp-master/sheep/config/index.js @@ -7,7 +7,7 @@ if (process.env.NODE_ENV === 'development') { baseUrl = import.meta.env.SHOPRO_BASE_URL; } version = import.meta.env.SHOPRO_VERSION; -console.log(`[郑大商城 ${version}] http://doc.iocoder.cn`); +console.log(`[郑大钒水 ${version}] http://doc.iocoder.cn`); export const apiPath = import.meta.env.SHOPRO_API_PATH; export const staticUrl = import.meta.env.SHOPRO_STATIC_URL; diff --git a/yudao-mall-uniapp-master/sheep/store/app.js b/yudao-mall-uniapp-master/sheep/store/app.js index babe2ae..eb7f079 100644 --- a/yudao-mall-uniapp-master/sheep/store/app.js +++ b/yudao-mall-uniapp-master/sheep/store/app.js @@ -61,7 +61,7 @@ const app = defineStore({ // TODO 芋艿:未来支持管理后台可配;对应 https://api.shopro.sheepjs.com/shop/api/init if (true) { this.info = { - name: '郑大商城', + name: '郑大钒水', logo: 'https://static.iocoder.cn/ruoyi-vue-pro-logo.png', version: '1.1.13', copyright: '超牛的',