index.vue 9.5 KB

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