expressExpress.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <div>
  3. <div class="content">
  4. <div class="jjlist">
  5. <div class="listinfo">
  6. <div class="list_top">
  7. <div class="list_top_left">
  8. <img src="../assets/images/ad_icon1.png" alt="">
  9. <div>
  10. <p>{{ ObjectVlaue.dispatchNo }}</p>
  11. <p>{{ ObjectVlaue.recipient }} {{ ObjectVlaue.phone }}</p>
  12. <p>{{ ObjectVlaue.recordDate }}</p>
  13. </div>
  14. </div>
  15. </div>
  16. </div>
  17. </div>
  18. <div class="info">
  19. <p>部门:{{ ObjectVlaue.departmentId }}</p>
  20. <p>收件人:{{ ObjectVlaue.recipient }}</p>
  21. <p>收件人手机:{{ ObjectVlaue.phone }}</p>
  22. <p>创建时间:{{ ObjectVlaue.recordDate }}</p>
  23. <p>快件类型:{{ ObjectVlaue.expressType === 1 ? '文件' : '物品' }}</p>
  24. <p>座位:{{ ObjectVlaue.sendSeat }}</p>
  25. <p>备注:{{ ObjectVlaue.remark }}</p>
  26. </div>
  27. </div>
  28. </div>
  29. </template>
  30. <script>
  31. import { Toast, Dialog } from 'vant'
  32. import { getExpressById } from '../api/index'
  33. export default {
  34. data() {
  35. return {
  36. titlename: "查快递",
  37. item: {},
  38. mailDetail: {},//传过来的数据
  39. id: '',
  40. ObjectVlaue: {}
  41. }
  42. },
  43. created: function () {
  44. this.mailDetail = this.$route.query.item
  45. this.id = this.mailDetail.id
  46. console.log(this.mailDetail, ' this.mailDetail')
  47. },
  48. mounted() {
  49. this.getFindWithoutInfoById()
  50. },
  51. methods: {
  52. async getFindWithoutInfoById() {
  53. const res = await getExpressById({ id: this.id })
  54. this.ObjectVlaue = res.expressInfoById
  55. console.log(res)
  56. },
  57. }
  58. }
  59. </script>
  60. <style scoped lang="less">
  61. .content {
  62. padding: .2rem .33rem;
  63. font-size: .3rem;
  64. >p {
  65. font-size: .3rem;
  66. text-align: center;
  67. margin-bottom: .2rem;
  68. }
  69. .info {
  70. padding: .4rem;
  71. background: white;
  72. line-height: 200%;
  73. color: #666666;
  74. .pjinfo {
  75. margin-top: .1rem;
  76. border-top: .01rem solid #f0efef;
  77. padding-top: .1rem;
  78. }
  79. }
  80. .jjlist {
  81. font-size: .3rem;
  82. color: #999999;
  83. .listinfo {
  84. background: white;
  85. padding: .33rem .33rem .2rem;
  86. border-radius: .05rem;
  87. margin-bottom: .2rem;
  88. position: relative;
  89. .list_top {
  90. display: flex;
  91. justify-content: space-between;
  92. .list_top_left {
  93. img {
  94. display: inline-block;
  95. width: .9rem;
  96. height: .9rem;
  97. position: relative;
  98. top: -.1rem;
  99. }
  100. div {
  101. width: 4rem;
  102. margin-left: .2rem;
  103. display: inline-block;
  104. line-height: 150%;
  105. p:nth-of-type(1) {
  106. font-size: .3rem;
  107. font-weight: bold;
  108. color: #333;
  109. }
  110. p:nth-of-type(3) {
  111. font-size: .2rem;
  112. }
  113. }
  114. }
  115. >p {
  116. font-size: .24rem;
  117. color: #f5693d;
  118. font-weight: bold;
  119. }
  120. }
  121. .fast {
  122. //background: url(../assets/images/status.png) no-repeat center;
  123. background-color: #00c4b8;
  124. background-size: 100% 100%;
  125. color: white;
  126. position: absolute;
  127. bottom: 0px;
  128. right: 0px;
  129. width: 1.1rem;
  130. height: .5rem;
  131. text-align: center;
  132. line-height: .5rem;
  133. font-size: .2rem;
  134. }
  135. }
  136. }
  137. }
  138. /deep/ .van-nav-bar__content {
  139. .van-nav-bar__title {
  140. font-size: 16px;
  141. }
  142. }
  143. /deep/.van-icon-arrow-left::before {
  144. color: #333;
  145. font-size: 16px;
  146. }
  147. /deep/.van-nav-bar__text {
  148. color: #333 !important;
  149. font-size: 16px;
  150. }
  151. </style>