tranManagementFireFeedbackLook.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862
  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="lianluoyuan">
  94. <ws-info-table>
  95. <!--姓名-->
  96. <ws-form-item label="姓名:" span="1" prop="driver">
  97. <span>{{ deptBudgetList.driver }}</span>
  98. </ws-form-item>
  99. <!--电话-->
  100. <ws-form-item label="电话:" span="1" prop="driverPhone">
  101. <span>{{ deptBudgetList.driverPhone }}</span>
  102. </ws-form-item>
  103. <!--发车日期-->
  104. <el-form-item label="发车日期:" span="1" prop="sendDateStart">
  105. <span>{{ deptBudgetList.sendDateStart }}</span>
  106. </el-form-item>
  107. <!--预计到站日期-->
  108. <ws-form-item label="预计到站日期:" span="1" prop="receiveDateEnd">
  109. <span>{{ deptBudgetList.receiveDateEnd }}</span>
  110. </ws-form-item>
  111. <!--车型-->
  112. <ws-form-item label="车型:" span="1" prop="carModel">
  113. <span>{{ deptBudgetList.carModel }}</span>
  114. </ws-form-item>
  115. </ws-info-table>
  116. </div>
  117. <div class="small-title" style="font-size: 16px">装车详情</div>
  118. <div class="liaison">
  119. <div
  120. style="width: 100%"
  121. class="flex position"
  122. v-for="(item, index) in this.freightspace"
  123. :key="index"
  124. >
  125. <ws-info-table>
  126. <!--车厢号-->
  127. <div class="catNos">车厢-{{ index + 1 }}</div>
  128. <ws-form-item label="车厢号:" span="1" prop="boxNo">
  129. <span>{{ item.boxNo }}</span>
  130. </ws-form-item>
  131. <!--装车(吨)-->
  132. <ws-form-item label="装车净重(吨):" span="1" prop="loadNetWeight">
  133. {{ item.loadNetWeight }}
  134. </ws-form-item>
  135. <!--磅单-->
  136. <ws-form-item label="磅单:" span="1" prop="loadPoundImg">
  137. <template>
  138. <img
  139. width="18"
  140. height="20"
  141. style="
  142. vertical-align: text-top;
  143. position: relative;
  144. top: -1px;
  145. "
  146. src="../../../public/img/fujian.png"
  147. :data-img="item.loadPoundImg"
  148. @click="$imgPreview"
  149. alt=""
  150. />
  151. <span
  152. v-if="
  153. deptBudgetList.tranCarInfoList[index].loadPoundImgArr
  154. .length > 0
  155. "
  156. >{{
  157. deptBudgetList.tranCarInfoList[index].loadPoundImgArr.length
  158. }}</span
  159. >
  160. <span
  161. v-if="
  162. deptBudgetList.tranCarInfoList[index].loadPoundImgArr
  163. .length == 0
  164. "
  165. >无</span
  166. >
  167. <!-- <el-button v-if="item.loadPoundImg != null" class="bg-bottom-preview" type="primary" size="small" :data-img="item.loadPoundImg" @click="$imgPreview">预览</el-button> -->
  168. </template>
  169. </ws-form-item>
  170. <!--装车日期-->
  171. <ws-form-item label="装车日期:" span="1" prop="loadingDate">
  172. <span>{{ item.loadingDate }}</span>
  173. </ws-form-item>
  174. <!-- <div
  175. v-show="
  176. item.temporaryDriverFlag == 0 &&
  177. item.signStatus == '未签合同'
  178. "
  179. class="signStatus"
  180. >
  181. {{ item.signStatus }}
  182. </div>
  183. <div
  184. v-show="
  185. item.temporaryDriverFlag == 0 &&
  186. item.signStatus == '已签合同'
  187. "
  188. class="signStatus1"
  189. >
  190. {{ item.signStatus }}
  191. </div> -->
  192. <span class="noservicein" v-show="item.status == '未装车'">{{ item.status}}</span>
  193. <span class="servicein" v-show="item.status == '已装车' || item.status == '已送达'">已装车</span>
  194. </ws-info-table>
  195. </div>
  196. </div>
  197. <div style="text-align: center; color: #8890b1; font-size: 16px">
  198. 合计(吨):{{ total }}/{{ deptBudgetList.weight }}
  199. <!--阶段状态-->
  200. <span
  201. class="noservice"
  202. v-show="deptBudgetList.feedbackStatus == '执行中'"
  203. >
  204. 未完货
  205. </span>
  206. <span
  207. class="service"
  208. v-show="deptBudgetList.feedbackStatus == '已完货'"
  209. >{{ deptBudgetList.feedbackStatus }}</span
  210. >
  211. </div>
  212. </ws-form>
  213. <!-- 关闭 -->
  214. <div style="text-align: right; padding: 10px" class="center">
  215. <el-button
  216. class="bg-bottom"
  217. type="primary"
  218. size="small"
  219. @click="returnsales()"
  220. >关闭</el-button
  221. >
  222. </div>
  223. <!-- 附件弹框 -->
  224. <WinseaContentModal
  225. v-model="accessoryTFs"
  226. :title="$t('system.noticeCircular.information')"
  227. @on-cancel="handleClose"
  228. >
  229. <p>查看附件</p>
  230. <div
  231. style="display: inline-block; margin: 5px"
  232. v-for="item in appendixIdss"
  233. >
  234. <img width="100" height="100" :src="item" alt="" />
  235. </div>
  236. </WinseaContentModal>
  237. <WinseaContentModal
  238. v-model="accesscard"
  239. :title="$t('system.noticeCircular.information')"
  240. @on-cancel="handleClose1"
  241. >
  242. <p>查看附件</p>
  243. <img width="100" height="100" :src="accessurl" alt="" />
  244. </WinseaContentModal>
  245. </div>
  246. </template>
  247. <script>
  248. import { regionData, CodeToText, TextToCode } from 'element-china-area-data'
  249. import { seeCat, packList, feedback } from '@/model/transport/index'
  250. import WsUpload from '@/components/WsUpload'
  251. import mapDrag from '@/components/mapdrag/mapdrag'
  252. export default {
  253. name: 'viewSpareMoney',
  254. components: {
  255. WsUpload,
  256. mapDrag,
  257. },
  258. watch: {
  259. vesselId(val) {
  260. this.getVesselData()
  261. },
  262. isShow(val) {
  263. this.showType = val
  264. },
  265. },
  266. data() {
  267. return {
  268. deptBudgetList: {
  269. totalStorage: 0,
  270. },
  271. options_: regionData,
  272. heightData: '600px',
  273. zoom: 7,
  274. selectedOptions: [],
  275. center: [116.244694, 39.517344],
  276. window: '',
  277. radio: 1,
  278. personCharge: [],
  279. district: null,
  280. driverList: [],
  281. listDate: { country: '中国', level: 'country', city: '' },
  282. citylist: [],
  283. compId: sessionStorage.getItem('ws-pf_compId'),
  284. rules: {
  285. warehouseName: [
  286. {
  287. required: true,
  288. message: '请输入仓库名称',
  289. trigger: 'blur',
  290. },
  291. {
  292. min: 2,
  293. max: 20,
  294. message: '仓库名长度不符合要求,请输入2-20字符之内',
  295. trigger: 'blur',
  296. },
  297. ],
  298. },
  299. tranType: 1,
  300. size: 10,
  301. value1: '',
  302. unitList: [],
  303. freightspace: [
  304. {
  305. driver: '',
  306. driverPhone: '',
  307. carNo: '',
  308. loadNetWeight: '',
  309. },
  310. ],
  311. name: '',
  312. staffList: [],
  313. options: [],
  314. // carModel: [],
  315. tranCarInfoList: {},
  316. //上传
  317. accessoryTFs: false,
  318. accesscard: false,
  319. accessurl: '',
  320. fileList: [],
  321. // appendixIdsAdd: '',
  322. //附件
  323. appendixIdss: [],
  324. }
  325. },
  326. mounted() {
  327. this.deptBudgetList.id = this.$route.query.id
  328. this.getList()
  329. },
  330. computed: {
  331. totalStorage: function () {
  332. var maxStorage = 0
  333. for (var i = 0; i < this.freightspace.length; i++) {
  334. maxStorage += Number(this.freightspace[i].maxStorage)
  335. }
  336. return maxStorage
  337. },
  338. total: function () {
  339. if (this.deptBudgetList.tranCarInfoList != null) {
  340. var maxStorage = 0
  341. for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
  342. maxStorage += Number(
  343. this.deptBudgetList.tranCarInfoList[i].loadNetWeight
  344. )
  345. }
  346. return maxStorage
  347. } else {
  348. return 0
  349. }
  350. },
  351. label1: function () {
  352. // for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
  353. // if (this.deptBudgetList.tranCarInfoList[i].temporaryDriverFlag == 0) {
  354. // return '司机名称'
  355. // }
  356. // else if (this.deptBudgetList.tranCarInfoList[i].temporaryDriverFlag == 1) {
  357. // // alert(this.deptBudgetList.tranCarInfoList[i].temporaryDriverFlag)
  358. // return '司机名称(临)'
  359. // }
  360. // }
  361. return '(临)'
  362. // item.temporaryDriverFlag == 0
  363. },
  364. },
  365. methods: {
  366. marker: function (item) {
  367. this.deptBudgetList.warehousePositioning =
  368. item.lnglat.lat + ',' + item.lnglat.lng
  369. },
  370. // 关闭 dialog时 处理文件url 初始化upload组件
  371. handleClose() {
  372. this.dialogViewSpareMoney = false
  373. },
  374. handleClose1() {
  375. this.accesscard = false
  376. },
  377. returnsales() {
  378. this.deptBudgetList = {}
  379. this.freightspace = {}
  380. this.selectedOptions = ''
  381. this.$router.push({ path: 'tranManagementTransporHairRespond' })
  382. },
  383. resetForm(deptBudgetList) {
  384. this.$refs[deptBudgetList].resetFields()
  385. },
  386. getList() {
  387. seeCat({ id: this.deptBudgetList.id })
  388. .toPromise()
  389. .then((response) => {
  390. this.deptBudgetList = response
  391. this.freightspace = response.tranCarInfoList
  392. this.deptBudgetList.driver = response.tranCarInfoList[0].driver
  393. this.deptBudgetList.driverPhone =
  394. response.tranCarInfoList[0].driverPhone
  395. this.deptBudgetList.sendDateStart =
  396. response.tranCarInfoList[0].sendDateStart
  397. this.deptBudgetList.receiveDateEnd =
  398. response.tranCarInfoList[0].receiveDateEnd
  399. this.deptBudgetList.carModel = response.tranCarInfoList[0].carModel
  400. for (var i = 0; i < this.freightspace.length; i++) {
  401. if (!this.freightspace[i].loadNetWeight) {
  402. this.freightspace[i].loadNetWeight = 0
  403. }
  404. if (this.deptBudgetList.tranCarInfoList[i].loadPoundImg != null) {
  405. this.deptBudgetList.tranCarInfoList[i].loadPoundImgArr =
  406. this.deptBudgetList.tranCarInfoList[i].loadPoundImg.split(',')
  407. this.fileList[i] =
  408. this.deptBudgetList.tranCarInfoList[i].loadPoundImg.split(',')
  409. } else {
  410. this.deptBudgetList.tranCarInfoList[i].loadPoundImgArr = []
  411. }
  412. }
  413. })
  414. },
  415. //上传
  416. fujian(index) {
  417. if (
  418. this.deptBudgetList.tranCarInfoList[index].loadPoundImg === null ||
  419. this.deptBudgetList.tranCarInfoList[index].loadPoundImg === ''
  420. ) {
  421. this.$message({
  422. message: '暂无附件!',
  423. type: 'warning',
  424. })
  425. return
  426. } else {
  427. this.accessoryTFs = true
  428. }
  429. this.appendixIdss =
  430. this.deptBudgetList.tranCarInfoList[index].loadPoundImgArr
  431. },
  432. },
  433. }
  434. </script>
  435. <style lang="scss" scoped>
  436. /deep/.totalStorage .el-input__inner {
  437. color: #afb5cb;
  438. background: #f5f7fa;
  439. }
  440. .small-title {
  441. position: relative;
  442. padding: 10px;
  443. font-weight: 600;
  444. }
  445. .small-title::before {
  446. position: absolute;
  447. content: '';
  448. display: block;
  449. background: #5473e8;
  450. width: 4px;
  451. height: 14px;
  452. left: 0px;
  453. top: 13px;
  454. }
  455. .position {
  456. position: relative;
  457. }
  458. .amap-page-container {
  459. width: 300px;
  460. height: 300px;
  461. }
  462. .el-form {
  463. padding: 0 10%;
  464. }
  465. /deep/.ws-info-table .el-form-item {
  466. border-right: 1px solid transparent;
  467. border-bottom: 1px solid transparent;
  468. }
  469. .readonly {
  470. position: relative;
  471. }
  472. .readonly:after {
  473. content: '*';
  474. color: #ff2727;
  475. position: absolute;
  476. right: 8px;
  477. z-index: 10;
  478. top: 21%;
  479. font-size: 20px;
  480. }
  481. .title {
  482. position: relative;
  483. }
  484. .title::before {
  485. content: '';
  486. display: inline-block;
  487. width: 5px;
  488. height: 30px;
  489. background: #5473e8;
  490. position: absolute;
  491. left: 0;
  492. }
  493. .el-button--primary {
  494. background-color: #5878e8;
  495. border-color: #5878e8;
  496. }
  497. .el-col {
  498. background: #f6f7fc;
  499. }
  500. /deep/.ws-info-table .el-form-item .el-form-item__content {
  501. padding: 0 25px;
  502. border-left: 1px solid transparent;
  503. background: #fff;
  504. }
  505. /deep/.ws-info-table .el-form-item .el-form-item__label {
  506. width: 100px;
  507. text-align: center;
  508. background: #fff;
  509. }
  510. .button-container {
  511. display: flex;
  512. flex-wrap: nowrap;
  513. justify-content: space-between;
  514. align-items: center;
  515. background-color: #fff;
  516. width: 100%;
  517. height: 50px;
  518. padding: 0 10px;
  519. & > div {
  520. margin-left: 10px;
  521. display: flex;
  522. flex-wrap: nowrap;
  523. flex-direction: row;
  524. & > span {
  525. line-height: 50px;
  526. }
  527. }
  528. /deep/.auditFlow-box {
  529. position: unset;
  530. margin-left: 10px;
  531. &/deep/.auditFlow-icon {
  532. width: auto;
  533. padding-right: 30px;
  534. }
  535. &/deep/.auditFlow-main {
  536. position: absolute;
  537. }
  538. }
  539. }
  540. .box-app {
  541. display: inline-block;
  542. float: left;
  543. margin-left: 30px;
  544. line-height: 50px;
  545. }
  546. /deep/.el-dialog {
  547. .el-form-item {
  548. margin-bottom: 0 !important;
  549. .el-input--medium {
  550. textarea {
  551. min-height: 100px !important;
  552. }
  553. }
  554. }
  555. }
  556. .collapse-bottom {
  557. margin-bottom: 20px;
  558. }
  559. .input-main .textarea .el-textarea__inner {
  560. width: 100%;
  561. z-index: 1;
  562. }
  563. .bg-left {
  564. padding-left: 30px;
  565. }
  566. .bg-right {
  567. padding-right: 10px;
  568. text-align: right;
  569. }
  570. .bg-bottom {
  571. margin: 15px 0px;
  572. }
  573. .wenzi {
  574. width: 900px;
  575. margin: 0 auto;
  576. }
  577. .wenzi h3 {
  578. display: inline-block;
  579. left: 10px;
  580. }
  581. .wenzi p {
  582. display: inline-block;
  583. }
  584. .center {
  585. margin-right: 50px;
  586. }
  587. .el-form-item {
  588. width: 50%;
  589. }
  590. .el-form-item__label {
  591. text-align: center;
  592. }
  593. .ce {
  594. width: 900px;
  595. margin: 0 auto;
  596. }
  597. /*.crt-main .textarea /deep/ .el-form-item__label {*/
  598. /* height: 82px;*/
  599. /*}*/
  600. // 控制select为只读的时候显示样式
  601. .hide-sel {
  602. .el-input__inner {
  603. border: 0px;
  604. }
  605. .el-icon-arrow-up {
  606. display: none;
  607. }
  608. .el-textarea__inner {
  609. background-color: #fff !important;
  610. border: 0;
  611. }
  612. .el-date-editor {
  613. i {
  614. display: none;
  615. }
  616. }
  617. .is-disabled {
  618. .el-input__inner:hover {
  619. background-color: #fff !important;
  620. border: 0;
  621. }
  622. color: #606266;
  623. .el-input__inner {
  624. background-color: #fff !important;
  625. border: 0;
  626. color: #606266;
  627. }
  628. .el-textarea__inner {
  629. background-color: #fff !important;
  630. border: 0;
  631. color: #606266;
  632. }
  633. }
  634. }
  635. // 控制select为只读的时候显示样式
  636. /deep/.ws-class-table-col {
  637. height: auto;
  638. padding: 0px 2px;
  639. /deep/.el-input__inner {
  640. padding: 0px 2px;
  641. }
  642. }
  643. /deep/.is-disabled {
  644. .el-input__prefix,
  645. .el-input__suffix {
  646. display: none;
  647. }
  648. .el-input__inner {
  649. background-color: #fff;
  650. border-color: #fff !important;
  651. color: #000 !important;
  652. font-size: 14px;
  653. cursor: text;
  654. padding: 0 !important;
  655. }
  656. }
  657. .winseaview-view {
  658. padding: 0 0 20px;
  659. }
  660. .container {
  661. overflow: scroll;
  662. height: 93vh;
  663. }
  664. .ws-info-table .el-form-item {
  665. width: 33.3333%;
  666. }
  667. .readonly:after {
  668. display: none;
  669. }
  670. .el-textarea__inner {
  671. display: none;
  672. }
  673. .el-form {
  674. margin-top: 50px;
  675. }
  676. .readonly {
  677. width: 16%;
  678. }
  679. //去边框
  680. /deep/.el-form-item {
  681. border-right: 0px;
  682. border-bottom: 0px;
  683. }
  684. /deep/.ws-info-table {
  685. border-left: 0px;
  686. border-top: 0px;
  687. }
  688. .ws-info-table .el-form-item .el-form-item__content {
  689. border: none;
  690. }
  691. /deep/.ws-info-table .el-form-item {
  692. border: none;
  693. height: 50px;
  694. }
  695. /deep/.ws-info-table .el-form-item .el-form-item__content {
  696. background: #f5f7fa;
  697. border-radius: 4px;
  698. border: 1px solid #d8dce6;
  699. font-family: PingFangSC-Regular, PingFang SC;
  700. margin-bottom: 5px;
  701. background-color: #fff;
  702. font-size: 14px;
  703. font-weight: 400;
  704. color: #8890b1;
  705. line-height: 16px;
  706. }
  707. /deep/.ws-info-table .el-form-item .el-form-item__label {
  708. background-color: #fff;
  709. font-size: 14px;
  710. font-family: PingFangSC-Regular, PingFang SC;
  711. font-weight: 400;
  712. color: #8890b1;
  713. line-height: 16px;
  714. }
  715. /deep/.ws-info-table .el-form-item .el-form-item__content {
  716. background: #f5f7fa;
  717. border-radius: 4px;
  718. border: 1px solid #d8dce6;
  719. }
  720. /deep/.flex .ws-info-table .el-form-item .el-form-item__content {
  721. border: 0px;
  722. border-right: 1px solid #d8dce6;
  723. border-radius: 0px;
  724. padding: 0px;
  725. }
  726. //装车详情
  727. /deep/.liaison .ws-info-table .el-form-item {
  728. width: 20%;
  729. }
  730. /deep/.liaison .ws-info-table .el-form-item .el-form-item__label {
  731. width: 50%;
  732. background: #f6f7fc;
  733. }
  734. /deep/.liaison .flex {
  735. display: contents;
  736. }
  737. /deep/.liaison .ws-info-table {
  738. background: #f6f7fc;
  739. border-radius: 4px;
  740. border: 1px solid #d8dce6;
  741. margin-top: 20px;
  742. }
  743. .catNos {
  744. width: 5%;
  745. height: 30px;
  746. margin-top: 10px;
  747. margin-left: 20px;
  748. margin-right: -5px;
  749. font-size: 14px;
  750. }
  751. .catNosCor {
  752. color: #5473e8;
  753. }
  754. .signStatus {
  755. height: 25px;
  756. border-radius: 3px;
  757. border: 1px solid #5473e8;
  758. padding: 0 3px;
  759. margin-left: 30px;
  760. color: #ffffff;
  761. background: #c4cada;
  762. line-height: 24px;
  763. }
  764. .signStatus1 {
  765. height: 25px;
  766. background: #e6ebff;
  767. border-radius: 3px;
  768. border: 1px solid #5473e8;
  769. padding: 0 3px;
  770. margin-left: 30px;
  771. color: #5473e8;
  772. line-height: 24px;
  773. }
  774. //联络员及车次
  775. /deep/.lianluoyuan .ws-info-table .el-form-item {
  776. width: 20%;
  777. }
  778. /deep/.lianluoyuan .ws-info-table .el-form-item .el-form-item__label {
  779. width: 50%;
  780. background: #f6f7fc;
  781. padding-right: 28px;
  782. margin-top: 5px;
  783. }
  784. /deep/.lianluoyuan .flex {
  785. display: contents;
  786. }
  787. /deep/.lianluoyuan .ws-info-table {
  788. background: #f6f7fc;
  789. border-radius: 4px;
  790. border: 1px solid #d8dce6;
  791. margin-top: 20px;
  792. }
  793. /deep/.lianluoyuan .ws-info-table .el-form-item .el-form-item__content {
  794. padding: 0px;
  795. margin-top: 5px;
  796. }
  797. //完货
  798. .noservice,
  799. .service {
  800. display: inline-block;
  801. border-radius: 4px;
  802. border: 1px solid #d8dce6;
  803. padding: 2px;
  804. font-size: 12px;
  805. }
  806. .noservice {
  807. background: #c4cada;
  808. color: #ffffff;
  809. }
  810. .service {
  811. background: #e5f1f7;
  812. color: #50cad4;
  813. }
  814. //装车状态
  815. .noservicein,
  816. .servicein {
  817. display: inline-block;
  818. border-radius: 4px;
  819. border: 1px solid #d8dce6;
  820. padding: 2px;
  821. font-size: 12px;
  822. background: #e5f1f7;
  823. color: #50cad4;
  824. height: 23px;
  825. margin-top: 11px;
  826. margin-left: 53px;
  827. }
  828. .noservicein {
  829. background: #c4cada;
  830. color: #ffffff;
  831. display: inline-block;
  832. border-radius: 4px;
  833. border: 1px solid #d8dce6;
  834. padding: 2px;
  835. font-size: 12px;
  836. height: 23px;
  837. margin-top: 11px;
  838. margin-left: 53px;
  839. }
  840. .servicedin {
  841. display: inline-block;
  842. border-radius: 4px;
  843. border: 1px solid #d8dce6;
  844. padding: 2px;
  845. font-size: 12px;
  846. background: #e5f1f7;
  847. color: #50cad4;
  848. height: 23px;
  849. margin-top: 11px;
  850. margin-left: 53px;
  851. }
  852. </style>