This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user