index.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. <template>
  2. <div class="newBagDetails">
  3. <div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" 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. tableDatas5Id: '',
  86. loading: false
  87. }
  88. },
  89. created () {
  90. const { query } = this.$route
  91. const { auth_id } = this.$route.meta
  92. const { arrs } = getAuthData(auth_id)
  93. const table = arrs.filter(item => item.auth_type == 4 || item.auth_type == 5)
  94. if (table && table.length) {
  95. this.tableDatas = table
  96. const tableDatas5 = table.filter(item => item.auth_type == 5)
  97. if (tableDatas5 && tableDatas5.length) {
  98. const { auth_id } = tableDatas5[0]
  99. this.tableDatas5Id = auth_id
  100. this.getColumnData(auth_id)
  101. }
  102. }
  103. this.query = query
  104. },
  105. methods: {
  106. //获取表头数据
  107. async getColumnData (auth_id) {
  108. try {
  109. const { code, returnData } = await this.getQueryList(SERVICE_ID.sysUserAuthId, [{
  110. user_id: getToken('userid'),
  111. auth_id
  112. }]);
  113. if (code == 0) {
  114. if (returnData && returnData.length) {
  115. const nodeDatas = returnData.filter(item => item.needShow)
  116. const newNodeDatas = nodeDatas.sort((a, b) => b.orderNumber - a.orderNumber)
  117. this.infoArrs = newNodeDatas.slice(0, 6).sort((a, b) => a.orderNumber - b.orderNumber)
  118. this.msgs1 = newNodeDatas.slice(6)
  119. this.getLuggageInfo(auth_id)
  120. }
  121. } else {
  122. this.$message.error("获取表头数据失败");
  123. }
  124. } catch (error) {
  125. console.log(error)
  126. }
  127. },
  128. //获取行李信息
  129. async getLuggageInfo (auth_id) {
  130. try {
  131. this.loading = true
  132. const { code, returnData } = await this.getQueryListAuth(SERVICE_ID.bagTableId, this.query, 1, 20, auth_id)
  133. if (code == 0 && returnData && returnData.length) {
  134. const datasObj = [...returnData][0]
  135. this.passengerName = datasObj['passengerName']
  136. this.PNRNO = datasObj['PNRNO']
  137. for (const key in datasObj) {
  138. this.infoArrs.map(item => {
  139. if (item.columnName == key) {
  140. item.value = datasObj[key]
  141. }
  142. })
  143. this.msgs1.map(item => {
  144. if (item.columnName == key) {
  145. item.value = datasObj[key]
  146. }
  147. })
  148. }
  149. this.getLuggageNums()
  150. this.loading = false
  151. } else {
  152. this.loading = false
  153. }
  154. } catch (error) {
  155. this.loading = false
  156. console.log(error)
  157. }
  158. },
  159. //获取行李号
  160. async getLuggageNums () {
  161. try {
  162. const { carrierFlights, carrierFlightsDate } = this.query
  163. const { code, returnData } = await this.getQueryList(SERVICE_ID.bagTableId, {
  164. PNRNO: this.PNRNO,
  165. carrierFlightsDate,
  166. carrierFlights
  167. })
  168. if (code == 0 && returnData && returnData.length) {
  169. this.detailsArr = [...returnData]
  170. }
  171. } catch (error) {
  172. console.log(error)
  173. }
  174. },
  175. tagClick (item, index) {
  176. const { luggageNum, carrierFlights, carrierFlightsDate } = item
  177. this.tagObj = {
  178. luggageNum,
  179. carrierFlights,
  180. carrierFlightsDate
  181. }
  182. this.query = this.tagObj
  183. this.activeIndex = index
  184. this.getLuggageInfo(this.tableDatas5Id)
  185. },
  186. tabClick (item, index) {
  187. this.tabIndex = index
  188. this.componentName = item.key
  189. }
  190. }
  191. }
  192. </script>
  193. <style lang="scss" scoped>
  194. .newBagDetails {
  195. height: calc(100vh - 80px);
  196. padding: 12px;
  197. &-info {
  198. height: 200px;
  199. background: #051436;
  200. color: #fff;
  201. font-size: 14px;
  202. &-look {
  203. padding: 0 32px;
  204. height: 64px;
  205. line-height: 64px;
  206. background: #041741;
  207. &-name {
  208. font-size: 18px;
  209. font-family: Microsoft YaHei;
  210. font-weight: bold;
  211. color: #ffffff;
  212. margin-right: 7px;
  213. max-width: 101px;
  214. white-space: nowrap;
  215. text-overflow: ellipsis;
  216. overflow: hidden;
  217. display: inline-block;
  218. }
  219. }
  220. &-details {
  221. position: relative;
  222. padding: 0 32px;
  223. height: 136px;
  224. &-tags {
  225. height: 32px;
  226. line-height: 32px;
  227. .tags-view-wrapper {
  228. width: calc(100%);
  229. ::v-deep .el-scrollbar__wrap {
  230. // margin-top: 8.5px;
  231. }
  232. .tags-view-item {
  233. display: inline-block;
  234. position: relative;
  235. cursor: pointer;
  236. height: 32px;
  237. line-height: 32px;
  238. // border: 1px solid #767eba;
  239. // border-radius: 4px;
  240. font-size: 14px;
  241. font-family: Microsoft YaHei;
  242. font-weight: 400;
  243. color: #aaacb2;
  244. margin-right: 100px;
  245. &:last-child {
  246. margin-right: 0;
  247. }
  248. &.active {
  249. color: #fff;
  250. position: relative;
  251. &::after {
  252. position: absolute;
  253. content: "";
  254. width: 100%;
  255. left: 0;
  256. bottom: 0;
  257. height: 3px;
  258. background: #2d67e3;
  259. }
  260. }
  261. }
  262. }
  263. }
  264. &-msgs {
  265. padding: 25px 0;
  266. height: 104px;
  267. ::v-deep .el-scrollbar__wrap {
  268. overflow-x: hidden;
  269. }
  270. ::v-deep .el-scrollbar__bar.is-horizontal {
  271. height: 0 !important;
  272. }
  273. &-l1 {
  274. .msgs-list {
  275. margin-bottom: 22px;
  276. }
  277. }
  278. }
  279. }
  280. }
  281. &-contents {
  282. margin-top: 8px;
  283. background-color: #fff;
  284. height: calc(100% - 208px);
  285. &-tabs {
  286. line-height: 65px;
  287. padding: 0 32px;
  288. border-bottom: 1px solid #dfe3ea;
  289. &-title {
  290. font-size: 18px;
  291. font-family: Microsoft YaHei;
  292. font-weight: bold;
  293. color: #303133;
  294. margin-right: 92px;
  295. }
  296. &-btns {
  297. font-size: 14px;
  298. font-family: Microsoft YaHei;
  299. font-weight: 400;
  300. color: #afb4bf;
  301. &-bt {
  302. margin-right: 55px;
  303. cursor: pointer;
  304. position: relative;
  305. &:last-child {
  306. margin-right: 0;
  307. }
  308. &.is-active {
  309. color: #303133;
  310. &::after {
  311. position: absolute;
  312. content: "";
  313. width: 100%;
  314. left: 0;
  315. bottom: 0;
  316. height: 3px;
  317. background: #2d67e3;
  318. }
  319. }
  320. }
  321. }
  322. }
  323. &-page {
  324. height: calc(100% - 66px);
  325. }
  326. }
  327. }
  328. </style>