orderDetail.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <view class="content">
  3. <u-cell-group>
  4. <u-cell-item :arrow="false" :title-style="{width: '100%'}">
  5. <view slot="title" style="display: flex;justify-content: center;">
  6. <u-avatar :src="orderInfo.url" size="140"></u-avatar>
  7. </view>
  8. </u-cell-item>
  9. <u-cell-item title="接收人" :value="orderInfo.coachName" :arrow="false"></u-cell-item>
  10. <u-cell-item title="家长姓名" :value="orderInfo.parentsName" :arrow="false"></u-cell-item>
  11. <u-cell-item title="学员姓名" :value="orderInfo.studentName" :arrow="false"></u-cell-item>
  12. <u-cell-item title="学员性别" :value="orderInfo.sex" :arrow="false"></u-cell-item>
  13. <u-cell-item title="学员年龄" :value="orderInfo.age" :arrow="false"></u-cell-item>
  14. <u-cell-item title="学生生日" :value="orderInfo.birthday" :arrow="false"></u-cell-item>
  15. <u-cell-item title="手机号码" :value="orderInfo.phone" :arrow="false"></u-cell-item>
  16. <u-cell-item title="报名班级" :value="orderInfo.className" :arrow="false"></u-cell-item>
  17. <u-cell-item title="课时数" :value="orderInfo.courseNumber" :arrow="false"></u-cell-item>
  18. <u-cell-item title="课时单价" :value="orderInfo.coursePrice" :arrow="false"></u-cell-item>
  19. <u-cell-item title="课时总价" :value="orderInfo.sumPrice" :arrow="false"></u-cell-item>
  20. <u-cell-item title="订单号" :value="orderInfo.orderNo" :arrow="false"></u-cell-item>
  21. <u-cell-item title="赠课数量" :value="orderInfo.lessonsGiveNumber" :arrow="false"></u-cell-item>
  22. <u-cell-item title="赠品" :title-style="{width: '100%'}" :arrow="false">
  23. <text slot="label">{{orderInfo.giftId.map( site => { return site.name } ).join(',')}}</text>
  24. </u-cell-item>
  25. <u-cell-item title="销售员" :value="orderInfo.saleName" :arrow="false"></u-cell-item>
  26. <u-cell-item title="谈单人" :value="orderInfo.talkerName" :arrow="false"></u-cell-item>
  27. <u-cell-item title="支付方式" :value="orderInfo.payTypeValue" :arrow="false"></u-cell-item>
  28. <u-cell-item title="备注" :label="orderInfo.remark" :arrow="false" :title-style="{width: '100%'}"></u-cell-item>
  29. <u-cell-item title="查看合同协议" @click="checkContract()"></u-cell-item>
  30. </u-cell-group>
  31. <u-top-tips ref="uTips"></u-top-tips>
  32. </view>
  33. </template>
  34. <script>
  35. import {
  36. mapGetters
  37. } from 'vuex'
  38. const NET = require('@/utils/request')
  39. const API = require('@/config/api')
  40. export default {
  41. computed: {
  42. ...mapGetters([
  43. 'mainColor',
  44. 'customStyle',
  45. ])
  46. },
  47. data() {
  48. return {
  49. id: '',
  50. orderInfo: {
  51. url: '',
  52. coachName: '',
  53. parentsName: '',
  54. studentName: '',
  55. sex: '',
  56. age: '',
  57. birthday: '',
  58. phone: '',
  59. className: '',
  60. courseNumber: '',
  61. coursePrice: '',
  62. sumPrice: '',
  63. orderNo: '',
  64. lessonsGiveNumber: '',
  65. giftId: [],
  66. saleName: '',
  67. talkerName: '',
  68. payTypeValue: '',
  69. remark: '',
  70. contractUrl: '',
  71. },
  72. }
  73. },
  74. onLoad(options) {
  75. this.id = options.id
  76. this.initialize()
  77. },
  78. methods: {
  79. initialize() {
  80. NET.request(API.getOrderInfo, {
  81. id: this.id
  82. }, 'POST').then(res => {
  83. this.orderInfo = res.data
  84. }).catch(error => {
  85. this.$refs.uTips.show({
  86. title: error.message,
  87. type: 'warning',
  88. })
  89. })
  90. },
  91. // 显示合同
  92. checkContract() {
  93. uni.downloadFile({
  94. url: this.orderInfo.contractUrl,
  95. success: (res) => {
  96. uni.openDocument({
  97. filePath: res.tempFilePath,
  98. });
  99. }
  100. })
  101. },
  102. },
  103. }
  104. </script>
  105. <style>
  106. page {
  107. width: 100%;
  108. height: 100%;
  109. position: relative;
  110. }
  111. </style>
  112. <style lang="scss" scoped>
  113. @import "@/static/css/themes.scss";
  114. .content {
  115. width: 100%;
  116. float: left;
  117. box-sizing: border-box;
  118. .scroll-box {
  119. width: 100%;
  120. height: 100vh;
  121. }
  122. }
  123. </style>