tranManagementUnShippingFeedbackLook.vue 23 KB

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