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 = { const development = {
requestBaseUrl: 'https://api.mln.ren', requestBaseUrl: 'https://api.pro.demo.coreshop.cn',
appid: '', appid: '',
} }
const test = { const test = {
requestBaseUrl: 'https://api.mln.ren', requestBaseUrl: 'https://api.pro.demo.coreshop.cn',
appid: '', appid: '',
} }
const production = { const production = {
requestBaseUrl: 'https://api.mln.ren', requestBaseUrl: 'https://api.pro.demo.coreshop.cn',
appid: '', appid: '',
} }

View File

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

View File

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

View File

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