tranManagementUnShippingFeedbackLook.vue 24 KB

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