You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
515 B
28 lines
515 B
<template>
|
|
<view>
|
|
<u-modal v-model="isCoins" title="金币不足提醒" confirm-color="#000000" @confirm="confirm" content='您的金币不足,请尽快充值体验更多权益.' confirm-text="立即充值"></u-modal>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:"insufficient",
|
|
props: {
|
|
isCoins: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
},
|
|
methods: {
|
|
confirm() {
|
|
uni.navigateTo({
|
|
url: "/pages/users/recharge/index"
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style> |