EditProportion.vue 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <el-dialog :close-on-click-modal="false" append-to-body title="修改结算比例" :visible.sync="editProportionVisible" width="30%">
  3. <el-form :rules="rules" ref="formRef" :model="form" label-width="auto">
  4. <el-form-item label="结算比例" prop="settlementRatio">
  5. <el-input v-model="form.settlementRatio" placeholder="请填写结算比例"></el-input>
  6. <div style="font-size: 12px; color: #cccc;">范围:0 - 1</div>
  7. </el-form-item>
  8. </el-form>
  9. <span slot="footer" class="dialog-footer">
  10. <el-button @click="editProportionVisible = false">取 消</el-button>
  11. <el-button type="primary" @click="handleConfirm">确 定</el-button>
  12. </span>
  13. </el-dialog>
  14. </template>
  15. <script>
  16. import { updateShopParticipationRecordApi } from '@/api/business'
  17. export default {
  18. data() {
  19. return {
  20. editProportionVisible: false,
  21. form: {
  22. shopParticipationRecordId: '',
  23. settlementRatio: ''
  24. },
  25. rules: {
  26. settlementRatio: [
  27. { required: true, message: '请填写商家结算比例', trigger: 'blur' },
  28. {
  29. validator: (_, value, cb) => {
  30. const num = value * 1
  31. if (typeof num !== 'number') {
  32. cb(new Error('结算比例是一个数字'))
  33. }
  34. if (num < 0 || num > 1) {
  35. cb(new Error('结算比例范围应该在0 - 1之间'))
  36. }
  37. cb()
  38. },
  39. trigger: 'blur'
  40. }
  41. ]
  42. },
  43. isLoading: false
  44. }
  45. },
  46. watch: {
  47. editProportionVisible: {
  48. handler(value) {
  49. !value && (this.form = { shopParticipationRecordId: '', settlementRatio: '' })
  50. }
  51. },
  52. immediate: true
  53. },
  54. methods: {
  55. handleOpen(row) {
  56. if (!row || !row.id) return this.$message.error('数据错误')
  57. this.form.shopParticipationRecordId = row.id
  58. this.form.settlementRatio = row.settlementRatio
  59. this.editProportionVisible = true
  60. },
  61. async handleConfirm() {
  62. try {
  63. this.isLoading = true
  64. await this.$refs.formRef.validate()
  65. await updateShopParticipationRecordApi(this.form)
  66. this.$message.success('修改成功')
  67. this.$emit('update', { ...this.form })
  68. this.editProportionVisible = false
  69. } finally {
  70. this.isLoading = false
  71. }
  72. }
  73. }
  74. }
  75. </script>