details.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <div>
  3. <el-dialog :title="exData.id ? '编辑': '新增'"
  4. :visible.sync="dialog"
  5. width="50%"
  6. :close-on-click-modal="false"
  7. top="50px">
  8. <el-form ref="form"
  9. :model="form"
  10. :rules="formRules"
  11. label-width="160px">
  12. <el-form-item prop="order_user_name"
  13. label="预订人:">
  14. <el-col :span="16">
  15. <el-input v-model="form.order_user_name"
  16. placeholder=""
  17. disabled
  18. clearable></el-input>
  19. </el-col>
  20. </el-form-item>
  21. <el-form-item prop="order_user_phone"
  22. label="手机号:">
  23. <el-col :span="16">
  24. <el-input v-model="form.order_user_phone"
  25. placeholder=""
  26. disabled
  27. clearable></el-input>
  28. </el-col>
  29. </el-form-item>
  30. <el-form-item prop="place_name"
  31. label="预定座位类型:">
  32. <el-col :span="16">
  33. <el-input v-model="form.place_name"
  34. placeholder=""
  35. disabled
  36. clearable></el-input>
  37. </el-col>
  38. </el-form-item>
  39. <el-form-item prop="order_sign_status"
  40. :rules="formRules.required"
  41. label="签到状态:">
  42. <el-radio v-model="form.order_sign_status" label="1">已签到</el-radio>
  43. <el-radio v-model="form.order_sign_status" label="0">未签到</el-radio>
  44. </el-form-item>
  45. </el-form>
  46. <div slot="footer" class="dialog-footer text-center">
  47. <el-button @click="dialog = false">取 消</el-button>
  48. <el-button type="primary"
  49. @click="handleSubmit">保 存
  50. </el-button>
  51. </div>
  52. </el-dialog>
  53. </div>
  54. </template>
  55. <script>
  56. export default {
  57. components: {},
  58. props: {
  59. value: {
  60. type: Boolean,
  61. default: true
  62. },
  63. exData: {
  64. type: Object,
  65. default: function () {
  66. return {}
  67. }
  68. }
  69. },
  70. data () {
  71. return {
  72. dialog: !!this.value,
  73. form: {
  74. order_user_name: '',
  75. order_user_phone: '',
  76. place_name: '',
  77. order_sign_status: '0' // 签到状态(0未签到1已签到)
  78. }
  79. }
  80. },
  81. methods: {
  82. handleSubmit () {
  83. const url = '/v1/prepare/order/sign'
  84. this.$refs.form.validate(async valid => {
  85. if (valid) {
  86. const data = await this.$fetch(url, {
  87. ...this.form
  88. })
  89. if (data.code === 200) {
  90. this.$message.success('提交成功')
  91. this.$emit('success')
  92. this.dialog = false
  93. }
  94. }
  95. })
  96. }
  97. },
  98. mounted () {
  99. if (this.exData.id) {
  100. this.$set(this.form, 'id', this.exData.id)
  101. for (const key in this.exData) {
  102. if (this.form.hasOwnProperty(key)) {
  103. let value = this.exData[key]
  104. if ((Array.isArray(value) && value.length > 0) || value === 0 || value) {
  105. if (key === 'order_sign_status') {
  106. value = value.toString()
  107. }
  108. this.$set(this.form, key, value)
  109. }
  110. }
  111. }
  112. }
  113. },
  114. watch: {
  115. dialog (val) {
  116. if (!val) this.$emit('input', val)
  117. }
  118. }
  119. }
  120. </script>
  121. <style lang="scss" scoped>
  122. .top-tip {
  123. margin-top: -20px;
  124. margin-bottom: 20px;
  125. }
  126. </style>