[fix 82928] 会议报名非打包企业缴费方式不能选择打包

This commit is contained in:
danshihao
2024-03-21 17:22:01 +08:00
parent 7d1b251fe0
commit 2b7d1b3cba
4 changed files with 46 additions and 4 deletions
+7
View File
@@ -55,4 +55,11 @@ export const IncomeMethod = {
export const YesOrNoEnums = {
yes: { name: '是', value: '1'},
no: { name: '否', value: '0'},
}
// 缴费方式
export const PayMode = {
remittance: { name: '汇款', value: 1 },
onSitePayment: { name: '现场缴费', value: 2 },
pack: { name: '打包', value: 3 },
}