mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:53:25 +08:00
uniapp【优化】:订单详情中收货时间修改为后台获取
This commit is contained in:
@@ -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: '',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -50,7 +50,7 @@
|
|||||||
"quickapp" : {},
|
"quickapp" : {},
|
||||||
/* 小程序特有相关 */
|
/* 小程序特有相关 */
|
||||||
"mp-weixin" : {
|
"mp-weixin" : {
|
||||||
"appid" : "wx3f290252193d7627",
|
"appid" : "wx6a73f5a508da7af2",
|
||||||
"setting" : {
|
"setting" : {
|
||||||
"urlCheck" : false,
|
"urlCheck" : false,
|
||||||
"checkSiteMap" : false,
|
"checkSiteMap" : false,
|
||||||
|
|||||||
@@ -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">
|
||||||
|
|||||||
Reference in New Issue
Block a user