|
@@ -34,24 +34,27 @@
|
|
<h2>优惠活动:</h2>
|
|
<h2>优惠活动:</h2>
|
|
<m-empty class="empty" msg="暂无优惠活动" key="data" />
|
|
<m-empty class="empty" msg="暂无优惠活动" key="data" />
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
|
|
+
|
|
<!-- <div class="pay_btn" >确认兑换</div> -->
|
|
<!-- <div class="pay_btn" >确认兑换</div> -->
|
|
<van-popup v-model="popupShow" closeable position="bottom"
|
|
<van-popup v-model="popupShow" closeable position="bottom"
|
|
:style="{ minHeight: '30%', maxHeight: '60%' }" >
|
|
:style="{ minHeight: '30%', maxHeight: '60%' }" >
|
|
<div class="popupContent" v-html="popupContent"></div>
|
|
<div class="popupContent" v-html="popupContent"></div>
|
|
</van-popup>
|
|
</van-popup>
|
|
|
|
+
|
|
|
|
+ <m-payment :closeStatus="isStatus" :amount="payMoney" :payment="payment" @onChangeStatus="onChangeStatus" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
/* eslint-disable */
|
|
/* eslint-disable */
|
|
import MHeader from '@/components/MHeader'
|
|
import MHeader from '@/components/MHeader'
|
|
import MEmpty from '@/components/MEmpty'
|
|
import MEmpty from '@/components/MEmpty'
|
|
|
|
+import MPayment from '@/components/MPayment'
|
|
import { browser, calcMinute } from '@/common/common'
|
|
import { browser, calcMinute } from '@/common/common'
|
|
import { tenantEntryActivitesList, queryUserInfo, sysTenantAccountGet, createOrder } from '@/api/app'
|
|
import { tenantEntryActivitesList, queryUserInfo, sysTenantAccountGet, createOrder } from '@/api/app'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'courseApply',
|
|
name: 'courseApply',
|
|
- components: { MHeader, MEmpty },
|
|
|
|
|
|
+ components: { MHeader, MEmpty, MPayment },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
userInfo: {},
|
|
userInfo: {},
|
|
@@ -63,7 +66,10 @@ export default {
|
|
popupShow: false,
|
|
popupShow: false,
|
|
popupContent: null,
|
|
popupContent: null,
|
|
dataShow: true, // 是否有数据
|
|
dataShow: true, // 是否有数据
|
|
- imageStatus: false
|
|
|
|
|
|
+ imageStatus: false,
|
|
|
|
+ isStatus: false,
|
|
|
|
+ payment: {}, // 支付对象
|
|
|
|
+ payMoney: 0,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
@@ -72,7 +78,7 @@ export default {
|
|
localStorage.setItem('Authorization', decodeURI(params.Authorization))
|
|
localStorage.setItem('Authorization', decodeURI(params.Authorization))
|
|
localStorage.setItem('userInfo', decodeURI(params.Authorization))
|
|
localStorage.setItem('userInfo', decodeURI(params.Authorization))
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
document.title = '课时兑换'
|
|
document.title = '课时兑换'
|
|
if(browser().android || browser().iPhone) {
|
|
if(browser().android || browser().iPhone) {
|
|
this.headerStatus = false
|
|
this.headerStatus = false
|
|
@@ -144,7 +150,6 @@ export default {
|
|
let result = res.data
|
|
let result = res.data
|
|
this.$toast.clear()
|
|
this.$toast.clear()
|
|
this.isClick = false
|
|
this.isClick = false
|
|
- console.log(result)
|
|
|
|
if(result.code == 200) {
|
|
if(result.code == 200) {
|
|
this.result = result.data
|
|
this.result = result.data
|
|
this.onSubmit()
|
|
this.onSubmit()
|
|
@@ -179,11 +184,15 @@ export default {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ onChangeStatus(val) {
|
|
|
|
+ this.isStatus = val
|
|
|
|
+ },
|
|
onSubmit() {
|
|
onSubmit() {
|
|
// submit 提交
|
|
// submit 提交
|
|
let result = this.result
|
|
let result = this.result
|
|
- // if(result.type == "YQPAY") {
|
|
|
|
- let f = result.payMap
|
|
|
|
|
|
+ let f = result.payMap
|
|
|
|
+ this.payMoney = Number(f.amount)
|
|
|
|
+ if(result.type == "YQPAY") {
|
|
document.querySelector('#onSubmit').action = f.host
|
|
document.querySelector('#onSubmit').action = f.host
|
|
document.querySelector('#apiContent').value = f.apiContent
|
|
document.querySelector('#apiContent').value = f.apiContent
|
|
document.querySelector('#merNo').value = f.merNo
|
|
document.querySelector('#merNo').value = f.merNo
|
|
@@ -193,15 +202,12 @@ export default {
|
|
document.querySelector('#timestamp').value = f.timestamp
|
|
document.querySelector('#timestamp').value = f.timestamp
|
|
document.querySelector('#version').value = f.version
|
|
document.querySelector('#version').value = f.version
|
|
document.querySelector('#onSubmit').submit()
|
|
document.querySelector('#onSubmit').submit()
|
|
- // } else if(result.type == "UNIONPAY") {
|
|
|
|
- // localStorage.setItem('payInfo', JSON.stringify(result))
|
|
|
|
- // this.$router.push({
|
|
|
|
- // path: '/alipay',
|
|
|
|
- // query: {
|
|
|
|
- // balance: result.totalPrice
|
|
|
|
- // }
|
|
|
|
- // })
|
|
|
|
- // }
|
|
|
|
|
|
+ } else if(result.type == "ADAPAY") {
|
|
|
|
+ // 汇付天下
|
|
|
|
+ this.payment = result
|
|
|
|
+ // 开始支付窗口
|
|
|
|
+ this.isStatus = true
|
|
|
|
+ }
|
|
},
|
|
},
|
|
onMore(item) {
|
|
onMore(item) {
|
|
this.popupContent = item.detail
|
|
this.popupContent = item.detail
|