| | |
| | | |
| | | const form = reactive({ |
| | | name: '', |
| | | billingMethod: EnumBillingMethod.Month, |
| | | billingMethod: EnumBillingMethod.Day, |
| | | serviceFee: '' as any as number, |
| | | settlementCycle: EnumSettlementCycle.Month, |
| | | settlementCycle: EnumSettlementCycle.Day, |
| | | benefits: [] as string[], |
| | | ageMinLimit: '' as any as number, |
| | | ageMaxLimit: '' as any as number, |
| | |
| | | } |
| | | let res = await taskServices.saveTaskInfo(params); |
| | | if (res) { |
| | | Message.success(isEdit ? '编辑成功' : '发布成功', { |
| | | Message.success(isEdit && !isCopy ? '编辑成功' : '发布成功', { |
| | | onClosed() { |
| | | goBack(); |
| | | }, |