tranManagementReceivingloadingLook.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779
  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.deptBudgetList.id = this.$route.query.id
  258. this.getList()
  259. },
  260. computed: {
  261. totalStorage: function () {
  262. var maxStorage = 0
  263. for (var i = 0; i < this.freightspace.length; i++) {
  264. maxStorage += Number(this.freightspace[i].maxStorage)
  265. }
  266. return maxStorage
  267. },
  268. total: function () {
  269. var maxStorage = 0
  270. for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
  271. maxStorage += Number(
  272. this.deptBudgetList.tranCarInfoList[i].loadNetWeight
  273. )
  274. }
  275. return maxStorage
  276. },
  277. label1: function () {
  278. for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
  279. if (this.deptBudgetList.tranCarInfoList[i].temporaryDriverFlag == 0) {
  280. return '司机名称'
  281. }
  282. else if (this.deptBudgetList.tranCarInfoList[i].temporaryDriverFlag == 1) {
  283. // alert(this.deptBudgetList.tranCarInfoList[i].temporaryDriverFlag)
  284. return '司机名称(临)'
  285. }
  286. }
  287. return "(临)"
  288. // item.temporaryDriverFlag == 0
  289. },
  290. },
  291. methods: {
  292. // dataFilter(val) {
  293. // this.deptBudgetList.personCharge = val
  294. // if (val) {
  295. // this.options = this.staffList.filter((item) => {
  296. // if (
  297. // !!~item.staffName.indexOf(val) ||
  298. // !!~item.staffName.toUpperCase().indexOf(val.toUpperCase())
  299. // ) {
  300. // return true
  301. // }
  302. // })
  303. // } else {
  304. // this.options = this.staffList
  305. // }
  306. // },
  307. selectstaff(e) {
  308. for (var i = 0; i < this.staffList.length; i++) {
  309. if (this.staffList[i].staffName == e) {
  310. this.deptBudgetList.driverPhone = this.staffList[i].staffMobilePhone
  311. this.freightspace[i].driverPhone = this.staffList[i].staffMobilePhone
  312. // this.deptBudgetList.tranCarInfoList[i].driverPhone = this.staffList[i].staffMobilePhone
  313. console.log(this.freightspace[i].driverPhone, 'dianhu')
  314. this.deptBudgetList.personChargeKey = this.staffList[i].staffId
  315. }
  316. }
  317. },
  318. marker: function (item) {
  319. this.deptBudgetList.warehousePositioning =
  320. item.lnglat.lat + ',' + item.lnglat.lng
  321. },
  322. selectedAddress(e) {
  323. this.deptBudgetList.warehousePositioning =
  324. e.center.lat + ',' + e.center.lng
  325. },
  326. confirmPositioncity() {
  327. this.listDate.level = 'city'
  328. this.listDate.country = this.name
  329. },
  330. // 关闭 dialog时 处理文件url 初始化upload组件
  331. handleClose() {
  332. this.dialogViewSpareMoney = false
  333. },
  334. // //下拉司机姓名改变事件
  335. // selectdriver() {},
  336. // handleChange(value) {
  337. // this.selectedOptions = value
  338. // },
  339. returnsales() {
  340. this.deptBudgetList = {}
  341. this.freightspace = {}
  342. this.selectedOptions = ''
  343. this.$router.push({ path: 'tranManagementReceivingFeedback' })
  344. },
  345. // confirmPosition() {
  346. // this.draggable = false
  347. // },
  348. // 上传附件
  349. uploadSuccess(data, files, url) {
  350. console.log(data, files, url)
  351. },
  352. handleClose() {
  353. this.accessoryTFs = false
  354. },
  355. resetForm(deptBudgetList) {
  356. this.$refs[deptBudgetList].resetFields()
  357. },
  358. getList() {
  359. seeCat({ id: this.deptBudgetList.id })
  360. .toPromise()
  361. .then((response) => {
  362. this.deptBudgetList = response
  363. // this.deptBudgetList.tranCarInfoList = response.tranCarInfoList
  364. this.freightspace = response.tranCarInfoList
  365. for (var i = 0; i < this.freightspace.length; i++) {
  366. if (!this.freightspace[i].loadNetWeight) {
  367. this.freightspace[i].loadNetWeight = 0
  368. }
  369. }
  370. })
  371. // //司机姓名下拉
  372. // getstaff({ compId: sessionStorage.getItem('ws-pf_compId') })
  373. // .toPromise()
  374. // .then((response) => {
  375. // this.options = response
  376. // this.staffList = response
  377. // })
  378. // //车型
  379. // packList({ constId: 'TRAN5' })
  380. // .toPromise()
  381. // .then((response) => {
  382. // this.carModel = response
  383. // })
  384. },
  385. handleExamine() {},
  386. approve() {},
  387. // returnsales() {
  388. // this.$router.push({ path: 'purchaseContract' })
  389. // },
  390. selectChapterTwo(e) {
  391. for (var i = 0; i < this.ChapterTwoList.length; i++) {
  392. if (this.ChapterTwoList[i].constValue == e) {
  393. this.deptBudgetList.gradeKey = this.ChapterTwoList[i].constKey
  394. }
  395. }
  396. },
  397. selectunitList(e) {
  398. for (var i = 0; i < this.unitList.length; i++) {
  399. if (this.unitList[i].constValue == e) {
  400. this.deptBudgetList.acceptanceMethodKey = this.unitList[i].constKey
  401. }
  402. }
  403. },
  404. selectgrade(e) {
  405. for (var i = 0; i < this.gradeList.length; i++) {
  406. if (this.gradeList[i].constValue == e) {
  407. this.deptBudgetList.gradeKey = this.gradeList[i].constKey
  408. }
  409. }
  410. },
  411. selectgoodsName(e) {
  412. for (var i = 0; i < this.goodnameList.length; i++) {
  413. if (this.goodnameList[i].constValue == e) {
  414. this.deptBudgetList.goodsNameKey = this.goodnameList[i].constKey
  415. }
  416. }
  417. },
  418. selectpackingMethod(e) {
  419. for (var i = 0; i < this.packtypeList.length; i++) {
  420. if (this.packtypeList[i].constValue == e) {
  421. this.deptBudgetList.packingMethodKey = this.packtypeList[i].constKey
  422. }
  423. }
  424. },
  425. //上传
  426. fujian(row) {
  427. if (
  428. row.receiveAttachmentPath === null ||
  429. row.receiveAttachmentPath === ''
  430. ) {
  431. EventBus.$emit(
  432. 'warning',
  433. this.$t('system.noticeCircular.NoInformation')
  434. )
  435. } else {
  436. this.accessoryTFs = true
  437. }
  438. this.appendixIdss = row.receiveAttachmentPath
  439. },
  440. },
  441. }
  442. </script>
  443. <style lang="scss" scoped>
  444. /deep/.totalStorage .el-input__inner {
  445. color: #afb5cb;
  446. background: #f5f7fa;
  447. }
  448. .small-title {
  449. position: relative;
  450. padding: 10px;
  451. font-weight: 600;
  452. }
  453. .small-title::before {
  454. position: absolute;
  455. content: '';
  456. display: block;
  457. background: #5473e8;
  458. width: 4px;
  459. height: 14px;
  460. left: 0px;
  461. top: 13px;
  462. }
  463. .position {
  464. position: relative;
  465. }
  466. .amap-page-container {
  467. width: 300px;
  468. height: 300px;
  469. }
  470. .el-form {
  471. padding: 0 15%;
  472. }
  473. /deep/.ws-info-table .el-form-item {
  474. border-right: 1px solid transparent;
  475. border-bottom: 1px solid transparent;
  476. }
  477. .readonly {
  478. position: relative;
  479. }
  480. .readonly:after {
  481. content: '*';
  482. color: #ff2727;
  483. position: absolute;
  484. right: 8px;
  485. z-index: 10;
  486. top: 21%;
  487. font-size: 20px;
  488. }
  489. .title {
  490. position: relative;
  491. }
  492. .title::before {
  493. content: '';
  494. display: inline-block;
  495. width: 5px;
  496. height: 30px;
  497. background: #5473e8;
  498. position: absolute;
  499. left: 0;
  500. }
  501. .el-button--primary {
  502. background-color: #5878e8;
  503. border-color: #5878e8;
  504. }
  505. .el-col {
  506. background: #f6f7fc;
  507. }
  508. /deep/.ws-info-table .el-form-item .el-form-item__content {
  509. padding: 0 25px;
  510. border-left: 1px solid transparent;
  511. background: #fff;
  512. }
  513. /deep/.ws-info-table .el-form-item .el-form-item__label {
  514. width: 100px;
  515. text-align: center;
  516. background: #fff;
  517. // border: 1px solid #cdd2dc;
  518. }
  519. .button-container {
  520. display: flex;
  521. flex-wrap: nowrap;
  522. justify-content: space-between;
  523. align-items: center;
  524. background-color: #fff;
  525. width: 100%;
  526. height: 50px;
  527. padding: 0 10px;
  528. & > div {
  529. margin-left: 10px;
  530. display: flex;
  531. flex-wrap: nowrap;
  532. flex-direction: row;
  533. & > span {
  534. line-height: 50px;
  535. }
  536. }
  537. /deep/.auditFlow-box {
  538. position: unset;
  539. margin-left: 10px;
  540. &/deep/.auditFlow-icon {
  541. width: auto;
  542. padding-right: 30px;
  543. }
  544. &/deep/.auditFlow-main {
  545. position: absolute;
  546. }
  547. }
  548. }
  549. .box-app {
  550. display: inline-block;
  551. float: left;
  552. margin-left: 30px;
  553. line-height: 50px;
  554. }
  555. /deep/.el-dialog {
  556. .el-form-item {
  557. margin-bottom: 0 !important;
  558. .el-input--medium {
  559. textarea {
  560. min-height: 100px !important;
  561. }
  562. }
  563. }
  564. }
  565. .collapse-bottom {
  566. margin-bottom: 20px;
  567. }
  568. .input-main .textarea .el-textarea__inner {
  569. width: 100%;
  570. z-index: 1;
  571. }
  572. .bg-left {
  573. padding-left: 30px;
  574. }
  575. .bg-right {
  576. padding-right: 10px;
  577. text-align: right;
  578. }
  579. .bg-bottom {
  580. margin: 15px 0px;
  581. }
  582. .wenzi {
  583. width: 900px;
  584. margin: 0 auto;
  585. }
  586. .wenzi h3 {
  587. display: inline-block;
  588. left: 10px;
  589. }
  590. .wenzi p {
  591. display: inline-block;
  592. }
  593. .center {
  594. width: 900px;
  595. margin: 0 auto;
  596. }
  597. .el-form-item {
  598. width: 50%;
  599. }
  600. .el-form-item__label {
  601. text-align: center;
  602. }
  603. .ce {
  604. width: 900px;
  605. margin: 0 auto;
  606. }
  607. /*.crt-main .textarea /deep/ .el-form-item__label {*/
  608. /* height: 82px;*/
  609. /*}*/
  610. // 控制select为只读的时候显示样式
  611. .hide-sel {
  612. .el-input__inner {
  613. border: 0px;
  614. }
  615. .el-icon-arrow-up {
  616. display: none;
  617. }
  618. .el-textarea__inner {
  619. background-color: #fff !important;
  620. border: 0;
  621. }
  622. .el-date-editor {
  623. i {
  624. display: none;
  625. }
  626. }
  627. .is-disabled {
  628. .el-input__inner:hover {
  629. background-color: #fff !important;
  630. border: 0;
  631. }
  632. color: #606266;
  633. .el-input__inner {
  634. background-color: #fff !important;
  635. border: 0;
  636. color: #606266;
  637. }
  638. .el-textarea__inner {
  639. background-color: #fff !important;
  640. border: 0;
  641. color: #606266;
  642. }
  643. }
  644. }
  645. // 控制select为只读的时候显示样式
  646. /deep/.ws-class-table-col {
  647. height: auto;
  648. padding: 0px 2px;
  649. /deep/.el-input__inner {
  650. padding: 0px 2px;
  651. }
  652. }
  653. /deep/.is-disabled {
  654. .el-input__prefix,
  655. .el-input__suffix {
  656. display: none;
  657. }
  658. .el-input__inner {
  659. background-color: #fff;
  660. border-color: #fff !important;
  661. color: #000 !important;
  662. font-size: 14px;
  663. cursor: text;
  664. padding: 0 !important;
  665. }
  666. }
  667. .winseaview-view {
  668. padding: 0 0 20px;
  669. }
  670. .container {
  671. overflow: scroll;
  672. height: 93vh;
  673. }
  674. .ws-info-table .el-form-item {
  675. width: 33.3333%;
  676. }
  677. .readonly:after {
  678. display: none;
  679. }
  680. .el-textarea__inner {
  681. display: none;
  682. }
  683. .el-form {
  684. margin-top: 50px;
  685. }
  686. .readonly {
  687. width: 16%;
  688. }
  689. //去边框
  690. /deep/.el-form-item {
  691. border-right: 0px;
  692. border-bottom: 0px;
  693. }
  694. /deep/.ws-info-table {
  695. border-left: 0px;
  696. border-top: 0px;
  697. }
  698. .ws-info-table .el-form-item .el-form-item__content {
  699. border-right: 0px;
  700. border-bottom: 0px;
  701. border-left: 0px;
  702. border-top: 0px;
  703. }
  704. /deep/.ws-info-table .el-form-item {
  705. border-right: 0px;
  706. border-bottom: 0px;
  707. border-left: 0px;
  708. border-top: 0px;
  709. }
  710. /deep/.ws-info-table .el-form-item .el-form-item__content {
  711. background: #f5f7fa;
  712. border-radius: 4px;
  713. border: 1px solid #d8dce6;
  714. font-family: PingFangSC-Regular, PingFang SC;
  715. margin-bottom: 5px;
  716. background-color: #fff;
  717. font-size: 14px;
  718. font-weight: 400;
  719. color: #8890b1;
  720. line-height: 16px;
  721. }
  722. /deep/.ws-info-table .el-form-item .el-form-item__label {
  723. background-color: #fff;
  724. font-size: 14px;
  725. font-family: PingFangSC-Regular, PingFang SC;
  726. font-weight: 400;
  727. color: #8890b1;
  728. line-height: 16px;
  729. }
  730. /deep/.ws-info-table .el-form-item .el-form-item__content {
  731. background: #f5f7fa;
  732. border-radius: 4px;
  733. border: 1px solid #d8dce6;
  734. }
  735. /deep/.flex .ws-info-table .el-form-item .el-form-item__content {
  736. border: 0px;
  737. }
  738. //联络员及车次
  739. /deep/.liaison .ws-info-table .el-form-item {
  740. width: 16%;
  741. height: 50px;
  742. }
  743. /deep/.liaison .ws-info-table .el-form-item .el-form-item__label {
  744. width: 30%;
  745. background: #F6F7FC;
  746. }
  747. /deep/.liaison .flex {
  748. display: contents;
  749. }
  750. /deep/.liaison .ws-info-table{
  751. background: #F6F7FC;
  752. border-radius: 4px;
  753. border: 1px solid #D8DCE6;
  754. margin-top: 20px;
  755. }
  756. .catNos{
  757. width: 100%;
  758. height: 30px;
  759. margin-top: 10px;
  760. margin-left: 20px;
  761. font-size: 14px;
  762. }
  763. .catNosCor{
  764. color: #5473E8;
  765. }
  766. </style>