VirtualSales.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <template>
  2. <el-dialog
  3. :visible.sync="visible"
  4. v-bind="modalOptions"
  5. append-to-body
  6. >
  7. <el-form
  8. ref="formData"
  9. :model="formData"
  10. :rules="formRules"
  11. size="mini"
  12. label-suffix=":"
  13. label-width="150px"
  14. >
  15. <el-form-item label="商品ID" prop="productId">
  16. <el-input
  17. v-model="formData.productId" maxlength="20" placeholder="商品ID" disabled
  18. />
  19. </el-form-item>
  20. <el-form-item label="虚拟销量" prop="goodsNum">
  21. <el-input-number v-model="formData.fictitiousNumber" :precision="0" :min="1" :max="999999999" />
  22. </el-form-item>
  23. </el-form>
  24. <template #footer>
  25. <span class="dialog-footer">
  26. <el-button size="mini" @click="handleClose">取 消</el-button>
  27. <el-button type="primary" size="mini" @click="handleSubmit">确 定</el-button>
  28. </span>
  29. </template>
  30. </el-dialog>
  31. </template>
  32. <script>
  33. import { setFictitious } from '@/api/commodity'
  34. export default {
  35. name: 'RegistrationReview',
  36. components: {
  37. },
  38. data() {
  39. return {
  40. modalOptions: {
  41. closeOnClickModal: false,
  42. width: '620px',
  43. title: ''
  44. },
  45. visible: false,
  46. formData: {
  47. productId: '',
  48. fictitiousNumber: 0
  49. },
  50. formRules: {
  51. productId: [
  52. { required: true, message: '缺少商品ID' }
  53. ],
  54. fictitiousNumber: [
  55. { type: 'number', required: true, message: '请输入虚拟销量' }
  56. ]
  57. }
  58. }
  59. },
  60. methods: {
  61. handleClose() {
  62. this.visible = false
  63. },
  64. initList() {
  65. },
  66. handleOpen(params = {}) {
  67. this.modalOptions.title = '自定义虚拟销量'
  68. this.$refs.formData && this.$refs.formData.resetFields()
  69. this.formData.productId = params.productId
  70. this.formData.fictitiousNumber = params.fictitiousNumber || 0
  71. // this.formData = Object.assign(this.$options.data().formData, params)
  72. this.visible = true
  73. this.initList()
  74. },
  75. handleSubmit() {
  76. this.$refs.formData.validate(async (valid) => {
  77. if (valid) {
  78. const loading = this.$loading({ text: '加载中' })
  79. try {
  80. const { ...otps } = this.formData
  81. const params = {
  82. ...otps
  83. }
  84. await setFictitious(params)
  85. loading.close()
  86. this.$message({ message: `虚拟销量已设置:${this.formData.fictitiousNumber}!`, type: 'success' })
  87. this.$emit('success')
  88. this.visible = false
  89. } catch (e) {
  90. loading.close()
  91. } finally {
  92. loading.close()
  93. }
  94. } else {
  95. this.$message({ message: '请输入相关信息', type: 'warning' })
  96. return false
  97. }
  98. })
  99. }
  100. }
  101. }
  102. </script>