orderDetails.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <!--
  2. * @Description: 详情弹框
  3. * @Author: Sugar.
  4. * @Date: 2023-11-24 13:55:00
  5. * @LastEditors: Sugar.
  6. * @LastEditTime: 2023-11-24 13:55:00
  7. * @FilePath: \cattle_webui\src\views\team\applicationMr\orderDetails.vue
  8. * @Copyright: Copyright (c) 2016~2023 by Sugar., All Rights Reserved.
  9. -->
  10. <template>
  11. <el-dialog
  12. title="订单详情"
  13. :visible.sync="open"
  14. width="800px"
  15. append-to-body
  16. :close-on-click-modal="false"
  17. @close="cancel"
  18. >
  19. <div class="dialog" v-if="form">
  20. <!-- 基础信息 -->
  21. <div class="title-class" style="margin-top: 0">基础信息</div>
  22. <el-row>
  23. <el-col :span="12">
  24. <div class="grid-content bg-purple item-class">团队名称: <span>{{ form.teamName || ''}}</span></div>
  25. </el-col>
  26. <el-col :span="12">
  27. <div class="grid-content bg-purple item-class">团队类型: <span><dict-tag style="display: inline-block" :options="dict.type.team_type" :value="form.teamType"/></span></div>
  28. </el-col>
  29. <el-col :span="12">
  30. <div class="grid-content bg-purple item-class">预约场馆: <span>{{ form.theatreName || '' }}</span></div>
  31. </el-col>
  32. <el-col :span="12">
  33. <div class="grid-content bg-purple item-class">预约演出厅: <span>{{ form.auditoriumName || '' }}</span></div>
  34. </el-col>
  35. <el-col :span="12">
  36. <div class="grid-content bg-purple item-class">预约剧目: <span>{{ form.performName || '' }}</span></div>
  37. </el-col>
  38. <el-col :span="12">
  39. <div class="grid-content bg-purple item-class">票务名称: <span>{{ form.goodsName || '' }}</span></div>
  40. </el-col>
  41. <el-col :span="12">
  42. <div class="grid-content bg-purple item-class">座位类型: <span>{{ form.seatTypeName || '' }}</span></div>
  43. </el-col>
  44. <el-col :span="12">
  45. <div class="grid-content bg-purple item-class">团购单价: <span v-if="form.price">¥{{ form.price || '' }}/人</span></div>
  46. </el-col>
  47. <el-col :span="12">
  48. <div class="grid-content bg-purple item-class">预约时间: <span>{{ form.performDate || '' }} {{ form.performTimeStart || '' }}--{{ form.performTimeEnd || '' }}</span></div>
  49. </el-col>
  50. <el-col :span="12">
  51. <div class="grid-content bg-purple item-class">报名时间: <span>{{ form.createTime || '' }}</span></div>
  52. </el-col>
  53. <el-col :span="12">
  54. <div class="grid-content bg-purple item-class">负责人: <span>{{ form.teamContact || '' }}</span></div>
  55. </el-col>
  56. <el-col :span="12">
  57. <div class="grid-content bg-purple item-class">联系电话: <span>{{ form.teamMobile || '' }}</span></div>
  58. </el-col>
  59. <!-- <el-col :span="12">-->
  60. <!-- <div class="grid-content bg-purple item-class">支付总额: <span>¥{{ form.priceTotal || '' }}</span></div>-->
  61. <!-- </el-col>-->
  62. <!-- <el-col :span="12">-->
  63. <!-- <div class="grid-content bg-purple item-class">团购人数: <span>{{ form.viewerNum || '' }}</span></div>-->
  64. <!-- </el-col>-->
  65. <!-- <el-col :span="12">-->
  66. <!-- <div class="grid-content bg-purple item-class">支付时间: <span>{{ form.payTime || '' }}</span></div>-->
  67. <!-- </el-col>-->
  68. <!-- <el-col :span="12">-->
  69. <!-- <div class="grid-content bg-purple item-class">支付方式: <span>{{ payList[form.payStatus] || '' }}</span></div>-->
  70. <!-- </el-col>-->
  71. <!-- <el-col :span="12">-->
  72. <!-- <div class="grid-content bg-purple item-class">订单状态: <span>{{ statusList[form.status] || '' }}</span></div>-->
  73. <!-- </el-col>-->
  74. </el-row>
  75. <!-- 观影人员信息 -->
  76. <div class="title-class">观影人员信息</div>
  77. <el-row>
  78. <el-col :span="24">
  79. <el-table ref="tables" :data="form.viewersOrderList" border>
  80. <el-table-column label="序号" align="center" type="index" width="60"></el-table-column>
  81. <el-table-column label="姓名" align="center" prop="name" />
  82. <el-table-column label="身份证号码" align="center" prop="cardId" />
  83. <el-table-column label="核销状态" align="center">
  84. <template slot-scope="scope">
  85. <el-tag v-if="scope.row.qrcodeStatus == 0">未使用</el-tag>
  86. <el-tag v-if="scope.row.qrcodeStatus == 1" type="success">已使用</el-tag>
  87. <el-tag v-if="scope.row.qrcodeStatus == 2" type="info">过期</el-tag>
  88. </template>
  89. </el-table-column>
  90. <el-table-column label="核销时间" align="center" prop="useTime" />
  91. <el-table-column label="座位信息" align="center" prop="seatName" />
  92. </el-table>
  93. </el-col>
  94. </el-row>
  95. </div>
  96. <span slot="footer" class="dialog-footer">
  97. <el-button type="primary" @click="cancel">确定</el-button>
  98. </span>
  99. </el-dialog>
  100. </template>
  101. <script>
  102. import { getOrderDetail } from '@/api/team/applicationMr'
  103. export default {
  104. name: "orderDetails",
  105. props: {
  106. dict: {
  107. type: Object,
  108. default: () => [],
  109. },
  110. },
  111. data() {
  112. return {
  113. title: "编辑",
  114. model: "EDIT",
  115. open: false,
  116. loading: false,
  117. form: {
  118. id: undefined,
  119. },
  120. performerVisible: false,
  121. performerList: [],
  122. refund: false,
  123. statusList: {
  124. 0: '待支付',
  125. 2: '超时取消',
  126. 3: '支付完成,待使用',
  127. 4: '退款中',
  128. 5: '己退款',
  129. 6: '退款失败',
  130. 7: '己使用',
  131. 8: '己超期',
  132. 9: '关闭',
  133. },
  134. payList: {
  135. 0: '未支付',
  136. 1: '已支付',
  137. 2: '支付中',
  138. 3: '支付失败',
  139. 4: '支付退款',
  140. },
  141. sourceList: {
  142. 1: '小程序',
  143. 2: '美团',
  144. 3: '携程',
  145. 4: '公众号',
  146. 5: '支付宝',
  147. },
  148. dataList: []
  149. };
  150. },
  151. methods: {
  152. /**
  153. * 打开弹框
  154. * @date 2023-11-22
  155. * @param {any} obj
  156. * @returns {any}
  157. */
  158. openDialog(title, obj, type) {
  159. this.open = true;
  160. this.getSelectByIdApi(obj);
  161. },
  162. /** 获取详情 */
  163. getSelectByIdApi(row) {
  164. const id = row.id
  165. getOrderDetail(id).then(response => {
  166. this.form = response.data;
  167. });
  168. },
  169. /**
  170. * 关闭弹框
  171. * @date 2023-11-22
  172. * @returns {any}
  173. */
  174. cancel() {
  175. this.open = false;
  176. },
  177. },
  178. };
  179. </script>
  180. <style lang="scss" scoped>
  181. .dialog {
  182. padding: 0 30px;
  183. max-height: 65vh;
  184. overflow-y: auto;
  185. }
  186. .dialog {
  187. padding: 0 30px;
  188. .upload-btn {
  189. width: 100px;
  190. height: 100px;
  191. background-color: #fbfdff;
  192. border: dashed 1px #c0ccda;
  193. border-radius: 5px;
  194. i {
  195. font-size: 30px;
  196. margin-top: 20px;
  197. }
  198. &-text {
  199. margin-top: -10px;
  200. }
  201. }
  202. .avatar {
  203. cursor: pointer;
  204. }
  205. .title-class{
  206. font-size: 16px;
  207. font-weight: bold;
  208. color: black;
  209. margin-bottom: 20px;
  210. margin-top: 20px;
  211. }
  212. .item-class{
  213. margin-bottom: 20px;
  214. }
  215. }
  216. </style>