FreeQueuingModal.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <el-dialog :close-on-click-modal="false" :visible.sync="freeQueuingModalVisible" :title="dialogTitle" :before-close="handleBeforeClose">
  3. <el-form ref="freeQueuingModalRef" :rules="rules" :model="form" label-width="auto">
  4. <el-form-item label="活动名称" prop="activitiesName">
  5. <el-input placeholder="请输入活动名称" v-model="form.activitiesName" size="mini"></el-input>
  6. </el-form-item>
  7. <el-form-item label="支持商家" prop="shopIds">
  8. <el-select style="width: 100%" multiple filterable remote reserve-keyword placeholder="请输入商家名称" :remote-method="handleSerachShop" :loading="searchShopLoading" v-model="form.shopIds">
  9. <el-option v-for="shop in shopList" :key="shop.shopId" :label="shop.shopName" :value="shop.shopId"></el-option>
  10. </el-select>
  11. </el-form-item>
  12. <el-form-item label="商家免单比例(现金)" prop="shopExemptionRatio">
  13. <el-input placeholder="请填写免单比例,范围0 - 1,保留两位小数" v-model="form.shopExemptionRatio"></el-input>
  14. </el-form-item>
  15. <el-form-item label="发起方" prop="isPlatformInit">
  16. <el-radio-group size="mini" v-model="form.isPlatformInit">
  17. <el-radio :label="1">平台</el-radio>
  18. <el-radio :label="0">商家</el-radio>
  19. </el-radio-group>
  20. </el-form-item>
  21. </el-form>
  22. <template #footer>
  23. <span class="dialog-footer">
  24. <el-button size="mini" @click="close">取消</el-button>
  25. <el-button size="mini" type="primary" :loading="isLoading" @click="onConfirm">{{ form.id ? '确认编辑' : '确认创建排队免单' }}</el-button>
  26. </span>
  27. </template>
  28. </el-dialog>
  29. </template>
  30. <script>
  31. import { createFreeQueuingApi, updateFreeQueuingApi } from '@/api/freeQueuing'
  32. import { businessListGetAll } from '@/api/business'
  33. export default {
  34. data() {
  35. return {
  36. isLoading: false,
  37. freeQueuingModalVisible: false,
  38. dialogTitle: '新增排队免单',
  39. form: {
  40. id: undefined,
  41. activitiesName: '', // 活动名称
  42. shopIds: [],
  43. isPlatformInit: 1, // 是否为平台发起 0:商家
  44. shopExemptionRatio: ''
  45. },
  46. rules: {
  47. activitiesName: [{ required: true, message: '请输入活动名称', trigger: 'blur' }],
  48. shopIds: [{ required: true, type: 'array', message: '请选择商家', trigger: 'change' }],
  49. shopExemptionRatio: [
  50. { required: true, message: '请填写商家免单比例', trigger: 'blur' },
  51. {
  52. validator: (rule, value, callback) => {
  53. if (value === undefined || value === '') {
  54. callback(new Error('请输入 aaa 值'))
  55. } else if (isNaN(value) || value < 0 || value > 1) {
  56. callback(new Error('免单比例值必须是 0 到 1 之间的小数'))
  57. } else {
  58. callback()
  59. }
  60. },
  61. trigger: 'blur'
  62. }
  63. ],
  64. isPlatformInit: [{ required: true, message: '请选择是否是平台发起', trigger: 'change' }]
  65. },
  66. shopList: [],
  67. searchShopLoading: false
  68. }
  69. },
  70. methods: {
  71. show(row) {
  72. this.reset()
  73. if (row) {
  74. this.form.id = row.id
  75. this.form.isPlatformInit = Number(row.isPlatformInit)
  76. this.form.activitiesName = row.activitiesName
  77. this.form.shopIds = row.shopIds ? row.shopIds.split(',') : []
  78. this.form.shopExemptionRatio = row.shopExemptionRatio || ''
  79. this.dialogTitle = '编辑排队免单'
  80. } else {
  81. this.dialogTitle = '新增排队免单'
  82. }
  83. this.freeQueuingModalVisible = true
  84. this.$nextTick(() => {
  85. this.$refs.freeQueuingModalRef.clearValidate()
  86. })
  87. },
  88. // 搜索商家
  89. async handleSerachShop(query) {
  90. if (query !== '') {
  91. this.searchShopLoading = true
  92. const res = await businessListGetAll({
  93. page: 1,
  94. pageSize: 50,
  95. shopName: query, // 店铺名称
  96. shopCode: '', // 店铺编码
  97. chargePersonName: '', // 店铺负责人
  98. contractState: '', // 合同状态 1-有效 0-无效
  99. shopType: 2,
  100. keyword: '' // 手机号搜索
  101. })
  102. this.shopList = res.data.list
  103. this.searchShopLoading = false
  104. } else {
  105. this.shopList = []
  106. }
  107. },
  108. async onConfirm() {
  109. try {
  110. this.isLoading = true
  111. await this.$refs.freeQueuingModalRef.validate()
  112. const api = this.form.id ? updateFreeQueuingApi : createFreeQueuingApi
  113. const data = JSON.parse(JSON.stringify(this.form))
  114. data.shopExemptionRatio = (data.shopExemptionRatio * 1).toFixed(2)
  115. data.shopIds = data.shopIds.join(',')
  116. await api(data)
  117. this.$message.success(data.id ? '编辑成功' : '发起排队免单成功')
  118. this.$emit('refresh')
  119. this.close()
  120. } finally {
  121. this.isLoading = false
  122. }
  123. },
  124. handleBeforeClose(done) {
  125. this.$refs.freeQueuingModalRef.resetFields()
  126. done()
  127. },
  128. close() {
  129. this.reset()
  130. this.freeQueuingModalVisible = false
  131. },
  132. reset() {
  133. this.form = {
  134. id: undefined,
  135. activitiesName: '', // 活动名称
  136. shopIds: [],
  137. isPlatformInit: 1, // 是否为平台发起 0:商家
  138. shopExemptionRatio: ""
  139. }
  140. }
  141. }
  142. }
  143. </script>
  144. <style lang="scss" scoped></style>