index.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <template>
  2. <div class="newBagDetails">
  3. <div class="newBagDetails-info">
  4. <div class="newBagDetails-info-look">
  5. <el-row :gutter="20">
  6. <el-col :span="4">
  7. <div class="flex-wrap">
  8. <el-tooltip class="item" effect="dark" :content="passengerName" placement="top">
  9. <span class="newBagDetails-info-look-name">{{ passengerName }}</span>
  10. </el-tooltip>
  11. <el-button type="text">查看</el-button>
  12. </div>
  13. </el-col>
  14. <el-col :span="3" v-for="(item,index) in infoArrs" :key="index">{{ item.columnLabel }}:{{ item.value }}</el-col>
  15. </el-row>
  16. </div>
  17. <div class="newBagDetails-info-details">
  18. <div class="newBagDetails-info-details-tags">
  19. <scroll-pane ref="scrollPane" class="tags-view-wrapper">
  20. <div v-for="(item,index) in detailsArr" class="tags-view-item" @click="tagClick(item,index)" :class="activeIndex == index ? 'active' : ''" :key="index">{{ item.luggageNum }}</div>
  21. </scroll-pane>
  22. </div>
  23. <div class="newBagDetails-info-details-msgs">
  24. <el-scrollbar style="height: 100%;">
  25. <el-row class="newBagDetails-info-details-msgs-l1" :gutter="20">
  26. <el-col :span="3" class="msgs-list" v-for="(item,index) in msgs1" :key="index">{{ item.columnLabel }}:{{ item.value }}</el-col>
  27. </el-row>
  28. </el-scrollbar>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="newBagDetails-contents">
  33. <div class="newBagDetails-contents-tabs flex-wrap">
  34. <div class="newBagDetails-contents-tabs-title">行李跟踪信息</div>
  35. <div class="newBagDetails-contents-tabs-btns flex-wrap">
  36. <div v-for="(item,index) in tabMenu" @click="tabClick(item,index)" :key="index" :class="index == tabIndex ? 'is-active' : ''" class="newBagDetails-contents-tabs-btns-bt">{{ item.name }}</div>
  37. </div>
  38. </div>
  39. <div class="newBagDetails-contents-page">
  40. <component ref="dataChild" :query="query" :tableDatas="tableDatas" :tagObj="tagObj" :is="componentName"></component>
  41. </div>
  42. </div>
  43. </div>
  44. </template>
  45. <script>
  46. import ScrollPane from "@/layout/components/TagsView/ScrollPane.vue"
  47. import baggageView from './components/baggageView.vue'
  48. import baggageList from './components/baggageList.vue'
  49. import baggageMessage from './components/baggageMessage.vue'
  50. import pf from '@/layout/mixin/publicFunc'
  51. import { getAuthData } from '@/utils/validate'
  52. import { getToken } from '@/utils/auth'
  53. export default {
  54. name: 'NewBagDetails',
  55. mixins: [pf],
  56. components: { ScrollPane, baggageView, baggageList, baggageMessage },
  57. data () {
  58. return {
  59. infoArrs: [],
  60. passenger_name: '',
  61. detailsArr: [],
  62. activeIndex: null,
  63. msgs1: [],
  64. tabMenu: [
  65. {
  66. key: 'baggageView',
  67. name: '行李流程图'
  68. },
  69. {
  70. key: 'baggageList',
  71. name: '行李流程列表信息'
  72. },
  73. {
  74. key: 'baggageMessage',
  75. name: '行李报文'
  76. },
  77. ],
  78. tabIndex: 0,
  79. componentName: 'baggageView',
  80. query: '',
  81. passengerName: '',
  82. PNRNO: '',
  83. tagObj: {},
  84. tableDatas: []
  85. }
  86. },
  87. created () {
  88. const { query } = this.$route
  89. const { auth_id } = this.$route.meta
  90. const { arrs } = getAuthData(auth_id)
  91. const table = arrs.filter(item => item.auth_type == 4 || item.auth_type == 5)
  92. if (table && table.length) {
  93. this.tableDatas = table
  94. const tableDatas5 = table.filter(item => item.auth_type == 5)
  95. if (tableDatas5 && tableDatas5.length) {
  96. const { auth_id } = tableDatas5[0]
  97. this.getColumnData(auth_id)
  98. }
  99. }
  100. this.query = query
  101. },
  102. methods: {
  103. //获取表头数据
  104. async getColumnData (auth_id) {
  105. try {
  106. const { code, returnData } = await this.getQueryList(SERVICE_ID.sysUserAuthId, [{
  107. user_id: getToken('userid'),
  108. auth_id
  109. }]);
  110. if (code == 0) {
  111. if (returnData && returnData.length) {
  112. const nodeDatas = returnData.filter(item => item.needShow)
  113. const newNodeDatas = nodeDatas.sort((a, b) => a.orderNumber - b.orderNumber)
  114. this.infoArrs = newNodeDatas.slice(0, 6)
  115. this.msgs1 = newNodeDatas.slice(6)
  116. this.getLuggageInfo(auth_id)
  117. }
  118. } else {
  119. this.$message.error("获取表头数据失败");
  120. }
  121. } catch (error) {
  122. console.log(error)
  123. }
  124. },
  125. //获取行李信息
  126. async getLuggageInfo (auth_id) {
  127. try {
  128. const { code, returnData } = await this.getQueryListAuth(SERVICE_ID.bagTableId, this.query, 1, 20, auth_id)
  129. if (code == 0 && returnData && returnData.length) {
  130. const datasObj = [...returnData][0]
  131. this.passengerName = datasObj['passengerName']
  132. this.PNRNO = datasObj['PNRNO']
  133. for (const key in datasObj) {
  134. this.infoArrs.map(item => {
  135. if (item.columnName == key) {
  136. item.value = datasObj[key]
  137. }
  138. })
  139. this.msgs1.map(item => {
  140. if (item.columnName == key) {
  141. item.value = datasObj[key]
  142. }
  143. })
  144. }
  145. this.getLuggageNums()
  146. }
  147. } catch (error) {
  148. console.log(error)
  149. }
  150. },
  151. //获取行李号
  152. async getLuggageNums () {
  153. try {
  154. const { carrierFlights, carrierFlightsDate } = this.query
  155. const { code, returnData } = await this.getQueryList(SERVICE_ID.bagTableId, {
  156. PNRNO: this.PNRNO,
  157. carrierFlightsDate,
  158. carrierFlights
  159. })
  160. if (code == 0 && returnData && returnData.length) {
  161. this.detailsArr = [...returnData]
  162. }
  163. } catch (error) {
  164. console.log(error)
  165. }
  166. },
  167. tagClick (item, index) {
  168. const { luggageNum, carrierFlights, carrierFlightsDate } = item
  169. this.tagObj = {
  170. luggageNum,
  171. carrierFlights,
  172. carrierFlightsDate
  173. }
  174. this.activeIndex = index
  175. },
  176. tabClick (item, index) {
  177. this.tabIndex = index
  178. this.componentName = item.key
  179. }
  180. }
  181. }
  182. </script>
  183. <style lang="scss" scoped>
  184. .newBagDetails {
  185. height: calc(100vh - 80px);
  186. padding: 12px;
  187. &-info {
  188. height: 200px;
  189. background: #051436;
  190. color: #fff;
  191. font-size: 14px;
  192. &-look {
  193. padding: 0 32px;
  194. height: 64px;
  195. line-height: 64px;
  196. background: #041741;
  197. &-name {
  198. font-size: 18px;
  199. font-family: Microsoft YaHei;
  200. font-weight: bold;
  201. color: #ffffff;
  202. margin-right: 7px;
  203. max-width: 101px;
  204. white-space: nowrap;
  205. text-overflow: ellipsis;
  206. overflow: hidden;
  207. display: inline-block;
  208. }
  209. }
  210. &-details {
  211. position: relative;
  212. padding: 0 32px;
  213. height: 136px;
  214. &-tags {
  215. height: 32px;
  216. line-height: 32px;
  217. .tags-view-wrapper {
  218. width: calc(100%);
  219. ::v-deep .el-scrollbar__wrap {
  220. // margin-top: 8.5px;
  221. }
  222. .tags-view-item {
  223. display: inline-block;
  224. position: relative;
  225. cursor: pointer;
  226. height: 32px;
  227. line-height: 32px;
  228. // border: 1px solid #767eba;
  229. // border-radius: 4px;
  230. font-size: 14px;
  231. font-family: Microsoft YaHei;
  232. font-weight: 400;
  233. color: #aaacb2;
  234. margin-right: 100px;
  235. &:last-child {
  236. margin-right: 0;
  237. }
  238. &.active {
  239. color: #fff;
  240. position: relative;
  241. &::after {
  242. position: absolute;
  243. content: "";
  244. width: 100%;
  245. left: 0;
  246. bottom: 0;
  247. height: 3px;
  248. background: #2d67e3;
  249. }
  250. }
  251. }
  252. }
  253. }
  254. &-msgs {
  255. padding: 25px 0;
  256. height: 104px;
  257. ::v-deep .el-scrollbar__wrap {
  258. overflow-x: hidden;
  259. }
  260. ::v-deep .el-scrollbar__bar.is-horizontal {
  261. height: 0 !important;
  262. }
  263. &-l1 {
  264. .msgs-list {
  265. margin-bottom: 22px;
  266. }
  267. }
  268. }
  269. }
  270. }
  271. &-contents {
  272. margin-top: 8px;
  273. background-color: #fff;
  274. height: calc(100% - 208px);
  275. &-tabs {
  276. line-height: 65px;
  277. padding: 0 32px;
  278. border-bottom: 1px solid #dfe3ea;
  279. &-title {
  280. font-size: 18px;
  281. font-family: Microsoft YaHei;
  282. font-weight: bold;
  283. color: #303133;
  284. margin-right: 92px;
  285. }
  286. &-btns {
  287. font-size: 14px;
  288. font-family: Microsoft YaHei;
  289. font-weight: 400;
  290. color: #afb4bf;
  291. &-bt {
  292. margin-right: 55px;
  293. cursor: pointer;
  294. position: relative;
  295. &:last-child {
  296. margin-right: 0;
  297. }
  298. &.is-active {
  299. color: #303133;
  300. &::after {
  301. position: absolute;
  302. content: "";
  303. width: 100%;
  304. left: 0;
  305. bottom: 0;
  306. height: 3px;
  307. background: #2d67e3;
  308. }
  309. }
  310. }
  311. }
  312. }
  313. &-page {
  314. height: calc(100% - 66px);
  315. }
  316. }
  317. }
  318. </style>