✨ 调整商城名为“芋道商城”
parent
8b239a0aae
commit
c4ccb770fc
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "星品",
|
"name": "芋道商城",
|
||||||
"appid": "__UNI__082C0BA",
|
"appid": "__UNI__082C0BA",
|
||||||
"description": "Shopro是由SheepJS团队开发,使用Uniapp+Vue3技术驱动的在线商城系统,内含诸多功能与丰富的活动,期待您的使用和反馈。",
|
"description": "基于 uni-app + Vue3 技术驱动的在线商城系统,内含诸多功能与丰富的活动,期待您的使用和反馈。",
|
||||||
"versionName": "1.8.3",
|
"versionName": "1.8.3",
|
||||||
"versionCode": 183,
|
"versionCode": 183,
|
||||||
"transformPx": false,
|
"transformPx": false,
|
||||||
|
@ -226,7 +226,7 @@
|
||||||
"async": {
|
"async": {
|
||||||
"timeout": 20000
|
"timeout": 20000
|
||||||
},
|
},
|
||||||
"title": "星品购",
|
"title": "芋道商城",
|
||||||
"optimization": {
|
"optimization": {
|
||||||
"treeShaking": {
|
"treeShaking": {
|
||||||
"enable": true
|
"enable": true
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{
|
{
|
||||||
"id": "shopro",
|
"id": "shopro",
|
||||||
"name": "shopro",
|
"name": "shopro",
|
||||||
"displayName": "星品购",
|
"displayName": "芋道商城",
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"description": "Shopro-B2C商城,一套代码,同时发行到iOS、Android、H5、微信小程序多个平台,请使用手机扫码快速体验强大功能",
|
"description": "芋道商城,一套代码,同时发行到iOS、Android、H5、微信小程序多个平台,请使用手机扫码快速体验强大功能",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prettier": "prettier --write \"{pages,sheep}/**/*.{js,json,tsx,css,less,scss,vue,html,md}\""
|
"prettier": "prettier --write \"{pages,sheep}/**/*.{js,json,tsx,css,less,scss,vue,html,md}\""
|
||||||
},
|
},
|
||||||
|
@ -11,7 +11,6 @@
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"商城",
|
"商城",
|
||||||
"B2C",
|
"B2C",
|
||||||
"shopro",
|
|
||||||
"商城模板"
|
"商城模板"
|
||||||
],
|
],
|
||||||
"author": "",
|
"author": "",
|
||||||
|
|
|
@ -648,7 +648,7 @@
|
||||||
],
|
],
|
||||||
"globalStyle": {
|
"globalStyle": {
|
||||||
"navigationBarTextStyle": "black",
|
"navigationBarTextStyle": "black",
|
||||||
"navigationBarTitleText": "星品购",
|
"navigationBarTitleText": "芋道商城",
|
||||||
"navigationBarBackgroundColor": "#FFFFFF",
|
"navigationBarBackgroundColor": "#FFFFFF",
|
||||||
"backgroundColor": "#FFFFFF",
|
"backgroundColor": "#FFFFFF",
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="check-box ss-flex ss-col-center ss-p-l-10">
|
<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'">
|
<view class="userInfo-money ss-m-r-10" v-if="item.value === 'wallet'">
|
||||||
余额: {{ fen2yuan(userWallet.money) }}元
|
余额: {{ fen2yuan(userWallet.balance) }}元
|
||||||
</view>
|
</view>
|
||||||
<radio
|
<radio
|
||||||
:value="item.value"
|
:value="item.value"
|
||||||
|
|
|
@ -26,14 +26,14 @@ const OrderApi = {
|
||||||
.map((key) => key + '=' + data2[key])
|
.map((key) => key + '=' + data2[key])
|
||||||
.join('&');
|
.join('&');
|
||||||
return request({
|
return request({
|
||||||
url: `trade/order/settlement?${queryString}`,
|
url: `/app-api/trade/order/settlement?${queryString}`,
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 创建订单
|
// 创建订单
|
||||||
createOrder: (data) => {
|
createOrder: (data) => {
|
||||||
return request({
|
return request({
|
||||||
url: `trade/order/create`,
|
url: `/app-api/trade/order/create`,
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
data,
|
data,
|
||||||
});
|
});
|
||||||
|
@ -41,7 +41,7 @@ const OrderApi = {
|
||||||
// 获得订单
|
// 获得订单
|
||||||
getOrder: (id) => {
|
getOrder: (id) => {
|
||||||
return request({
|
return request({
|
||||||
url: `trade/order/get-detail`,
|
url: `/app-api/trade/order/get-detail`,
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
params: {
|
params: {
|
||||||
id,
|
id,
|
||||||
|
|
Loading…
Reference in New Issue