Examine.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <el-dialog title="商家代金券提现审核" :visible.sync="examineVisible" width="30%" :close-on-click-modal="false">
  3. <el-form ref="examineFormRef" :model="form" label-width="auto" :rules="rules">
  4. <el-form-item label="审核状态" prop="auditStatus">
  5. <el-radio-group v-model="form.auditStatus">
  6. <el-radio :label="2">通过</el-radio>
  7. <el-radio :label="3">不通过</el-radio>
  8. </el-radio-group>
  9. </el-form-item>
  10. <el-form-item v-if="form.auditStatus === 2" label="提现比例, 范围:0 ~ 40" prop="ratio" :rules="[{ validator: validateRatio, trigger: 'blur' }]">
  11. <el-input placeholder="请输入提现比例" v-model="form.ratio">
  12. <template slot="append">%</template>
  13. </el-input>
  14. </el-form-item>
  15. </el-form>
  16. <span slot="footer" class="dialog-footer">
  17. <el-button size="mini" @click="examineVisible = false">取 消</el-button>
  18. <el-button size="mini" type="primary" @click="handleSubmit" :loading="isLoading">确 定</el-button>
  19. </span>
  20. </el-dialog>
  21. </template>
  22. <script>
  23. // api docs: https://www.showdoc.com.cn/2068420669770919/11538603024917661
  24. import { examineWithdrawalApplication } from '@/api/business'
  25. export default {
  26. data() {
  27. return {
  28. examineVisible: false,
  29. form: {
  30. id: '',
  31. auditStatus: 2, // 1=已申请、2=审核通过、3=审核不通过
  32. ratio: '' // 提现比例,最高不能超过0.4, [0, 40]
  33. },
  34. rules: {
  35. auditStatus: [{ required: true, message: '请选择审核状态', type: 'number' }]
  36. },
  37. isLoading: false
  38. }
  39. },
  40. watch: {
  41. examineVisible(val) {
  42. if (!val) {
  43. this.reset()
  44. }
  45. }
  46. },
  47. methods: {
  48. open(row) {
  49. if (!row.id) {
  50. return this.$message.error('数据错误')
  51. }
  52. this.form.id = row.id
  53. this.examineVisible = true
  54. },
  55. validateRatio(rule, value, callback) {
  56. const number = Number(value)
  57. if (isNaN(number)) {
  58. callback(new Error('提现比例必须是数字'))
  59. } else if (!Number.isInteger(number)) {
  60. callback(new Error('必须是整数'))
  61. } else if (number <= 0 || number > 40) {
  62. callback(new Error('提现比例必须大于0且小于等于40'))
  63. } else {
  64. callback()
  65. }
  66. },
  67. async handleSubmit() {
  68. this.isLoading = true
  69. try {
  70. await this.$refs.examineFormRef.validate()
  71. const data = JSON.parse(JSON.stringify(this.form))
  72. data.ratio = (data.ratio / 100).toFixed(2)
  73. const res = await examineWithdrawalApplication(data)
  74. if (res.code == '200') {
  75. this.$message.success('审核成功')
  76. this.$emit('refresh')
  77. this.examineVisible = false
  78. }
  79. } finally {
  80. this.isLoading = false
  81. }
  82. },
  83. reset() {
  84. this.$refs.examineFormRef.resetFields()
  85. this.form.auditStatus = 2
  86. this.form.ratio = ''
  87. }
  88. }
  89. }
  90. </script>
  91. <style lang="scss" scoped></style>