tranManagementTransporFeedbackLook.vue 19 KB

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