mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 16:23:26 +08:00
uniapp【优化】:订单详情中收货时间修改为后台获取
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
// 不同的环境变量配置
|
||||
const development = {
|
||||
requestBaseUrl: 'https://api.mln.ren',
|
||||
const development = {
|
||||
requestBaseUrl: 'https://api.pro.demo.coreshop.cn',
|
||||
appid: '',
|
||||
}
|
||||
|
||||
const test = {
|
||||
requestBaseUrl: 'https://api.mln.ren',
|
||||
const test = {
|
||||
requestBaseUrl: 'https://api.pro.demo.coreshop.cn',
|
||||
appid: '',
|
||||
}
|
||||
|
||||
const production = {
|
||||
requestBaseUrl: 'https://api.mln.ren',
|
||||
const production = {
|
||||
requestBaseUrl: 'https://api.pro.demo.coreshop.cn',
|
||||
appid: '',
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,8 @@ export interface ShopConfigType {
|
||||
indexPopupWindowImageUrl ?: string;
|
||||
invoiceSwitch ?: number;
|
||||
isAllowUserSecondBind ?: number;
|
||||
|
||||
orderAutoSignTime ?: number;
|
||||
orderAutoEvalTime ?: number;
|
||||
/** 余额提现 */
|
||||
isAllowWithdrawCash ?: number;
|
||||
isOpenAgent ?: number;
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"quickapp" : {},
|
||||
/* 小程序特有相关 */
|
||||
"mp-weixin" : {
|
||||
"appid" : "wx3f290252193d7627",
|
||||
"appid" : "wx6a73f5a508da7af2",
|
||||
"setting" : {
|
||||
"urlCheck" : false,
|
||||
"checkSiteMap" : false,
|
||||
|
||||
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user