tranManagementReceivingloadingLook.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774
  1. //反馈查看
  2. <template>
  3. <div class="container">
  4. <el-row>
  5. <el-col :span="12">
  6. <h2 class="bg-left title">查看汽运卸车信息</h2>
  7. </el-col>
  8. <el-col :span="12" class="bg-right">
  9. <el-button
  10. class="bg-bottom"
  11. type="primary"
  12. size="small"
  13. @click="returnsales()"
  14. ><img
  15. width="6"
  16. height="10"
  17. style="vertical-align: bottom; margin-right: 3px"
  18. src="../../../public/img/lujing.png"
  19. alt=""
  20. />返回</el-button
  21. >
  22. </el-col>
  23. </el-row>
  24. <ws-form
  25. class="position"
  26. ref="deptBudgetList"
  27. :rules="rules"
  28. :model="deptBudgetList"
  29. >
  30. <div class="small-title" style="font-size: 16px;">任务详情</div>
  31. <ws-info-table>
  32. <!--任务编号-->
  33. <ws-form-item label="任务编号" span="1" prop="processNo">
  34. {{ deptBudgetList.processNo }}
  35. </ws-form-item>
  36. <!--货名-->
  37. <ws-form-item label="货名" span="1" prop="goodsName">
  38. {{ deptBudgetList.goodsName }}
  39. </ws-form-item>
  40. <!--重量(吨)-->
  41. <ws-form-item label="重量(吨)" span="1" prop="weight">
  42. {{ deptBudgetList.weight }}
  43. </ws-form-item>
  44. <!--发货地址-->
  45. <ws-form-item label="发货地址" span="1" prop="sendDetailedAddress">
  46. {{ deptBudgetList.sendPrivate }}{{ deptBudgetList.sendCity
  47. }}{{ deptBudgetList.sendArea }}
  48. </ws-form-item>
  49. <!--发货人-->
  50. <ws-form-item label="发货人" span="1" prop="sender" class="readonly">
  51. {{ deptBudgetList.sender }}
  52. </ws-form-item>
  53. <!--发货人电话-->
  54. <ws-form-item
  55. label="发货人电话"
  56. span="1"
  57. prop="senderPhone"
  58. class="readonly"
  59. >
  60. {{ deptBudgetList.senderPhone }}
  61. </ws-form-item>
  62. <!--收货地址-->
  63. <ws-form-item label="收货地址" span="1" prop="receiveDetailedAddress">
  64. {{ deptBudgetList.receivePrivate }}{{ deptBudgetList.receiveCity
  65. }}{{ deptBudgetList.receiveArea }}
  66. </ws-form-item>
  67. <!--收货人-->
  68. <ws-form-item label="收货人" span="1" prop="receiver">
  69. {{ deptBudgetList.receiver }}
  70. </ws-form-item>
  71. <!--收货人电话-->
  72. <ws-form-item label="收货人电话" span="1" prop="receiverPhone">
  73. {{ deptBudgetList.receiverPhone }}
  74. </ws-form-item>
  75. <!--发货日期-->
  76. <ws-form-item label="发货日期" span="1" prop="deliveryDateStart">
  77. {{ deptBudgetList.deliveryDateStart }}
  78. </ws-form-item>
  79. <!--最晚到货日期-->
  80. <ws-form-item label="最晚到货日期" span="1" prop="deliveryDateEnd">
  81. {{ deptBudgetList.deliveryDateEnd }}
  82. </ws-form-item>
  83. <!--合同编号-->
  84. <ws-form-item label="合同编号" span="1" prop="contractNo">
  85. {{ deptBudgetList.contractNo }}
  86. </ws-form-item>
  87. <!-- 运输方式 -->
  88. <ws-form-item label="运输方式" span="1" prop="tranType">
  89. {{ deptBudgetList.tranType }}
  90. </ws-form-item>
  91. </ws-info-table>
  92. <div class="small-title" style="font-size: 16px;">卸车详情</div>
  93. <div class="liaison">
  94. <div
  95. style="width: 100%"
  96. class="flex position"
  97. v-for="(item, index) in freightspace"
  98. >
  99. <ws-info-table>
  100. <div class="catNos" v-show="item.temporaryDriverFlag == 0">司机-{{index+1}}</div>
  101. <div class="catNos catNosCor" v-show="item.temporaryDriverFlag != 0">司机-{{index+1}}(临)</div>
  102. <!--姓名-->
  103. <ws-form-item label="姓名:" span="1" prop="driver" v-show="freightspace[index].temporaryDriverFlag == 0">
  104. <span>{{ item.driver }} </span>
  105. </ws-form-item>
  106. <!--电话-->
  107. <ws-form-item label="电话" span="1" prop="driverPhone">
  108. <span>{{ item.driverPhone }} </span>
  109. </ws-form-item>
  110. <!--车牌号-->
  111. <ws-form-item label="车牌号" span="1" prop="carNo">
  112. <span>{{ item.carNo }} </span>
  113. </ws-form-item>
  114. <!--装车净重-->
  115. <ws-form-item label="净重(吨)" span="1" prop="loadNetWeight">
  116. {{ item.loadNetWeight }}
  117. </ws-form-item>
  118. <!--卸车重-->
  119. <ws-form-item label="卸车净重(吨)" span="1" prop="unloadNetWeight">
  120. {{ item.unloadNetWeight }}
  121. </ws-form-item>
  122. <!--磅单-->
  123. <ws-form-item label="磅单:" span="1" prop="loadPoundImg">
  124. <template slot-scope="scope">
  125. <img
  126. width="18"
  127. height="20"
  128. style="
  129. vertical-align: text-top;
  130. position: relative;
  131. top: -1px;
  132. "
  133. src="../../../public/img/fujian.png"
  134. @click="fujian(scope.row)"
  135. alt=""
  136. />
  137. <!-- <div v-show="item.temporaryDriverFlag == 0">
  138. {{ item.signStatus }}
  139. </div> -->
  140. </template>
  141. </ws-form-item>
  142. </ws-info-table>
  143. </div>
  144. </div>
  145. <div style="text-align: right;color: #8890B1;font-size: 16px;">
  146. 合计(吨):{{ total }}/{{ deptBudgetList.weight }}
  147. </div>
  148. </ws-form>
  149. <!-- 提交 -->
  150. <div style="text-align: right; padding: 10px" class="center">
  151. <el-button
  152. class="bg-bottom"
  153. type="primary"
  154. size="small"
  155. @click="returnsales()"
  156. >关闭</el-button
  157. >
  158. </div>
  159. <!-- <WinseaContentModal
  160. v-model="accessoryTFs"
  161. :title="$t('system.noticeCircular.information')"
  162. @on-cancel="handleClose"
  163. >
  164. <p>上传附件</p>
  165. <ws-upload
  166. ref="upload"
  167. table-name="maintain_work_order"
  168. oss-key="mainPlan"
  169. :comp-id="compId"
  170. :file-list="fileList"
  171. :appendix-ids="appendixIdsAdd"
  172. :vesselId="deptBudgetList.loadPoundImg"
  173. :size-limit="size"
  174. @uploadSuccess="uploadSuccess"
  175. accept=".jpg, .jpeg, .png, .pdf, .doc, .zip, .rar"
  176. />
  177. </WinseaContentModal> -->
  178. </div>
  179. </template>
  180. <script>
  181. import { regionData, CodeToText, TextToCode } from 'element-china-area-data'
  182. import { seeCat, packList, feedback } from '@/model/transport/index'
  183. import { getstaff } from '@/model/warehouse/index'
  184. import WsUpload from '@/components/WsUpload'
  185. import mapDrag from '@/components/mapdrag/mapdrag'
  186. export default {
  187. name: 'viewSpareMoney',
  188. components: {
  189. WsUpload,
  190. mapDrag,
  191. },
  192. watch: {
  193. vesselId(val) {
  194. this.getVesselData()
  195. },
  196. isShow(val) {
  197. this.showType = val
  198. },
  199. },
  200. data() {
  201. return {
  202. staffList: [],
  203. deptBudgetList: {
  204. totalStorage: 0,
  205. tranCarInfoList: [],
  206. },
  207. options_: regionData,
  208. heightData: '600px',
  209. zoom: 7,
  210. selectedOptions: [],
  211. center: [116.244694, 39.517344],
  212. window: '',
  213. radio: 1,
  214. personCharge: [],
  215. district: null,
  216. driverList: [],
  217. listDate: { country: '中国', level: 'country', city: '' },
  218. citylist: [],
  219. compId: sessionStorage.getItem('ws-pf_compId'),
  220. tranType: 2,
  221. rules: {
  222. warehouseName: [
  223. {
  224. required: true,
  225. message: '请输入仓库名称',
  226. trigger: 'blur',
  227. },
  228. {
  229. min: 2,
  230. max: 20,
  231. message: '仓库名长度不符合要求,请输入2-20字符之内',
  232. trigger: 'blur',
  233. },
  234. ],
  235. },
  236. accessoryTFs:[],
  237. fileList:[],
  238. appendixIdsAdd: '',
  239. size: 10,
  240. value1: '',
  241. unitList: [],
  242. freightspace: [
  243. // {
  244. // trainNo: '',
  245. // },
  246. ],
  247. name: '',
  248. list: [],
  249. staffList: [],
  250. options: [],
  251. carModel: [],
  252. tranCarInfoList: {},
  253. arr: [],
  254. }
  255. },
  256. // mounted() {
  257. // this.getList()
  258. // },
  259. activated(){
  260. this.deptBudgetList.id = this.$route.query.id
  261. this.getList()
  262. },
  263. computed: {
  264. totalStorage: function () {
  265. var maxStorage = 0
  266. for (var i = 0; i < this.freightspace.length; i++) {
  267. maxStorage += Number(this.freightspace[i].maxStorage)
  268. }
  269. return maxStorage
  270. },
  271. total: function () {
  272. var maxStorage = 0
  273. for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
  274. maxStorage += Number(
  275. this.deptBudgetList.tranCarInfoList[i].loadNetWeight
  276. )
  277. }
  278. return maxStorage
  279. },
  280. label1: function () {
  281. for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
  282. if (this.deptBudgetList.tranCarInfoList[i].temporaryDriverFlag == 0) {
  283. return '司机名称'
  284. }
  285. else if (this.deptBudgetList.tranCarInfoList[i].temporaryDriverFlag == 1) {
  286. // alert(this.deptBudgetList.tranCarInfoList[i].temporaryDriverFlag)
  287. return '司机名称(临)'
  288. }
  289. }
  290. return "(临)"
  291. // item.temporaryDriverFlag == 0
  292. },
  293. },
  294. methods: {
  295. // dataFilter(val) {
  296. // this.deptBudgetList.personCharge = val
  297. // if (val) {
  298. // this.options = this.staffList.filter((item) => {
  299. // if (
  300. // !!~item.staffName.indexOf(val) ||
  301. // !!~item.staffName.toUpperCase().indexOf(val.toUpperCase())
  302. // ) {
  303. // return true
  304. // }
  305. // })
  306. // } else {
  307. // this.options = this.staffList
  308. // }
  309. // },
  310. selectstaff(e) {
  311. for (var i = 0; i < this.staffList.length; i++) {
  312. if (this.staffList[i].staffName == e) {
  313. this.deptBudgetList.driverPhone = this.staffList[i].staffMobilePhone
  314. this.freightspace[i].driverPhone = this.staffList[i].staffMobilePhone
  315. // this.deptBudgetList.tranCarInfoList[i].driverPhone = this.staffList[i].staffMobilePhone
  316. console.log(this.freightspace[i].driverPhone, 'dianhu')
  317. this.deptBudgetList.personChargeKey = this.staffList[i].staffId
  318. }
  319. }
  320. },
  321. marker: function (item) {
  322. this.deptBudgetList.warehousePositioning =
  323. item.lnglat.lat + ',' + item.lnglat.lng
  324. },
  325. selectedAddress(e) {
  326. this.deptBudgetList.warehousePositioning =
  327. e.center.lat + ',' + e.center.lng
  328. },
  329. confirmPositioncity() {
  330. this.listDate.level = 'city'
  331. this.listDate.country = this.name
  332. },
  333. // 关闭 dialog时 处理文件url 初始化upload组件
  334. handleClose() {
  335. this.dialogViewSpareMoney = false
  336. },
  337. // //下拉司机姓名改变事件
  338. // selectdriver() {},
  339. // handleChange(value) {
  340. // this.selectedOptions = value
  341. // },
  342. returnsales() {
  343. this.deptBudgetList = {}
  344. this.freightspace = {}
  345. this.selectedOptions = ''
  346. this.$router.push({ path: 'tranManagementReceivingFeedback' })
  347. },
  348. // confirmPosition() {
  349. // this.draggable = false
  350. // },
  351. // 上传附件
  352. uploadSuccess(data, files, url) {
  353. console.log(data, files, url)
  354. },
  355. handleClose() {
  356. this.accessoryTFs = false
  357. },
  358. resetForm(deptBudgetList) {
  359. this.$refs[deptBudgetList].resetFields()
  360. },
  361. getList() {
  362. seeCat({ id: this.deptBudgetList.id })
  363. .toPromise()
  364. .then((response) => {
  365. this.deptBudgetList = response
  366. // this.deptBudgetList.tranCarInfoList = response.tranCarInfoList
  367. this.freightspace = response.tranCarInfoList
  368. for (var i = 0; i < this.freightspace.length; i++) {
  369. if (!this.freightspace[i].loadNetWeight) {
  370. this.freightspace[i].loadNetWeight = 0
  371. }
  372. }
  373. })
  374. // //司机姓名下拉
  375. // getstaff({ compId: sessionStorage.getItem('ws-pf_compId') })
  376. // .toPromise()
  377. // .then((response) => {
  378. // this.options = response
  379. // this.staffList = response
  380. // })
  381. // //车型
  382. // packList({ constId: 'TRAN5' })
  383. // .toPromise()
  384. // .then((response) => {
  385. // this.carModel = response
  386. // })
  387. },
  388. handleExamine() {},
  389. approve() {},
  390. // returnsales() {
  391. // this.$router.push({ path: 'purchaseContract' })
  392. // },
  393. selectChapterTwo(e) {
  394. for (var i = 0; i < this.ChapterTwoList.length; i++) {
  395. if (this.ChapterTwoList[i].constValue == e) {
  396. this.deptBudgetList.gradeKey = this.ChapterTwoList[i].constKey
  397. }
  398. }
  399. },
  400. selectunitList(e) {
  401. for (var i = 0; i < this.unitList.length; i++) {
  402. if (this.unitList[i].constValue == e) {
  403. this.deptBudgetList.acceptanceMethodKey = this.unitList[i].constKey
  404. }
  405. }
  406. },
  407. selectgrade(e) {
  408. for (var i = 0; i < this.gradeList.length; i++) {
  409. if (this.gradeList[i].constValue == e) {
  410. this.deptBudgetList.gradeKey = this.gradeList[i].constKey
  411. }
  412. }
  413. },
  414. selectgoodsName(e) {
  415. for (var i = 0; i < this.goodnameList.length; i++) {
  416. if (this.goodnameList[i].constValue == e) {
  417. this.deptBudgetList.goodsNameKey = this.goodnameList[i].constKey
  418. }
  419. }
  420. },
  421. selectpackingMethod(e) {
  422. for (var i = 0; i < this.packtypeList.length; i++) {
  423. if (this.packtypeList[i].constValue == e) {
  424. this.deptBudgetList.packingMethodKey = this.packtypeList[i].constKey
  425. }
  426. }
  427. },
  428. //上传
  429. fujian(row) {
  430. if (
  431. row.receiveAttachmentPath === null ||
  432. row.receiveAttachmentPath === ''
  433. ) {
  434. EventBus.$emit(
  435. 'warning',
  436. this.$t('system.noticeCircular.NoInformation')
  437. )
  438. } else {
  439. this.accessoryTFs = true
  440. }
  441. this.appendixIdss = row.receiveAttachmentPath
  442. },
  443. },
  444. }
  445. </script>
  446. <style lang="scss" scoped>
  447. /deep/.totalStorage .el-input__inner {
  448. color: #afb5cb;
  449. background: #f5f7fa;
  450. }
  451. .small-title {
  452. position: relative;
  453. padding: 10px;
  454. font-weight: 600;
  455. }
  456. .small-title::before {
  457. position: absolute;
  458. content: '';
  459. display: block;
  460. background: #5473e8;
  461. width: 4px;
  462. height: 14px;
  463. left: 0px;
  464. top: 13px;
  465. }
  466. .position {
  467. position: relative;
  468. }
  469. .amap-page-container {
  470. width: 300px;
  471. height: 300px;
  472. }
  473. .el-form {
  474. padding: 0 15%;
  475. }
  476. /deep/.ws-info-table .el-form-item {
  477. border-right: 1px solid transparent;
  478. border-bottom: 1px solid transparent;
  479. }
  480. .readonly {
  481. position: relative;
  482. }
  483. .readonly:after {
  484. content: '*';
  485. color: #ff2727;
  486. position: absolute;
  487. right: 8px;
  488. z-index: 10;
  489. top: 21%;
  490. font-size: 20px;
  491. }
  492. .title {
  493. position: relative;
  494. }
  495. .title::before {
  496. content: '';
  497. display: inline-block;
  498. width: 5px;
  499. height: 30px;
  500. background: #5473e8;
  501. position: absolute;
  502. left: 0;
  503. }
  504. .el-button--primary {
  505. background-color: #5878e8;
  506. border-color: #5878e8;
  507. }
  508. .el-col {
  509. background: #f6f7fc;
  510. }
  511. /deep/.ws-info-table .el-form-item .el-form-item__content {
  512. padding: 0 25px;
  513. border-left: 1px solid transparent;
  514. background: #fff;
  515. }
  516. /deep/.ws-info-table .el-form-item .el-form-item__label {
  517. width: 100px;
  518. text-align: center;
  519. background: #fff;
  520. // border: 1px solid #cdd2dc;
  521. }
  522. .button-container {
  523. display: flex;
  524. flex-wrap: nowrap;
  525. justify-content: space-between;
  526. align-items: center;
  527. background-color: #fff;
  528. width: 100%;
  529. height: 50px;
  530. padding: 0 10px;
  531. & > div {
  532. margin-left: 10px;
  533. display: flex;
  534. flex-wrap: nowrap;
  535. flex-direction: row;
  536. & > span {
  537. line-height: 50px;
  538. }
  539. }
  540. /deep/.auditFlow-box {
  541. position: unset;
  542. margin-left: 10px;
  543. &/deep/.auditFlow-icon {
  544. width: auto;
  545. padding-right: 30px;
  546. }
  547. &/deep/.auditFlow-main {
  548. position: absolute;
  549. }
  550. }
  551. }
  552. .box-app {
  553. display: inline-block;
  554. float: left;
  555. margin-left: 30px;
  556. line-height: 50px;
  557. }
  558. /deep/.el-dialog {
  559. .el-form-item {
  560. margin-bottom: 0 !important;
  561. .el-input--medium {
  562. textarea {
  563. min-height: 100px !important;
  564. }
  565. }
  566. }
  567. }
  568. .collapse-bottom {
  569. margin-bottom: 20px;
  570. }
  571. .input-main .textarea .el-textarea__inner {
  572. width: 100%;
  573. z-index: 1;
  574. }
  575. .bg-left {
  576. padding-left: 30px;
  577. }
  578. .bg-right {
  579. padding-right: 10px;
  580. text-align: right;
  581. }
  582. .bg-bottom {
  583. margin: 15px 0px;
  584. }
  585. .wenzi {
  586. width: 900px;
  587. margin: 0 auto;
  588. }
  589. .wenzi h3 {
  590. display: inline-block;
  591. left: 10px;
  592. }
  593. .wenzi p {
  594. display: inline-block;
  595. }
  596. .center {
  597. width: 900px;
  598. margin: 0 auto;
  599. }
  600. .el-form-item {
  601. width: 50%;
  602. }
  603. .el-form-item__label {
  604. text-align: center;
  605. }
  606. .ce {
  607. width: 900px;
  608. margin: 0 auto;
  609. }
  610. /*.crt-main .textarea /deep/ .el-form-item__label {*/
  611. /* height: 82px;*/
  612. /*}*/
  613. // 控制select为只读的时候显示样式
  614. .hide-sel {
  615. .el-input__inner {
  616. border: 0px;
  617. }
  618. .el-icon-arrow-up {
  619. display: none;
  620. }
  621. .el-textarea__inner {
  622. background-color: #fff !important;
  623. border: 0;
  624. }
  625. .el-date-editor {
  626. i {
  627. display: none;
  628. }
  629. }
  630. .is-disabled {
  631. .el-input__inner:hover {
  632. background-color: #fff !important;
  633. border: 0;
  634. }
  635. color: #606266;
  636. .el-input__inner {
  637. background-color: #fff !important;
  638. border: 0;
  639. color: #606266;
  640. }
  641. .el-textarea__inner {
  642. background-color: #fff !important;
  643. border: 0;
  644. color: #606266;
  645. }
  646. }
  647. }
  648. // 控制select为只读的时候显示样式
  649. /deep/.ws-class-table-col {
  650. height: auto;
  651. padding: 0px 2px;
  652. /deep/.el-input__inner {
  653. padding: 0px 2px;
  654. }
  655. }
  656. /deep/.is-disabled {
  657. .el-input__prefix,
  658. .el-input__suffix {
  659. display: none;
  660. }
  661. .el-input__inner {
  662. background-color: #fff;
  663. border-color: #fff !important;
  664. color: #000 !important;
  665. font-size: 14px;
  666. cursor: text;
  667. padding: 0 !important;
  668. }
  669. }
  670. .winseaview-view {
  671. padding: 0 0 20px;
  672. }
  673. .container {
  674. overflow: scroll;
  675. height: 93vh;
  676. }
  677. .ws-info-table .el-form-item {
  678. width: 33.3333%;
  679. }
  680. .readonly:after {
  681. display: none;
  682. }
  683. .el-textarea__inner {
  684. display: none;
  685. }
  686. .el-form {
  687. margin-top: 50px;
  688. }
  689. .readonly {
  690. width: 16%;
  691. }
  692. //去边框
  693. /deep/.el-form-item {
  694. border-right: 0px;
  695. border-bottom: 0px;
  696. }
  697. /deep/.ws-info-table {
  698. border-left: 0px;
  699. border-top: 0px;
  700. }
  701. .ws-info-table .el-form-item .el-form-item__content {
  702. border: none;
  703. }
  704. /deep/.ws-info-table .el-form-item {
  705. border: none;
  706. }
  707. /deep/.ws-info-table .el-form-item .el-form-item__content {
  708. background: #f5f7fa;
  709. border-radius: 4px;
  710. border: 1px solid #d8dce6;
  711. margin-bottom: 5px;
  712. background-color: #fff;
  713. font-size: 14px;
  714. font-weight: 400;
  715. color: #8890b1;
  716. line-height: 16px;
  717. }
  718. /deep/.ws-info-table .el-form-item .el-form-item__label {
  719. background-color: #fff;
  720. font-size: 14px;
  721. font-weight: 400;
  722. color: #8890b1;
  723. line-height: 16px;
  724. }
  725. /deep/.ws-info-table .el-form-item .el-form-item__content {
  726. background: #f5f7fa;
  727. border-radius: 4px;
  728. border: 1px solid #d8dce6;
  729. }
  730. /deep/.flex .ws-info-table .el-form-item .el-form-item__content {
  731. border: 0px;
  732. }
  733. //联络员及车次
  734. /deep/.liaison .ws-info-table .el-form-item {
  735. width: 16.6%;
  736. height: 50px;
  737. }
  738. /deep/.liaison .ws-info-table .el-form-item .el-form-item__label {
  739. width: 40%;
  740. background: #F6F7FC;
  741. }
  742. /deep/.liaison .flex {
  743. display: contents;
  744. }
  745. /deep/.liaison .ws-info-table{
  746. background: #F6F7FC;
  747. border-radius: 4px;
  748. border: 1px solid #D8DCE6;
  749. margin-top: 20px;
  750. }
  751. .catNos{
  752. width: 100%;
  753. height: 30px;
  754. margin-top: 10px;
  755. margin-left: 20px;
  756. font-size: 14px;
  757. }
  758. .catNosCor{
  759. color: #5473E8;
  760. }
  761. </style>