index.vue 9.8 KB

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