| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428 |
- <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 class="inp" 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: '', // 金额
- phone_number: '13645689854', // 客户热线电话
- IP: '',
- code: '',
- ceshi: 'code',
- test: this.$store.state.test
- };
- },
- onLoad() {
- if (this.test) {
- this.amount = 0.01
- }
- },
- methods: {
- /**
- * 获得code
- */
- getCode(param_ip) {
- uni.login({
- success: (res) => {
- // console.log('recharge', res);
- if (res.code) {
- // 组合地址,发起支付
- this.jsapi(param_ip, res.code)
- } else {
- uni.showToast({
- title: res.errMsg,
- icon: 'none'
- });
- }
- }
- })
- },
- /**
- * 获取IP
- */
- async getIP() {
- const res = await this.$myRequest({
- host: 'ip',
- url: '?ie=utf-8',
- method: 'POST'
- })
- if (res) {
- // console.log(res);
- const reg = /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/;
- let ip = reg.exec(res.data);
-
- // 获取code
- this.getCode(ip[0])
- }
- },
- /**
- * 请求服务器,获取支付参数,并支付
- */
- async jsapi(param_ip, param_code) {
- if (param_code == '' || this.amount == '' || param_ip == '') {
- uni.showToast({
- icon: 'none',
- title: 'code、充值金额或IP为空'
- });
- return
- }
-
- const res = await this.$myRequest({
- host: this.ceshi,
- url: '/HotWaters/wpPay.action',
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
- data: {
- code: param_code,
- num: this.amount,
- ip: param_ip
- }
- })
-
- // console.log(res);
- if (res.data.pay == 'error') {
- uni.showToast({
- title: '未获得支付参数',
- icon: 'success',
- duration: 3000
- });
- } else {
- wx.requestPayment({
- timeStamp: res.data.pay.timeStamp,
- nonceStr: res.data.pay.nonceStr,
- package: 'prepay_id=' + res.data.pay.prepay_id,
- signType: res.data.pay.signType,
- paySign: res.data.pay.paySign,
- success: (res) => {
- if (res.errMsg == 'requestPayment:ok') {
- this.$store.state.payInfo.from = 'reshui_pay'
- this.$store.state.payInfo.resultMsg = '支付成功'
- this.$store.state.reshui_amount = this.amount
- uni.navigateBack({
- delta: 1
- })
- }
- },
- fail: (res) => {
- if (res.errMsg == 'requestPayment:fail cancel') {
- uni.showToast({
- title: '支付已取消',
- icon: 'success',
- duration: 2000
- });
- }
- },
- complete: (res) => {
- // console.log(res);
- }
- });
- }
- },
- /**
- * 输入充值金额
- */
- onInput(e) {
- if (this.test) { // 测试环境
- return
- }
- const v = e.detail.value
- 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(() => {
- if (final.toString() == '0') {
- this.amount = ''
- } else {
- 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 (isNaN(this.amount)) {
- uni.showToast({
- title: '请输入正确金额',
- duration: 2000
- })
- return
- }
- // 测试环境下执行
- if (this.test) { // 测试环境
- uni.showModal({
- title: '提示',
- content: '您选择了充值:¥' + this.amount + ' 元',
- cancelText: '算了',
- confirmText: '充值',
- success: (res) => {
- if (res.confirm) {
- // 获取IP
- this.getIP()
- } 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
- }
- // 确认
- uni.showModal({
- title: '提示',
- content: '您选择了充值:¥' + this.amount + ' 元',
- cancelText: '算了',
- confirmText: '充值',
- success: (res) => {
- if (res.confirm) {
- // 获取IP
- this.getIP()
- } else if (res.cancel) {
- return
- }
- }
- })
- },
- /**
- * 拨打电话
- */
- callPhone() {
- uni.makePhoneCall({
- phoneNumber: this.phone_number
- });
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .content {
- display: flex;
- flex-direction: column;
- background-color: #F5F5F5;
- width: 750rpx;
- .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 0rpx 40rpx;
- border-radius: 40rpx 40rpx 0rpx 0rpx;
- .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: '¥';
- }
- .inp {
- width: 620rpx;
- height: 80rpx;
- font-size: 50rpx;
- font-weight: bold;
- font-family: Microsoft YaHei-3970(82674968);
- }
- /deep/.ph_class {
- font-size: 32rpx;
- font-weight: normal;
- color: #B2B2B2;
- }
- }
- text {
- font-size: 26rpx;
- font-family: Microsoft YaHei-3970(82674968);
- font-weight: 500;
- }
- }
- .amount_select {
- padding: 0rpx 40rpx 40rpx 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>
|