From c4ccb770fc7582aa9168aec8083011f0e158a2fd Mon Sep 17 00:00:00 2001 From: YunaiV Date: Thu, 4 Jan 2024 23:58:54 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20=E8=B0=83=E6=95=B4=E5=95=86?= =?UTF-8?q?=E5=9F=8E=E5=90=8D=E4=B8=BA=E2=80=9C=E8=8A=8B=E9=81=93=E5=95=86?= =?UTF-8?q?=E5=9F=8E=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifest.json | 6 +++--- package.json | 5 ++--- pages.json | 2 +- pages/pay/index.vue | 2 +- sheep/api/trade/order.js | 6 +++--- 5 files changed, 10 insertions(+), 11 deletions(-) diff --git a/manifest.json b/manifest.json index 5854a4c9..c2dffeac 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { - "name": "星品", + "name": "芋道商城", "appid": "__UNI__082C0BA", - "description": "Shopro是由SheepJS团队开发,使用Uniapp+Vue3技术驱动的在线商城系统,内含诸多功能与丰富的活动,期待您的使用和反馈。", + "description": "基于 uni-app + Vue3 技术驱动的在线商城系统,内含诸多功能与丰富的活动,期待您的使用和反馈。", "versionName": "1.8.3", "versionCode": 183, "transformPx": false, @@ -226,7 +226,7 @@ "async": { "timeout": 20000 }, - "title": "星品购", + "title": "芋道商城", "optimization": { "treeShaking": { "enable": true diff --git a/package.json b/package.json index 2cacc03d..53d98b31 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "id": "shopro", "name": "shopro", - "displayName": "星品购", + "displayName": "芋道商城", "version": "1.0.1", - "description": "Shopro-B2C商城,一套代码,同时发行到iOS、Android、H5、微信小程序多个平台,请使用手机扫码快速体验强大功能", + "description": "芋道商城,一套代码,同时发行到iOS、Android、H5、微信小程序多个平台,请使用手机扫码快速体验强大功能", "scripts": { "prettier": "prettier --write \"{pages,sheep}/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"" }, @@ -11,7 +11,6 @@ "keywords": [ "商城", "B2C", - "shopro", "商城模板" ], "author": "", diff --git a/pages.json b/pages.json index f8a575e2..2c9b2311 100644 --- a/pages.json +++ b/pages.json @@ -648,7 +648,7 @@ ], "globalStyle": { "navigationBarTextStyle": "black", - "navigationBarTitleText": "星品购", + "navigationBarTitleText": "芋道商城", "navigationBarBackgroundColor": "#FFFFFF", "backgroundColor": "#FFFFFF", "navigationStyle": "custom" diff --git a/pages/pay/index.vue b/pages/pay/index.vue index 57b98036..46e3eafd 100644 --- a/pages/pay/index.vue +++ b/pages/pay/index.vue @@ -38,7 +38,7 @@ - 余额: {{ fen2yuan(userWallet.money) }}元 + 余额: {{ fen2yuan(userWallet.balance) }}元 key + '=' + data2[key]) .join('&'); return request({ - url: `trade/order/settlement?${queryString}`, + url: `/app-api/trade/order/settlement?${queryString}`, method: 'GET', }); }, // 创建订单 createOrder: (data) => { return request({ - url: `trade/order/create`, + url: `/app-api/trade/order/create`, method: 'POST', data, }); @@ -41,7 +41,7 @@ const OrderApi = { // 获得订单 getOrder: (id) => { return request({ - url: `trade/order/get-detail`, + url: `/app-api/trade/order/get-detail`, method: 'GET', params: { id,