微信邀请人id

main
shuxiaoquan 9 months ago
commit 92dd501e9e
  1. 2
      config.js
  2. 4
      ext.json
  3. 4
      manifest.json
  4. 2
      pages/goods/detail.vue
  5. 2
      pages/order/detail.vue
  6. 2
      pages/order/index.vue
  7. 23
      pages/refund/detail.vue

@ -15,7 +15,7 @@ export default {
* 可在超管后台-商城列表中查看10025
*/
storeId: wx.getExtConfigSync().store_id? wx.getExtConfigSync().store_id : 10045,
storeId: wx.getExtConfigSync().store_id? wx.getExtConfigSync().store_id : 10048,
// storeId: 10037,

@ -1,7 +1,7 @@
{
"extEnable": true,
"extAppid": "wx9f7e94fe11dc0c23",
"extAppid": "wxa3127ed5c3542a28",
"ext": {
"store_id": 10045
"store_id": 10048
}
}

@ -92,7 +92,11 @@
"quickapp" : {},
/* */
"mp-weixin" : {
<<<<<<< HEAD
"appid" : "wxe843b6d7a4bd3389",
=======
"appid" : "wxa3127ed5c3542a28",
>>>>>>> beac19d5a037464834b39080367b0ebe8183fee7
"libVersion" : "latest",
"setting" : {
// TLS

@ -941,7 +941,7 @@
.replace(/<img src=/g, '<img style="width: 100%; display:block" src=')
info.contentLink = that.getValueAfterSymbol(that.getLinksFromRichText(info
.content), 'client://')
info.isLink = that.containsLetterMix(info.contentLink, 'jd.com') ? true : false
info.isLink = that.containsLetterMix(info.contentLink, 'http') ? true : false
Object.keys(info).forEach(item => {
this.$set(this.goods, item, info[item])
})

@ -569,7 +569,7 @@
handleTargetExpress(orderId, item) {
if (item.delivery) {
let url =item.delivery[0].express_no
if (this.containsLetterMix(url, 'jd.com')&&item.delivery.length>0) {
if (this.containsLetterMix(url, 'http')&&item.delivery.length>0) {
uni.navigateTo({
url: '/pages/order/express/webView?src=' + encodeURIComponent(url) //urlh5pageB
})

@ -460,7 +460,7 @@
onLogistics(orderId, item) {
if (item.delivery) {
let url = item.delivery.express_no
if (this.containsLetterMix(url, 'jd.com')) {
if (this.containsLetterMix(url, 'http')) {
uni.navigateTo({
url: '/pages/order/express/webView?src=' + encodeURIComponent(url) //urlh5pageB
})

@ -12,7 +12,8 @@
</view>
<!-- 商品详情 -->
<view style="margin-top: 0;" class="detail-goods b-f m-top20 dis-flex flex-dir-row" @click="onRefundDetail(detail.order_refund_id)">
<view style="margin-top: 0;" class="detail-goods b-f m-top20 dis-flex flex-dir-row"
@click="onRefundDetail(detail.order_refund_id)">
<view class="left">
<image class="goods-image" :src="detail.orderGoods.goods_image"></image>
</view>
@ -83,12 +84,11 @@
<!-- 售后信息 -->
<view v-if="detail.status == RefundStatusEnum.REJECTED.value" class="detail-refund b-f m-top20">
<view class="detail-refund__row dis-flex">
<view class="detail-refund__row">
<view class="text">
<text class="col-m">拒绝原因</text>
</view>
<view class="flex-box">
<text>{{ detail.refuse_desc }}</text>
<view class="flex-box aaa" v-html="detail.refuse_desc">
</view>
</view>
</view>
@ -218,7 +218,7 @@
//
expressIndex: -1,
//
disabled: false
disabled: false,
}
},
@ -510,4 +510,17 @@
}
}
.aaa {
border-radius: 6rpx;
font-size: 28rpx;
line-height: 50rpx;
background-color: #fff;
overflow: hidden;
img {
max-width: 100%;
height: auto
}
}
</style>

Loading…
Cancel
Save