index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  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. if (PNRNO) {
  141. this.queryObj = {
  142. luggageNum,
  143. PNRNO
  144. }
  145. } else {
  146. this.queryObj = this.query
  147. }
  148. for (const key in datasObj) {
  149. this.infoArrs.map(item => {
  150. if (item.columnName == key) {
  151. item.value = datasObj[key]
  152. }
  153. })
  154. this.msgs1.map(item => {
  155. if (item.columnName == key) {
  156. item.value = datasObj[key]
  157. }
  158. })
  159. }
  160. this.getLuggageNums()
  161. this.loading = false
  162. } else {
  163. this.loading = false
  164. }
  165. } catch (error) {
  166. this.loading = false
  167. console.log(error)
  168. }
  169. },
  170. //获取行李号
  171. async getLuggageNums () {
  172. try {
  173. const { carrierFlights, carrierFlightsDate } = this.query
  174. let parmObj = null
  175. if (this.PNRNO) {
  176. parmObj = {
  177. PNRNO: this.PNRNO,
  178. passengerName: this.passengerName,
  179. carrierFlights,
  180. carrierFlightsDate
  181. }
  182. } else {
  183. parmObj = this.query
  184. }
  185. const { code, returnData } = await this.getQueryList(SERVICE_ID.bagTableId, parmObj)
  186. if (code == 0 && returnData && returnData.length) {
  187. this.detailsArr = _.uniq([...returnData])
  188. }
  189. } catch (error) {
  190. console.log(error)
  191. }
  192. },
  193. tagClick (item, index) {
  194. const { luggageNum, carrierFlights, carrierFlightsDate, PNRNO, passengerName } = item
  195. if (PNRNO) {
  196. this.tagObj = {
  197. PNRNO,
  198. passengerName,
  199. luggageNum
  200. }
  201. } else {
  202. this.tagObj = {
  203. luggageNum,
  204. carrierFlights,
  205. carrierFlightsDate
  206. }
  207. }
  208. this.query = this.tagObj
  209. this.activeIndex = index
  210. this.getLuggageInfo(this.tableDatas5Id)
  211. },
  212. tabClick (item, index) {
  213. if (item.key == 'baggageList' || item.key == 'baggageMessage') {
  214. let parmObj = null
  215. const { carrierFlights, carrierFlightsDate, luggageNum } = this.query
  216. if (this.PNRNO) {
  217. parmObj = {
  218. PNRNO: this.PNRNO,
  219. passengerName: this.passengerName,
  220. luggageNum
  221. }
  222. } else {
  223. parmObj = {
  224. carrierFlightsDate,
  225. carrierFlights,
  226. luggageNum
  227. }
  228. }
  229. this.tagObj = parmObj
  230. }
  231. setTimeout(() => {
  232. this.tabIndex = index
  233. this.componentName = item.key
  234. }, 10);
  235. }
  236. }
  237. }
  238. </script>
  239. <style lang="scss" scoped>
  240. .newBagDetails {
  241. height: calc(100vh - 80px);
  242. padding: 12px;
  243. &-info {
  244. height: 200px;
  245. background: #051436;
  246. color: #fff;
  247. font-size: 14px;
  248. &-look {
  249. padding: 0 32px;
  250. height: 64px;
  251. line-height: 64px;
  252. background: #041741;
  253. &-name {
  254. font-size: 18px;
  255. font-family: Microsoft YaHei;
  256. font-weight: bold;
  257. color: #ffffff;
  258. margin-right: 7px;
  259. max-width: 101px;
  260. white-space: nowrap;
  261. text-overflow: ellipsis;
  262. overflow: hidden;
  263. display: inline-block;
  264. }
  265. .tags-view-wrapper {
  266. width: calc(100%);
  267. ::v-deep .el-scrollbar__wrap {
  268. // margin-top: 8.5px;
  269. }
  270. .tags-view-item {
  271. display: inline-block;
  272. position: relative;
  273. cursor: pointer;
  274. height: 32px;
  275. line-height: 32px;
  276. // border: 1px solid #767eba;
  277. // border-radius: 4px;
  278. font-size: 14px;
  279. font-family: Microsoft YaHei;
  280. font-weight: 400;
  281. color: #aaacb2;
  282. margin-right: 100px;
  283. &:last-child {
  284. margin-right: 0;
  285. }
  286. &.active {
  287. color: #fff;
  288. position: relative;
  289. &::after {
  290. position: absolute;
  291. content: "";
  292. width: 100%;
  293. left: 0;
  294. bottom: 0;
  295. height: 3px;
  296. background: #2d67e3;
  297. }
  298. }
  299. }
  300. }
  301. }
  302. &-details {
  303. position: relative;
  304. padding: 0 32px;
  305. height: 136px;
  306. &-tags {
  307. height: 32px;
  308. line-height: 32px;
  309. }
  310. &-msgs {
  311. padding: 12px 0;
  312. height: 135px;
  313. ::v-deep .el-scrollbar__wrap {
  314. overflow-x: hidden;
  315. }
  316. ::v-deep .el-scrollbar__bar.is-horizontal {
  317. height: 0 !important;
  318. }
  319. &-l1 {
  320. .msgs-list {
  321. margin-bottom: 22px;
  322. white-space: nowrap;
  323. text-overflow: ellipsis;
  324. overflow: hidden;
  325. }
  326. }
  327. }
  328. }
  329. }
  330. &-contents {
  331. margin-top: 8px;
  332. background-color: #fff;
  333. height: calc(100% - 208px);
  334. &-tabs {
  335. line-height: 65px;
  336. padding: 0 32px;
  337. border-bottom: 1px solid #dfe3ea;
  338. &-title {
  339. font-size: 18px;
  340. font-family: Microsoft YaHei;
  341. font-weight: bold;
  342. color: #303133;
  343. margin-right: 92px;
  344. }
  345. &-btns {
  346. font-size: 14px;
  347. font-family: Microsoft YaHei;
  348. font-weight: 400;
  349. color: #afb4bf;
  350. &-bt {
  351. margin-right: 55px;
  352. cursor: pointer;
  353. position: relative;
  354. &:last-child {
  355. margin-right: 0;
  356. }
  357. &.is-active {
  358. color: #303133;
  359. &::after {
  360. position: absolute;
  361. content: "";
  362. width: 100%;
  363. left: 0;
  364. bottom: 0;
  365. height: 3px;
  366. background: #2d67e3;
  367. }
  368. }
  369. }
  370. }
  371. }
  372. &-page {
  373. height: calc(100% - 66px);
  374. }
  375. }
  376. }
  377. </style>