修复
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m35s

This commit is contained in:
sexygoat
2026-03-31 15:13:19 +08:00
parent 104d62b17d
commit 3372be99b8
9 changed files with 383 additions and 218 deletions

View File

@@ -83,7 +83,7 @@
placeholder="请选择支付方式"
style="width: 100%"
>
<ElOption label="微信在线支付" value="wechat" />
<!--<ElOption label="微信在线支付" value="wechat" />-->
<!-- 只有平台用户才显示线下转账选项 -->
<ElOption
v-if="userStore.info.user_type === 1 || userStore.info.user_type === 2"
@@ -298,7 +298,7 @@
const createForm = reactive<{ amount: number; payment_method: string; shop_id: number | null }>({
amount: 100,
payment_method: 'wechat',
payment_method: '线下转账',
shop_id: null
})
@@ -537,7 +537,7 @@
const handleCreateDialogClosed = () => {
createFormRef.value?.resetFields()
createForm.amount = 100
createForm.payment_method = 'wechat'
createForm.payment_method = '线下转账'
createForm.shop_id = null
}