uniapp【优化】:订单详情中收货时间修改为后台获取

This commit is contained in:
花城
2025-04-17 10:24:02 +08:00
parent 838b79873d
commit 8d4a88f426
4 changed files with 11 additions and 10 deletions

View File

@@ -1,16 +1,16 @@
// 不同的环境变量配置
const development = {
requestBaseUrl: 'https://api.mln.ren',
requestBaseUrl: 'https://api.pro.demo.coreshop.cn',
appid: '',
}
const test = {
requestBaseUrl: 'https://api.mln.ren',
requestBaseUrl: 'https://api.pro.demo.coreshop.cn',
appid: '',
}
const production = {
requestBaseUrl: 'https://api.mln.ren',
requestBaseUrl: 'https://api.pro.demo.coreshop.cn',
appid: '',
}

View File

@@ -16,7 +16,8 @@ export interface ShopConfigType {
indexPopupWindowImageUrl ?: string;
invoiceSwitch ?: number;
isAllowUserSecondBind ?: number;
orderAutoSignTime ?: number;
orderAutoEvalTime ?: number;
/** 余额提现 */
isAllowWithdrawCash ?: number;
isOpenAgent ?: number;

View File

@@ -50,7 +50,7 @@
"quickapp" : {},
/* */
"mp-weixin" : {
"appid" : "wx3f290252193d7627",
"appid" : "wx6a73f5a508da7af2",
"setting" : {
"urlCheck" : false,
"checkSiteMap" : false,

View File

@@ -27,7 +27,7 @@
</view>
<view class="explain">
<view class="tit">务必在收到商品后再确认收货</view>
<view class="desc">发货20天后将自动确认收货</view>
<view class="desc">发货{{shopConfigStore?.config?.orderAutoSignTime}}天后将自动确认收货</view>
</view>
</view>
<view class="steps-status" v-if="state.orderStatus == OrderAllStatusTypeEnum.aLL_PENDING_RECEIPT">
@@ -36,7 +36,7 @@
<view class="desc">请您对此次购物体检进行评价</view>
</view>
<view class="explain">
<view class="tit">收货30天后将自动评价</view>
<view class="tit">收货{{shopConfigStore?.config?.orderAutoEvalTime}}天后将自动评价</view>
</view>
</view>
<view class="steps-status" v-if="state.orderStatus == OrderAllStatusTypeEnum.aLL_PENDING_EVALUATE">