更新
This commit is contained in:
parent
255a1a5f71
commit
bef074338d
@ -20,7 +20,9 @@ export function addCart(data) {
|
|||||||
* 根据店铺id 获取店铺信息
|
* 根据店铺id 获取店铺信息
|
||||||
*/
|
*/
|
||||||
export function getProductInfo(data) {
|
export function getProductInfo(data) {
|
||||||
return request.get(`scanPay/product`, data);
|
return request.get(`scanPay/product`, data, {
|
||||||
|
noAuth: true
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<image class="image" :src='routine_logo' mode="aspectFit"></image>
|
<image class="image" :src='routine_logo' mode="aspectFit"></image>
|
||||||
</view> -->
|
</view> -->
|
||||||
<!--#ifdef H5-->
|
<!--#ifdef H5-->
|
||||||
<text v-if="isWeixin" class='title'>授权提醒</text>
|
<text v-if="isWeixin" class='title'>{{isPay?'付款提醒':'授权提醒'}}</text>
|
||||||
<text v-else class='title'>{{title}}</text>
|
<text v-else class='title'>{{title}}</text>
|
||||||
<!--#endif-->
|
<!--#endif-->
|
||||||
<!--#ifdef APP-PLUS-->
|
<!--#ifdef APP-PLUS-->
|
||||||
@ -16,7 +16,7 @@
|
|||||||
<text class='title'>{{title}}</text>
|
<text class='title'>{{title}}</text>
|
||||||
<!--#endif-->
|
<!--#endif-->
|
||||||
<!--#ifdef H5-->
|
<!--#ifdef H5-->
|
||||||
<text v-if="isWeixin" class='tip'>请授权头像等信息,以便为您提供更好的服务!</text>
|
<text v-if="isWeixin" class='tip'>{{ isPay ? payInfo : '请授权头像等信息,以便为您提供更好的服务!'}}</text>
|
||||||
<text v-else class='tip'>{{info}}</text>
|
<text v-else class='tip'>{{info}}</text>
|
||||||
<!--#endif-->
|
<!--#endif-->
|
||||||
<!--#ifdef APP-PLUS-->
|
<!--#ifdef APP-PLUS-->
|
||||||
@ -26,7 +26,8 @@
|
|||||||
<text class='tip'>{{info}}</text>
|
<text class='tip'>{{info}}</text>
|
||||||
<!--#endif-->
|
<!--#endif-->
|
||||||
<view class='bottom flex'>
|
<view class='bottom flex'>
|
||||||
<text class='item' @click='close'>随便逛逛</text>
|
<text v-if="isPay" class='item' @click='toWecahtAuth'>取消</text>
|
||||||
|
<text v-else class='item' @click='close'>随便逛逛</text>
|
||||||
<!-- #ifdef MP -->
|
<!-- #ifdef MP -->
|
||||||
<button class="item grant" hover-class="none" @tap="getUserProfile"><text
|
<button class="item grant" hover-class="none" @tap="getUserProfile"><text
|
||||||
class="text">去授权</text></button>
|
class="text">去授权</text></button>
|
||||||
@ -38,7 +39,7 @@
|
|||||||
<!-- #endif -->
|
<!-- #endif -->
|
||||||
<!-- #ifdef H5 -->
|
<!-- #ifdef H5 -->
|
||||||
<button class="item grant" @tap="toWecahtAuth">
|
<button class="item grant" @tap="toWecahtAuth">
|
||||||
<text v-if="isWeixin" class="text">去授权</text>
|
<text v-if="isWeixin" class="text">{{isPay?'去支付':'去授权'}}</text>
|
||||||
<text v-else class="text">去登录</text>
|
<text v-else class="text">去登录</text>
|
||||||
</button>
|
</button>
|
||||||
<!-- #endif -->
|
<!-- #endif -->
|
||||||
@ -89,7 +90,11 @@
|
|||||||
isShowAuth: {
|
isShowAuth: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false
|
default: false
|
||||||
}
|
},
|
||||||
|
isPay:{
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
// #ifdef MP
|
// #ifdef MP
|
||||||
@ -108,6 +113,7 @@
|
|||||||
title: '授权提醒',
|
title: '授权提醒',
|
||||||
info: '请授权头像等信息,以便为您提供更好的服务!',
|
info: '请授权头像等信息,以便为您提供更好的服务!',
|
||||||
//#endif
|
//#endif
|
||||||
|
payInfo: '',
|
||||||
canUseGetUserProfile: false,
|
canUseGetUserProfile: false,
|
||||||
code: null,
|
code: null,
|
||||||
top: 0,
|
top: 0,
|
||||||
@ -146,6 +152,9 @@
|
|||||||
this.editModal = false
|
this.editModal = false
|
||||||
},
|
},
|
||||||
// #endif
|
// #endif
|
||||||
|
setPayInfo(e){
|
||||||
|
this.payInfo = e;
|
||||||
|
},
|
||||||
setAuthStatus() {
|
setAuthStatus() {
|
||||||
//#ifdef MP
|
//#ifdef MP
|
||||||
Routine.authorize().then(res => {
|
Routine.authorize().then(res => {
|
||||||
@ -317,6 +326,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.Popup .bottom .item {
|
.Popup .bottom .item {
|
||||||
|
flex: 1;
|
||||||
width: 250rpx;
|
width: 250rpx;
|
||||||
height: 80rpx;
|
height: 80rpx;
|
||||||
background-color: #eeeeee;
|
background-color: #eeeeee;
|
||||||
|
@ -112,7 +112,7 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/payment/get_payment",
|
"path": "pages/payment/get_payment",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "提货付款",
|
"navigationBarTitleText": "",
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -52,8 +52,8 @@
|
|||||||
<image src="/static/images/no_thing.png"></image>
|
<image src="/static/images/no_thing.png"></image>
|
||||||
<text style="margin-top: 60rpx;">{{tips}}</text>
|
<text style="margin-top: 60rpx;">{{tips}}</text>
|
||||||
<!-- 登陆 -->
|
<!-- 登陆 -->
|
||||||
<authorize v-show="!isWeixin" ref="authRef" :isAuto="isAuto" :isGoIndex="false" :isShowAuth="isShowAuth" @authColse="authColse"
|
<authorize ref="authRef" :isAuto="isAuto" :isGoIndex="false" :isShowAuth="isShowAuth" @authColse="authColse"
|
||||||
@onLoadFun="onLoadFun">
|
@onLoadFun="onLoadFun" :isPay="true">
|
||||||
</authorize>
|
</authorize>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@ -70,7 +70,7 @@
|
|||||||
mapGetters
|
mapGetters
|
||||||
} from "vuex";
|
} from "vuex";
|
||||||
import authorize from '@/components/Authorize';
|
import authorize from '@/components/Authorize';
|
||||||
import { Toast } from "../../libs/uniApi";
|
import { Toast } from "../../libs/uniApi";
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
authorize
|
authorize
|
||||||
@ -92,6 +92,7 @@ import { Toast } from "../../libs/uniApi";
|
|||||||
total_amount: ''
|
total_amount: ''
|
||||||
},
|
},
|
||||||
merchantInfo: '',
|
merchantInfo: '',
|
||||||
|
mer_name: '',
|
||||||
checkForm: {
|
checkForm: {
|
||||||
address_id: '',
|
address_id: '',
|
||||||
cart_id: [],
|
cart_id: [],
|
||||||
@ -114,19 +115,12 @@ import { Toast } from "../../libs/uniApi";
|
|||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
if (!this.isLogin) {
|
if (!this.isLogin) {
|
||||||
Cache.set("login_back_url_weixin", "/" + getCurrentPages()[0].route + "?mer_id=" + this.mer_id);
|
Cache.set("login_back_url_weixin", "/" + getCurrentPages()[0].route + "?mer_id=" + this.mer_id);
|
||||||
this.isAuto = true;
|
this.isAuto = true;
|
||||||
this.isShowAuth = true;
|
this.isShowAuth = true;
|
||||||
if(this.isWeixin) {
|
|
||||||
this.tips = '加载中...';
|
|
||||||
this.$nextTick(()=>{
|
|
||||||
this.$refs.authRef.toWecahtAuth();
|
|
||||||
})
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.checkForm.cart_id = [];
|
|
||||||
this.getProductInfoByMerid(this.mer_id);
|
|
||||||
}
|
}
|
||||||
|
this.checkForm.cart_id = [];
|
||||||
|
this.getProductInfoByMerid(this.mer_id);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
validateDecimal(event) {
|
validateDecimal(event) {
|
||||||
@ -190,12 +184,20 @@ import { Toast } from "../../libs/uniApi";
|
|||||||
getProductInfo({
|
getProductInfo({
|
||||||
mer_id: merid
|
mer_id: merid
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
this.merchantInfo = res.data;
|
this.merchantInfo = res.data;
|
||||||
|
let mer_name = '';
|
||||||
|
if(this.merchantInfo.merchant&&this.merchantInfo.merchant.mer_name) mer_name = this.merchantInfo.merchant.mer_name || '';
|
||||||
|
this.$nextTick(()=>{
|
||||||
|
this.$refs.authRef.setPayInfo(mer_name);
|
||||||
|
})
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
this.tips = err.message || err.smg || err;
|
this.tips = err.message || err.smg || err;
|
||||||
this.$util.Tips({
|
this.$util.Tips({
|
||||||
title: err.message || err.msg || err
|
title: err.message || err.msg || err
|
||||||
})
|
})
|
||||||
|
this.$nextTick(()=>{
|
||||||
|
this.$refs.authRef.setPayInfo('');
|
||||||
|
})
|
||||||
// #ifdef APP
|
// #ifdef APP
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
uni.navigateBack({
|
uni.navigateBack({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user