调整商城名为“芋道商城”

pull/36/MERGE
YunaiV 2024-01-04 23:58:54 +08:00
parent 8b239a0aae
commit c4ccb770fc
5 changed files with 10 additions and 11 deletions

View File

@ -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

View File

@ -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": "",

View File

@ -648,7 +648,7 @@
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "星品购",
"navigationBarTitleText": "芋道商城",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#FFFFFF",
"navigationStyle": "custom"

View File

@ -38,7 +38,7 @@
</view>
<view class="check-box ss-flex ss-col-center ss-p-l-10">
<view class="userInfo-money ss-m-r-10" v-if="item.value === 'wallet'">
余额: {{ fen2yuan(userWallet.money) }}
余额: {{ fen2yuan(userWallet.balance) }}
</view>
<radio
:value="item.value"

View File

@ -26,14 +26,14 @@ const OrderApi = {
.map((key) => 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,