FreeQueuingModal.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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="isPlatformInit">
  13. <el-radio-group size="mini" v-model="form.isPlatformInit">
  14. <el-radio :label="1">平台</el-radio>
  15. <el-radio :label="0">商家</el-radio>
  16. </el-radio-group>
  17. </el-form-item>
  18. </el-form>
  19. <template #footer>
  20. <span class="dialog-footer">
  21. <el-button size="mini" @click="close">取消</el-button>
  22. <el-button size="mini" type="primary" :loading="isLoading" @click="onConfirm">{{ form.id ? '确认编辑' : '确认创建排队免单' }}</el-button>
  23. </span>
  24. </template>
  25. </el-dialog>
  26. </template>
  27. <script>
  28. import { createFreeQueuingApi, updateFreeQueuingApi } from '@/api/freeQueuing'
  29. import { businessListGetAll } from '@/api/business'
  30. export default {
  31. data() {
  32. return {
  33. isLoading: false,
  34. freeQueuingModalVisible: false,
  35. dialogTitle: '新增排队免单',
  36. form: {
  37. id: undefined,
  38. activitiesName: '', // 活动名称
  39. shopIds: [],
  40. isPlatformInit: 1 // 是否为平台发起 0:商家
  41. },
  42. rules: {
  43. activitiesName: [{ required: true, message: '请输入活动名称', trigger: 'blur' }],
  44. shopIds: [{ required: true, type: 'array', message: '请选择商家', trigger: 'change' }],
  45. isPlatformInit: [{ required: true, message: '请选择是否是平台发起', trigger: 'change' }]
  46. },
  47. shopList: [],
  48. searchShopLoading: false
  49. }
  50. },
  51. methods: {
  52. show(row) {
  53. this.reset()
  54. if (row) {
  55. this.form.id = row.id
  56. this.form.isPlatformInit = Number(row.isPlatformInit)
  57. this.form.activitiesName = row.activitiesName
  58. this.form.shopIds = row.shopIds ? row.shopIds.split(',') : []
  59. this.dialogTitle = '编辑排队免单'
  60. }else{
  61. this.dialogTitle = '新增排队免单'
  62. }
  63. this.freeQueuingModalVisible = true
  64. this.$nextTick(() => {
  65. this.$refs.freeQueuingModalRef.clearValidate()
  66. })
  67. },
  68. // 搜索商家
  69. async handleSerachShop(query) {
  70. if (query !== '') {
  71. this.searchShopLoading = true
  72. const res = await businessListGetAll({
  73. page: 1,
  74. pageSize: 50,
  75. shopName: query, // 店铺名称
  76. shopCode: '', // 店铺编码
  77. chargePersonName: '', // 店铺负责人
  78. contractState: '', // 合同状态 1-有效 0-无效
  79. shopType: 2,
  80. keyword: '' // 手机号搜索
  81. })
  82. this.shopList = res.data.list
  83. this.searchShopLoading = false
  84. } else {
  85. this.shopList = []
  86. }
  87. },
  88. async onConfirm() {
  89. try {
  90. this.isLoading = true
  91. await this.$refs.freeQueuingModalRef.validate()
  92. const api = this.form.id ? updateFreeQueuingApi : createFreeQueuingApi
  93. const data = JSON.parse(JSON.stringify(this.form))
  94. data.shopIds = data.shopIds.join(',')
  95. await api(data)
  96. this.$message.success(data.id ? '编辑成功' : '发起排队免单成功')
  97. this.$emit('refresh')
  98. this.close()
  99. } finally {
  100. this.isLoading = false
  101. }
  102. },
  103. handleBeforeClose(done) {
  104. this.$refs.freeQueuingModalRef.resetFields()
  105. done()
  106. },
  107. close() {
  108. this.reset()
  109. this.freeQueuingModalVisible = false
  110. },
  111. reset() {
  112. this.form = {
  113. id: undefined,
  114. activitiesName: '', // 活动名称
  115. shopIds: [],
  116. isPlatformInit: 1 // 是否为平台发起 0:商家
  117. }
  118. }
  119. }
  120. }
  121. </script>
  122. <style lang="scss" scoped></style>