EditModal.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <el-dialog
  3. :visible.sync="visible"
  4. v-bind="modalOptions"
  5. >
  6. <el-form
  7. ref="formData"
  8. :model="formData"
  9. :rules="formRules"
  10. size="mini"
  11. label-suffix=":"
  12. label-width="150px"
  13. >
  14. <el-form-item label="代金券名称" prop="voucherName">
  15. <el-input v-model="formData.voucherName" placeholder="请输入代金券名称" maxlength="30" show-word-limit />
  16. </el-form-item>
  17. <el-form-item label="代金券描述" prop="desc">
  18. <el-input v-model="formData.desc" type="textarea" placeholder="请输入代金券描述" maxlength="520" :rows="3" show-word-limit />
  19. </el-form-item>
  20. <el-form-item label="代金券购买比例(与现金比例)" prop="purchaseRatio">
  21. <el-input v-model="formData.purchaseRatio" placeholder="请输入代金券购买比例" style="width: 250px;">
  22. <template #append>
  23. <div>:1</div>
  24. </template>
  25. </el-input>
  26. </el-form-item>
  27. <el-form-item label="代金券抵扣比例(与现金比例)" prop="paymentRatio">
  28. <el-input v-model="formData.purchaseRatio" placeholder="请输入代金券抵扣比例" style="width: 250px;">
  29. <template #append>
  30. <div>:1</div>
  31. </template>
  32. </el-input>
  33. </el-form-item>
  34. <el-form-item label="状态" prop="enabled">
  35. <el-select v-model="formData.enabled" size="mini" placeholder="请选择任务状态">
  36. <el-option label="启用" :value="0" />
  37. <el-option label="停用" :value="1" />
  38. </el-select>
  39. </el-form-item>
  40. </el-form>
  41. <template #footer>
  42. <span class="dialog-footer">
  43. <el-button size="mini" @click="handleClose">取 消</el-button>
  44. <el-button type="primary" size="mini" @click="handleSubmit">确 定</el-button>
  45. </span>
  46. </template>
  47. </el-dialog>
  48. </template>
  49. <script>
  50. import { savePlatformVoucher, updatePlatformVoucher } from '@/api/timedTasksManagement/timedTasksList'
  51. export default {
  52. name: 'EditModal',
  53. components: {
  54. },
  55. data() {
  56. return {
  57. modalOptions: {
  58. closeOnClickModal: false,
  59. width: '820px',
  60. title: ''
  61. },
  62. visible: false,
  63. formData: {
  64. platformVoucherId: '',
  65. voucherCode: '', // 代金券代码(唯一)
  66. voucherName: '', // 代金券名称
  67. desc: '', // 代金券描述
  68. purchaseRatio: '', // 代金券购买比例(与现金比例)
  69. paymentRatio: '', // 代金券抵扣比例(与现金比例)
  70. enabled: '', // 启停:0-为启用 1-为停用
  71. operatorId: '', // 平台操作者ID
  72. createTime: '',
  73. updateTime: ''
  74. },
  75. formRules: {
  76. voucherName: [
  77. { required: true, message: '请输入代金券名称' }
  78. ],
  79. purchaseRatio: [
  80. { required: false, message: '请输入参与值' },
  81. { pattern: /^0\.\d{0,2}$|^[1-9]\d*\.\d{0,2}$|^[1-9]\d*$/, message: '数值有误' }
  82. ],
  83. paymentRatio: [
  84. { required: false, message: '请输入参与值' },
  85. { pattern: /^0\.\d{0,2}$|^[1-9]\d*\.\d{0,2}$|^[1-9]\d*$/, message: '数值有误' }
  86. ],
  87. enabled: [
  88. { required: true, message: '请选择状态' }
  89. ]
  90. }
  91. }
  92. },
  93. methods: {
  94. handleClose() {
  95. this.visible = false
  96. },
  97. initList() {
  98. },
  99. handleOpen(params = {}) {
  100. this.modalOptions.title = params.platformVoucherId ? '编辑代金券' : '添加代金券'
  101. this.formData = Object.assign(this.$options.data().formData, params)
  102. this.visible = true
  103. this.initList()
  104. if (params.platformVoucherId) {
  105. // this.getInfo(params.platformVoucherId)
  106. } else {
  107. this.$refs.formData && this.$refs.formData.resetFields()
  108. }
  109. },
  110. async getInfo(id) {
  111. const loading = this.$loading({ text: '加载中' })
  112. try {
  113. const res = await xxx({ id })
  114. this.formData = Object.assign(this.$options.data().formData, res.data, {
  115. platformVoucherId: res.data.platformVoucherId || ''
  116. })
  117. this.$nextTick(() => {
  118. this.$refs.formData && this.$refs.formData.validate()
  119. })
  120. } finally {
  121. loading.close()
  122. }
  123. },
  124. handleSubmit() {
  125. this.$refs.formData.validate(async (valid) => {
  126. if (valid) {
  127. const loading = this.$loading({ text: '加载中' })
  128. try {
  129. const { ...otps } = this.formData
  130. const params = {
  131. ...otps
  132. }
  133. this.formData.platformVoucherId ? await updatePlatformVoucher(params) : await savePlatformVoucher(params)
  134. loading.close()
  135. this.$message({ message: `${this.formData.platformVoucherId ? '编辑' : '添加'}成功!`, type: 'success' })
  136. this.$emit('success')
  137. this.visible = false
  138. } catch (e) {
  139. loading.close()
  140. } finally {
  141. loading.close()
  142. }
  143. } else {
  144. this.$message({ message: '请输入相关信息', type: 'warning' })
  145. return false
  146. }
  147. })
  148. }
  149. }
  150. }
  151. </script>