Files
xdd-uniapp-new/pkg_product/mixins/buyMixins.js
T
2025-10-19 23:15:06 +08:00

14 lines
214 B
JavaScript

export default {
data() {
return {
webUrl: this.$VUE_APP_RESOURCES_URL,
active: 'weixin',
}
},
methods: {
// 支付方式切换
payItem(type) {
this.active = type
}
}
}