tranManagementTransporFeedbackLook.vue 19 KB

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