Feat: 订单流程

This commit is contained in:
LinCyJang
2025-10-19 23:15:06 +08:00
parent 6ffe3216d8
commit 9f529e00b7
9 changed files with 1277 additions and 133 deletions
+14
View File
@@ -0,0 +1,14 @@
export default {
data() {
return {
webUrl: this.$VUE_APP_RESOURCES_URL,
active: 'weixin',
}
},
methods: {
// 支付方式切换
payItem(type) {
this.active = type
}
}
}