| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475 |
- <template>
- <view class="content">
- <view class="title">
- <text class="iconfont icon-qian"></text>
- <text>江西南昌交通学院</text>
- </view>
- <view class="input_amount">
- <view class="amount_tip">充值金额(元)</view>
- <view class="amount_inp">
- <text></text>
- <input type="number" maxlength="4" v-model="amount" @input="onInput" @blur="onBlur"
- placeholder="请输入大于10,小于100元" placeholder-class="ph_class" />
- </view>
- <text>最多可输入金额100元</text>
- </view>
- <view class="amount_select">
- <view class="amount_btn">
- <text @tap="sel_amount(10)" :class="{selStyle:amount == 10}">充10元</text>
- <text @tap="sel_amount(20)" :class="{selStyle:amount == 20}">充20元</text>
- <text @tap="sel_amount(50)" :class="{selStyle:amount == 50}">充50元</text>
- <text @tap="sel_amount(100)" :class="{selStyle:amount == 100}">充100元</text>
- </view>
- <view class="reminder">温馨提示:最少充值金额为10元</view>
- <view class="payment">支付金额:<text>{{amount}}</text>元</view>
- <button class="btn_submit" type="primary" @tap="chongzhi">确认提交</button>
- <button class="btn_tel" type="default" @tap="callPhone">客服热线:{{phone_number}}</button>
- <view class="tips">
- 尊敬的用户,你好!因项目提现业务配置问题导致您无法提现对此,我们深表歉意!您可致电运营商处理提现问题,运营商电话:13645689854。感谢您对我们工作的支持和理解。
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- amount: 10, // 金额
- phone_number: '13645689854', // 客户热线电话
- userinfo: '', // 用户信息
- order_id: '', // 订单号
- pay_info: '', // 支付参数。将此参数透传给支付 SDK 发起支付
- access_token: '',
- sub_appid: '',
- card_number: '',
- user_name: '',
- test: getApp().globalData.test // 获取全局变量,控制是否是测试环境
- };
- },
- onLoad(options) {
- try {
- // 获取存储的用户数据
- const value = uni.getStorageSync('userinfo_storage_key')
- let item = decodeURIComponent(options.item)
- // console.log(item)
- if (item === '{}' && value == '') { // 如果没有用户信息,返回首页
- uni.redirectTo({
- url: '../index/index'
- });
- return;
- }
- // 先用传过来的用户信息
- if (item != '') {
- // 处理JSON字符串
- // this.userinfo = item.replace(/"/g, "'");
- this.userinfo = JSON.parse(item)
- // 更新存储的用户信息
- uni.setStorageSync('userinfo_storage_key', this.userinfo)
- } else if (JSON.stringify(value) !== '{}') {
- // 处理JSON字符串
- // this.userinfo = value.replace(/"/g, "'");
- this.userinfo = value;
- }
- } catch (e) {
- console.log(e)
- }
- if (this.test) //测试环境
- this.amount = 0.01
- this.sub_appid = this.userinfo.sub_appid
- this.card_number = this.userinfo.card_number
- this.user_name = this.userinfo.name
- // 获取应用有效凭证
- this.get_valid_credentials()
- },
- methods: {
- /**
- * 获取应用有效凭证
- */
- async get_valid_credentials() {
- const res = await this.$myRequest({
- host: 'wecard',
- url: '/cgi-bin/oauth2/token',
- method: 'POST',
- header: {
- 'content-type': 'application/json'
- },
- data: {
- 'app_key': this.userinfo.appkey,
- 'app_secret': this.userinfo.app_secret,
- 'grant_type': 'client_credentials',
- 'scope': 'base',
- 'ocode': this.userinfo.ocode
- }
- });
- if (typeof(res.data.access_token) != 'undefined') {
- // 获取到应用有效凭证,保存到页面变量中
- this.access_token = res.data.access_token
- } else {
- uni.showToast({
- title: '获取凭证失败',
- duration: 2000
- })
- }
- },
- /**
- * 组合地址,发起支付
- */
- async jsapi() {
- const res = await this.$myRequest({
- host: 'wecard',
- url: '/cgi-bin/pay/app/mppay',
- method: 'POST',
- header: {
- 'content-type': 'application/json'
- },
- data: {
- 'access_token': this.access_token,
- 'sub_appid': this.sub_appid,
- 'user_id': this.card_number,
- 'order_id': this.order_id = this.$getOrderId('shuifei'),
- 'amount': this.amount * 100,
- 'order_type': 1,
- // 'callback_url': 'http://wvwviw.natappfree.cc/HotWaters/wxpayrecharge.action'
- 'callback_url': this.$code_base_url + '/HotWater/wxpayrecharge.action'
- }
- })
- this.pay_info = res.data.data.pay_info
- // 发起支付
- this.pay_amount()
- },
- // 调起支付
- pay_amount() {
- var OpenMidas = require("@/static/openMidas.js") // 引入小程序目录下的SDK文件
- if (this.test) { // 是否是测试环境
- // 设置支付配置
- wx['OpenMidasConfig'] = {
- apiCommonConf: {
- version: "weixiao"
- },
- cgiDomain: {
- test: "midas.weixiao.qq.com/api", // 私有化参数联系微卡客服进行获取
- },
- webDomain: "https://midas.weixiao.qq.com/h5", // 私有化参数联系微卡客服进行获取
- sandboxWebDomain: "https://midas.weixiao.qq.com/h5" // 私有化参数联系微卡客服进行获取
- }
- var payInfo = this.pay_info; // 请求mppay接口返回的数据
- // var appMetaData = "card_number=" + this.card_number + "&user_name=" + this.user_name + "&account=" + this
- // .amount; // 自定义回调数据
- OpenMidas.init("test");
- } else {
- // 设置支付配置
- wx['OpenMidasConfig'] = {
- apiCommonConf: {
- version: "weixiao"
- },
- cgiDomain: {
- release: "midas.weixiao.qq.com/api", // 私有化参数联系微卡客服进行获取
- },
- webDomain: "https://midas.weixiao.qq.com/h5", // 私有化参数联系微卡客服进行获取
- sandboxWebDomain: "https://midas.weixiao.qq.com/h5" // 私有化参数联系微卡客服进行获取
- }
- var payInfo = this.pay_info; // 请求mppay接口返回的数据
- // var appMetaData = "card_number=" + this.card_number + "&user_name=" + this.user_name + "&account=" + this
- // .amount; // 自定义回调数据
- OpenMidas.init("release");
- }
- OpenMidas.pay(
- payInfo,
- // function(resultCode, innerCode, resultMsg, appMetaData) {
- function(resultCode, innerCode, resultMsg) {
- // console.log(resultCode); // 支付响应状态码
- // console.log(innerCode); // 支付响应内部错误码
- // console.log(resultMsg); // 支付响应说明
- // console.log(appMetaData); // 自定义回调数据
- if (resultCode == 0) {
- let pay_info_storage_key = {}
- pay_info_storage_key.resultCode = resultCode
- pay_info_storage_key.resultMsg = resultMsg
- // 保存用户充值成功
- uni.setStorageSync('pay_info_storage_key', pay_info_storage_key)
- uni.navigateBack({
- delta: 1
- })
- } else {
- uni.showToast({
- title: '支付异常',
- icon: 'success'
- })
- }
- }
- // },
- // appMetaData
- )
- },
- /**
- * 输入充值金额
- */
- onInput(e) {
- if (this.test) { // 测试环境
- return
- }
- const v = e.detail.value
- this.amount = 10
- const zero = /^(0{1,})|[^0-9]/g
- let final = 0
- if (!v) {
- final = 0
- } else {
- final = v.toString().replace(zero, (v) => {
- return 0
- })
- if (final.split('')[0] * 1 === 0) {
- final = final.slice(1) - 0 || 0
- }
- if (final > 100) {
- final = 100
- }
- }
- this.$nextTick(() => {
- this.amount = final.toString() || '0'
- })
- },
- /**
- * 输入框,失去焦点时
- */
- onBlur() {
- if (this.test) { // 测试环境
- return
- }
- if (this.amount < 10) {
- this.amount = 10
- }
- },
- /**
- * 选择充值金额
- */
- sel_amount(m) {
- this.amount = m
- },
- /**
- * 调用接口实现充值功能
- */
- chongzhi() {
- if (this.test) { // 测试环境
- uni.showModal({
- title: '提示',
- content: '您选择了充值:¥' + this.amount + ' 元',
- cancelText: '算了',
- confirmText: '充值',
- success: (res) => {
- if (res.confirm) {
- // 组合地址,发起支付
- this.jsapi()
- } else if (res.cancel) {
- return
- }
- }
- })
- return
- }
- if (this.amount < 10 || this.amount > 100) {
- uni.showToast({
- icon: 'none',
- title: '最少充值10元,最多充值100元!',
- mask: true,
- duration: 3000
- })
- return
- } else {
- uni.showModal({
- title: '提示',
- content: '您选择了充值:¥' + this.amount + ' 元',
- cancelText: '算了',
- confirmText: '充值',
- success: (res) => {
- if (res.confirm) {
- // 组合地址,发起支付
- this.jsapi()
- } else if (res.cancel) {
- return
- }
- }
- })
- }
- },
- /**
- * 拨打电话
- */
- callPhone() {
- uni.makePhoneCall({
- phoneNumber: this.phone_number
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- display: flex;
- flex-direction: column;
- background-color: #F5F5F5;
- width: 750rpx;
- // height: 100%;
- // align-items: stretch;
- .title {
- display: flex;
- align-items: center;
- padding: 40rpx;
- text:nth-child(1) {
- color: $my-color-primary;
- font-size: 50rpx;
- }
- text:nth-child(2) {
- font-size: 32rpx;
- margin-left: 15rpx;
- font-family: Microsoft YaHei-3970(82674968);
- color: #333333;
- }
- }
- .input_amount {
- background-color: #FFFFFF;
- width: 670rpx;
- height: 210rpx;
- padding: 40rpx 40rpx 0 40rpx;
- border-radius: 40rpx 40rpx 0 0;
- .amount_tip {
- font-size: 32rpx;
- font-family: Microsoft YaHei-3970(82674968);
- }
- .amount_inp {
- display: flex;
- flex-direction: row;
- border-bottom: 1px solid #cccccc;
- margin-top: 20rpx;
- margin-bottom: 10rpx;
- text {
- width: 50rpx;
- height: 74rpx;
- font-size: 50rpx;
- font-weight: bold;
- padding-top: 6rpx;
- font-family: Microsoft YaHei-3970(82674968);
- }
- text::before {
- content: '¥';
- }
- input {
- width: 620rpx;
- height: 80rpx;
- font-size: 50rpx;
- font-weight: bold;
- font-family: Microsoft YaHei-3970(82674968);
- }
- /deep/.ph_class {
- font-size: 28rpx;
- font-weight: normal;
- }
- }
- text {
- font-size: 26rpx;
- font-family: Microsoft YaHei-3970(82674968);
- font-weight: 500;
- }
- }
- .amount_select {
- padding: 40rpx;
- .amount_btn {
- display: flex;
- justify-content: space-between;
- margin: 30rpx 0 20rpx;
- text {
- width: 150rpx;
- height: 120rpx;
- line-height: 120rpx;
- font-size: 32rpx;
- font-family: Microsoft YaHei-3970(82674968);
- color: #333333;
- text-align: center;
- background: #FFFFFF;
- border: 3rpx solid #AAAAAA;
- }
- .selStyle {
- border: 0rpx;
- width: 156rpx;
- height: 126rpx;
- background: url(../../static/images/jinebeijing2x.png) 0rpx 0rpx no-repeat;
- background-size: 100%;
- }
- }
- .reminder {
- height: 26rpx;
- font-size: 26rpx;
- font-family: Microsoft YaHei-3970(82674968);
- color: $my-color-primary;
- }
- .payment {
- margin-top: 65rpx;
- font-size: 32rpx;
- font-family: Microsoft YaHei-3970(82674968);
- color: #333333;
- text {
- color: $my-color-primary;
- }
- }
- button {
- margin-top: 38rpx;
- }
- .btn_submit {
- border-radius: 10rpx;
- background-color: $my-color-primary;
- font-family: Microsoft YaHei-3970(82674968);
- color: #FFFFFF;
- }
- .btn_tel {
- border-radius: 10rpx;
- background: #CCCCCC;
- font-family: Microsoft YaHei-3970(82674968);
- color: #FFFFFF;
- }
- .tips {
- margin-top: 20rpx;
- font-size: 24rpx;
- font-family: Microsoft YaHei-3970(82674968);
- color: $my-color-primary;
- line-height: 36rpx;
- }
- }
- }
- </style>
|