更新记录
1.0.2(2023-06-28)
下载此版本
组件优化
1.0.1(2023-06-28)
下载此版本
组件优化
1.0.0(2023-06-27)
下载此版本
组件初始化
查看更多
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.8.0 app-vue app-nvue |
√ |
√ |
√ |
√ |
√ |
√ |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
√ |
√ |
√ |
√ |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
cc-payDialog
使用方法
<!--:money:支付金额 show:是否显示 @cancel:取消 @success:确认支付 -->
<cc-payDialog :money="money" :show="payVisible" @cancel="cancelPayHandle" @success="successPayHandle"></cc-payDialog>
HTML代码实现部分
<template>
<view class="content">
<button style="margin-top: 29px;" @click="goPayClick">微信支付</button>
<!--:money:支付金额 show:是否显示 @cancel:取消 @success:确认支付 -->
<cc-payDialog :money="money" :show="payVisible" @cancel="cancelPayHandle"
@success="successPayHandle"></cc-payDialog>
</view>
</template>
<script>
export default {
components: {
},
data() {
return {
payVisible: false,
money: '88',
};
},
onLoad: function(e) {
},
methods: {
goPayClick() {
this.payVisible = true;
},
successPayHandle: function() {
this.payVisible = true;
},
cancelPayHandle: function() {
this.payVisible = false;
},
}
};
</script>
<style lang="scss" scoped>
.content {
display: flex;
flex-direction: column;
}
</style>
组件实现代码
<template>
<view :class="'pop-up ' + (show ? 'show' : 'hide')">
<view @tap="close" class="pop-up-mask ptp_exposure" data-ptpid="1fkl-vm1a-vieo-9fh2" v-if="show"></view>
<view :class="'pop-box ' + (isPartDetails ? 'pb' : '')">
<view class="pop-box-title">现金支付</view>
<view @tap="close" class="iconfont iconclose pop-box-close ptp_exposure" data-ptpid="fk13-fu28-zfo1-82hf">
</view>
<view class="pop-box-select">
<view>微信</view>
<view class="iconfont iconradio_selected pop-box-icon"></view>
</view>
<view class="pop-box-tips">
<text>需支付:</text>
<text class="pop-box-tips-red">{{ money }}元</text>
</view>
<view class="pop-box-agreement">
<image @tap="selectHandle" class="pop-box-agreement-icon"
src="https://qiniu-image.qtshe.com/20210617_selectActive.png" v-if="select"></image>
<image @tap="selectHandle" class="pop-box-agreement-icon"
src="https://qiniu-image.qtshe.com/20210617_select.png" v-else></image>
<view>本人确认</view>
<view @tap="jumpToAgreement" class="pop-box-agreement-text" data-ptpid="ufn1-vm1a-vo2m-vu2b">《支付相关协议》
</view>
</view>
<view @tap="payHandle" class="pop-box-button ptp_exposure" data-ptpid="du1g-f8h1-ch1n-vhm1">确认支付</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
select: true
};
},
props: {
show: {
type: Boolean,
default: false
},
money: {
type: [String, Number],
default: 0.01
},
isPartDetails: {
type: Boolean,
default: false
}
},
methods: {
close: function() {
this.$emit("cancel")
},
payHandle: function() {
this.$emit("success")
},
jumpToAgreement: function() {
},
selectHandle: function() {
this.select = !this.select;
}
}
};
</script>
<style lang="scss">
@import './index.scss';
</style>