177 lines
7.2 KiB
Vue
177 lines
7.2 KiB
Vue
<template>
|
|
<view :class="theme_view">
|
|
<view class="page bg-white">
|
|
<view class="content padding-horizontal-main tc">
|
|
<block v-if="data_list_loding_status == 3">
|
|
<view class="padding-vertical-xxxxl">
|
|
<text class="cr-price fw-b text-size-lg">{{payment_currency_symbol}}</text>
|
|
<text class="cr-price fw-b text-size-xxl">{{data.pay_price}}</text>
|
|
</view>
|
|
<view class="margin-top-sm padding-bottom-xxxxl">
|
|
<view :class="'cr-'+(pay_status == 1 ? 'green' : (pay_status == 2 ? 'red' : 'grey'))">{{pay_msg}}</view>
|
|
</view>
|
|
<view v-if="pay_status == 2" class="margin-top-xxxxl padding-vertical-xxxxl">
|
|
<button class="bg-green br-green cr-white round text-size-sm padding-horizontal-xxxxl" size="mini" hover-class="none" @tap="pay_handle">重新发起支付</button>
|
|
</view>
|
|
</block>
|
|
<block v-else>
|
|
<!-- 提示信息 -->
|
|
<component-no-data :propStatus="data_list_loding_status" :propMsg="data_list_loding_msg"></component-no-data>
|
|
</block>
|
|
|
|
<view v-if="is_back_btn && pay_status != 0" class="margin-top-xxxxl padding-top-xxxxl tc">
|
|
<button class="bg-white br-main cr-main round text-size-sm padding-horizontal-xxxxl" size="mini" hover-class="none" open-type="launchApp" app-parameter="wechat">返回APP</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 公共 -->
|
|
<component-common ref="common" :propIsAppAdmin="false"></component-common>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
const app = getApp();
|
|
import componentCommon from '@/components/common/common';
|
|
import componentNoData from "@/components/no-data/no-data";
|
|
export default {
|
|
data() {
|
|
return {
|
|
theme_view: app.globalData.get_theme_value_view(),
|
|
payment_currency_symbol: app.globalData.currency_symbol(),
|
|
params: {},
|
|
data_list_loding_status: 1,
|
|
data_list_loding_msg: '',
|
|
scene: 0,
|
|
scene_back_arr: [1069, 1038, 1089, 1090, 1001, 1131, 1187],
|
|
is_back_btn: false,
|
|
data: {},
|
|
pay_status: 0,
|
|
pay_msg: '',
|
|
};
|
|
},
|
|
|
|
components: {
|
|
componentCommon,
|
|
componentNoData
|
|
},
|
|
onLoad(params) {
|
|
// 调用公共事件方法
|
|
app.globalData.page_event_onload_handle(params);
|
|
|
|
// 设置参数
|
|
params = app.globalData.launch_params_handle(params);
|
|
var scene = app.globalData.get_scene_data();
|
|
this.setData({
|
|
params: params,
|
|
scene: scene,
|
|
is_back_btn: this.scene_back_arr.indexOf(scene) != -1,
|
|
});
|
|
|
|
// 数据加载
|
|
this.get_data();
|
|
},
|
|
|
|
onShow() {
|
|
// 调用公共事件方法
|
|
app.globalData.page_event_onshow_handle();
|
|
|
|
// 公共onshow事件
|
|
if ((this.$refs.common || null) != null) {
|
|
this.$refs.common.on_show();
|
|
}
|
|
},
|
|
|
|
// 下拉刷新
|
|
onPullDownRefresh() {
|
|
this.get_data();
|
|
},
|
|
|
|
methods: {
|
|
// // 初始化
|
|
get_data() {
|
|
var self = this;
|
|
var action = 'login';
|
|
// #ifdef MP-BAIDU
|
|
action = 'getLoginCode';
|
|
// #endif
|
|
uni[action]({
|
|
success: (res) => {
|
|
if (res.code) {
|
|
uni.request({
|
|
url: app.globalData.get_request_url("paydata", "cashier", "allocation"),
|
|
method: 'POST',
|
|
data: {...self.params, ...{authcode: res.code}},
|
|
dataType: 'json',
|
|
success: (res) => {
|
|
uni.stopPullDownRefresh();
|
|
if (res.data.code == 0 && (res.data.data || null) != null) {
|
|
this.setData({
|
|
data_list_loding_status: 3,
|
|
data_list_loding_msg: '',
|
|
data: res.data.data,
|
|
});
|
|
|
|
// 直接调起支付
|
|
this.pay_handle();
|
|
} else {
|
|
this.setData({
|
|
data_list_loding_status: 0,
|
|
data_list_loding_msg: res.data.msg,
|
|
});
|
|
}
|
|
},
|
|
fail: () => {
|
|
uni.stopPullDownRefresh();
|
|
this.setData({
|
|
data_list_loding_status: 0,
|
|
data_list_loding_msg: self.$t('common.internet_error_tips'),
|
|
});
|
|
},
|
|
});
|
|
}
|
|
},
|
|
fail: (e) => {
|
|
uni.stopPullDownRefresh();
|
|
this.setData({
|
|
data_list_loding_status: 0,
|
|
data_list_loding_msg: self.$t('login.login.3nmrg2'),
|
|
});
|
|
},
|
|
});
|
|
},
|
|
|
|
// 支付处理
|
|
pay_handle(e) {
|
|
if(this.pay_status != 1)
|
|
{
|
|
this.setData({
|
|
pay_status: 0,
|
|
pay_msg: this.$t('common.payment_in_text'),
|
|
});
|
|
uni.requestPayment({
|
|
timeStamp: this.data.pay_data.timeStamp,
|
|
nonceStr: this.data.pay_data.nonceStr,
|
|
package: this.data.pay_data.package,
|
|
signType: this.data.pay_data.signType,
|
|
paySign: this.data.pay_data.paySign,
|
|
success: (res) => {
|
|
this.setData({
|
|
pay_status: 1,
|
|
pay_msg: this.$t('paytips.paytips.679rxu'),
|
|
});
|
|
},
|
|
fail: (res) => {
|
|
this.setData({
|
|
pay_status: 2,
|
|
pay_msg: this.$t('paytips.paytips.6y488i'),
|
|
});
|
|
},
|
|
});
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
@import './cashier.css';
|
|
</style> |