我们发布啦
This commit is contained in:
256
admin/src/views/sms/smsPay/index.vue
Normal file
256
admin/src/views/sms/smsPay/index.vue
Normal file
@@ -0,0 +1,256 @@
|
||||
<template>
|
||||
<div class="divBox">
|
||||
<el-card class="box-card">
|
||||
<el-row v-loading="fullscreenLoading" :gutter="16">
|
||||
<el-col :span="24" class="ivu-text-left mb20">
|
||||
<el-col :xs="12" :sm="6" :md="4" :lg="3" class="mr20">
|
||||
<span class="ivu-text-right ivu-block">短信账户名称:</span>
|
||||
</el-col>
|
||||
<el-col :xs="11" :sm="13" :md="19" :lg="20">
|
||||
<span>{{ account }}</span>
|
||||
</el-col>
|
||||
</el-col>
|
||||
<el-col :span="24" class="ivu-text-left mb20">
|
||||
<el-col :xs="12" :sm="6" :md="4" :lg="3" class="mr20">
|
||||
<span class="ivu-text-right ivu-block">当前剩余条数:</span>
|
||||
</el-col>
|
||||
<el-col :xs="11" :sm="13" :md="19" :lg="20">
|
||||
<span>{{ numbers }}</span>
|
||||
</el-col>
|
||||
</el-col>
|
||||
<el-col :span="24" class="ivu-text-left mb20">
|
||||
<el-col :xs="12" :sm="6" :md="4" :lg="3" class="mr20">
|
||||
<span class="ivu-text-right ivu-block">选择套餐:</span>
|
||||
</el-col>
|
||||
<el-col :xs="11" :sm="13" :md="19" :lg="20">
|
||||
<el-row :gutter="20">
|
||||
<el-col
|
||||
v-for="(item, index) in list"
|
||||
:key="index"
|
||||
:xxl="4"
|
||||
:xl="8"
|
||||
:lg="8"
|
||||
:md="12"
|
||||
:sm="24"
|
||||
:xs="24"
|
||||
>
|
||||
<div
|
||||
class="list-goods-list-item mb15"
|
||||
:class="{active:index === current}"
|
||||
@click="check(item,index)"
|
||||
>
|
||||
<div class="list-goods-list-item-title" :class="{active:index === current}">¥ <i>{{ item.price }}</i></div>
|
||||
<div class="list-goods-list-item-price" :class="{active:index === current}">
|
||||
<span>短信条数: {{ item.num }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-col>
|
||||
</el-col>
|
||||
<el-col v-if="checkList" :span="24" class="ivu-text-left mb20">
|
||||
<el-col :xs="12" :sm="6" :md="4" :lg="3" class="mr20">
|
||||
<span class="ivu-text-right ivu-block">充值条数:</span>
|
||||
</el-col>
|
||||
<el-col :xs="11" :sm="13" :md="19" :lg="20">
|
||||
<span>{{ checkList.num }}</span>
|
||||
</el-col>
|
||||
</el-col>
|
||||
<el-col v-if="checkList" :span="24" class="ivu-text-left mb20">
|
||||
<el-col :xs="12" :sm="6" :md="4" :lg="3" class="mr20">
|
||||
<span class="ivu-text-right ivu-block">支付金额:</span>
|
||||
</el-col>
|
||||
<el-col :xs="11" :sm="13" :md="19" :lg="20">
|
||||
<span class="list-goods-list-item-number">¥{{ checkList.price }}</span>
|
||||
</el-col>
|
||||
</el-col>
|
||||
<el-col :span="24" class="ivu-text-left mb20">
|
||||
<el-col :xs="12" :sm="6" :md="4" :lg="3" class="mr20">
|
||||
<span class="ivu-text-right ivu-block">付款方式:</span>
|
||||
</el-col>
|
||||
<el-col :xs="11" :sm="13" :md="19" :lg="20">
|
||||
<span class="list-goods-list-item-pay">微信支付<i v-if="code.invalid">{{ ' ( 支付码过期时间:' + code.invalid + ' )' }}</i></span>
|
||||
</el-col>
|
||||
</el-col>
|
||||
<el-col :span="24">
|
||||
<el-col :xs="12" :sm="6" :md="4" :lg="3" class="mr20"> </el-col>
|
||||
<el-col :xs="11" :sm="13" :md="19" :lg="20">
|
||||
<div class="list-goods-list-item-code mr20"><img :src="code.code_url"></div>
|
||||
</el-col>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { smsNumberApi, smsPriceApi, payCodeApi, smsInfoApi } from '@/api/sms'
|
||||
import { isLogin } from '@/libs/public'
|
||||
import { mapGetters } from 'vuex'
|
||||
export default {
|
||||
name: 'SmsPay',
|
||||
data() {
|
||||
return {
|
||||
numbers: '',
|
||||
account: '',
|
||||
list: [],
|
||||
current: 0,
|
||||
checkList: {},
|
||||
fullscreenLoading: false,
|
||||
code: {}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapGetters([
|
||||
'isLogin'
|
||||
])
|
||||
},
|
||||
mounted() {
|
||||
this.getNumber()
|
||||
this.getPrice()
|
||||
return
|
||||
|
||||
if (!this.isLogin) {
|
||||
this.$router.push('/operation/systemSms/config?url=' + this.$route.path)
|
||||
} else {
|
||||
this.getNumber()
|
||||
this.getPrice()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 查看是否登录
|
||||
onIsLogin() {
|
||||
this.fullscreenLoading = true
|
||||
this.$store.dispatch('user/isLogin').then(async res => {
|
||||
const data = res
|
||||
if (!data.status) {
|
||||
this.$message.warning('请先登录')
|
||||
this.$router.push('/operation/systemSms/config?url=' + this.$route.path)
|
||||
} else {
|
||||
this.getNumber()
|
||||
this.getPrice()
|
||||
}
|
||||
this.fullscreenLoading = false
|
||||
}).catch(res => {
|
||||
this.$router.push('/operation/systemSms/config?url=' + this.$route.path)
|
||||
this.fullscreenLoading = false
|
||||
})
|
||||
},
|
||||
// 剩余条数
|
||||
getNumber() {
|
||||
smsInfoApi().then(async res => {
|
||||
const data = res
|
||||
this.numbers = data.number
|
||||
this.account = data.account
|
||||
})
|
||||
},
|
||||
// 支付套餐
|
||||
getPrice() {
|
||||
this.fullscreenLoading = true
|
||||
smsPriceApi({ page: 1, limit: 9999}).then(async res => {
|
||||
setTimeout(() => {
|
||||
this.fullscreenLoading = false
|
||||
}, 800)
|
||||
const data = res
|
||||
this.list = data.data
|
||||
this.checkList = this.list[0]
|
||||
this.getCode(this.checkList)
|
||||
}).catch(() => {
|
||||
this.fullscreenLoading = false
|
||||
})
|
||||
},
|
||||
// 选中
|
||||
check(item, index) {
|
||||
this.fullscreenLoading = true
|
||||
this.current = index
|
||||
setTimeout(() => {
|
||||
this.getCode(item)
|
||||
this.checkList = item
|
||||
this.fullscreenLoading = false
|
||||
}, 800)
|
||||
},
|
||||
// 支付码
|
||||
getCode(item) {
|
||||
const data = {
|
||||
payType: 'weixin',
|
||||
mealId: item.id,
|
||||
price: item.price
|
||||
}
|
||||
payCodeApi(data).then(async res => {
|
||||
this.code = res
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.active{
|
||||
background: #0091FF;
|
||||
box-shadow:0px 6px 20px 0px rgba(0, 145, 255, 0.3);
|
||||
color: #fff !important;
|
||||
}
|
||||
.list-goods-list-item{
|
||||
border: 1px solid #DADFE6;
|
||||
padding: 20px 10px;
|
||||
box-sizing: border-box;
|
||||
border-radius:3px;
|
||||
}
|
||||
.list-goods-list{
|
||||
&-item{
|
||||
text-align: center;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
img{
|
||||
width: 60%;
|
||||
}
|
||||
.ivu-tag{
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
}
|
||||
&-title{
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
color: #0091FF;
|
||||
margin-bottom: 3px;
|
||||
i{
|
||||
font-size: 30px;
|
||||
font-style: normal;
|
||||
}
|
||||
}
|
||||
&-desc{
|
||||
font-size: 14px;
|
||||
color: #808695;
|
||||
}
|
||||
&-price{
|
||||
font-size: 14px;
|
||||
color: #000000;
|
||||
s{
|
||||
color: #c5c8ce;
|
||||
}
|
||||
}
|
||||
&-number{
|
||||
font-size: 14px;
|
||||
color: #ED4014;
|
||||
}
|
||||
&-pay{
|
||||
font-size: 14px;
|
||||
color: #00C050;
|
||||
i{
|
||||
font-size: 12px;
|
||||
font-style: normal;
|
||||
color: #6D7278;
|
||||
}
|
||||
}
|
||||
&-code{
|
||||
width: 130px;
|
||||
height: 130px;
|
||||
img{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user