salesContractExamine.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831
  1. <!--销售合同-->
  2. <!--2019年5月30日 20:25:16 by jlx-->
  3. <template>
  4. <div class="container">
  5. <el-row>
  6. <el-col :span="12">
  7. <h2 class="bg-left title">查看合同详情</h2>
  8. </el-col>
  9. <el-col :span="12" class="bg-right">
  10. <el-button
  11. class="bg-bottom"
  12. type="primary"
  13. size="small"
  14. @click="returnsales()"
  15. ><img
  16. width="6"
  17. height="10"
  18. style="vertion-align: bottom; margin-right: 3px"
  19. src="../../../public/img/lujing.png"
  20. alt=""
  21. />返回</el-button
  22. >
  23. </el-col>
  24. </el-row>
  25. <div class="state">
  26. <h2>销售合同</h2>
  27. <p>【编号:{{ deptBudgetList.contractNo }}】</p>
  28. <div class="icon">
  29. <template>
  30. <el-popover
  31. placement="right"
  32. :width="285"
  33. trigger="click"
  34. visible-arrow="false"
  35. @show="history(deptBudgetList.id)"
  36. >
  37. <template>
  38. <div slot="reference"> {{deptBudgetList.status }}</div>
  39. </template>
  40. <div>
  41. <p style="margin-top: 0; padding-left: 10px">操作历史</p>
  42. <div v-for="(item, index) in historyList" class="flex">
  43. <div class="vertical-text vertical-text-left">
  44. {{ item.updateDate }}
  45. </div>
  46. <div>
  47. <div class="vertical-circle"></div>
  48. <div
  49. v-if="index != historyList.length - 1"
  50. class="vertical-line"
  51. ></div>
  52. </div>
  53. <div class="vertical-text">
  54. {{ item.operateUser }}<br />{{ item.dealMsg }}
  55. </div>
  56. </div>
  57. </div>
  58. </el-popover>
  59. </template>
  60. </div>
  61. </div>
  62. <div class="center">
  63. <ws-form
  64. ref="deptBudgetList"
  65. :rules="mainReportAdd"
  66. :model="deptBudgetList"
  67. >
  68. <div class="remark">
  69. <h3>基本信息</h3>
  70. </div>
  71. <ws-info-table>
  72. <ws-form-item label="合同类型" span="1" prop="agreementType">
  73. <div class="unchanged">
  74. {{ deptBudgetList.agreementType }}
  75. </div>
  76. </ws-form-item>
  77. <ws-form-item label="合同编号" v-if="deptBudgetList.agreementType=='销售合同'" span="1" prop="contractNo">
  78. <div class="unchanged">
  79. {{ deptBudgetList.contractNo }}
  80. </div>
  81. </ws-form-item>
  82. <ws-form-item label="关联合同" v-if="deptBudgetList.agreementType=='补充协议'" span="1" prop="agreementNo">
  83. <div class="unchanged">
  84. {{ deptBudgetList.agreementNo }}
  85. </div>
  86. </ws-form-item>
  87. <ws-form-item label="补充协议编号" v-if="deptBudgetList.agreementType=='补充协议'" span="1" prop="contractNo">
  88. <div class="unchanged">
  89. {{ deptBudgetList.contractNo }}
  90. </div>
  91. </ws-form-item>
  92. <ws-form-item label="运输方式" span="1" prop="shippingType">
  93. <div class="unchanged">
  94. {{ deptBudgetList.shippingType }}
  95. </div>
  96. </ws-form-item>
  97. <ws-form-item label="买方" span="1" prop="buyer">
  98. <div class="unchanged">
  99. {{ deptBudgetList.buyer }}
  100. </div>
  101. </ws-form-item>
  102. <ws-form-item label="结算方式" span="1" prop="settlementMethod">
  103. <div class="unchanged">
  104. {{ deptBudgetList.settlementMethod }}
  105. </div>
  106. </ws-form-item>
  107. <ws-form-item label="卖方" span="1" prop="seller">
  108. <div class="unchanged">
  109. {{ deptBudgetList.seller }}
  110. </div>
  111. </ws-form-item>
  112. <ws-form-item label="交货方式" span="1" prop="deliverType">
  113. <div class="unchanged">
  114. {{ deptBudgetList.deliverType }}
  115. </div>
  116. </ws-form-item>
  117. <ws-form-item label="买方电话" span="1" prop="buyerPhone">
  118. <div class="unchanged">
  119. {{ deptBudgetList.buyerPhone }}
  120. </div>
  121. </ws-form-item>
  122. <ws-form-item label="包装方式" span="1" prop="packingMethod">
  123. <div class="unchanged">
  124. {{ deptBudgetList.packingMethod }}
  125. </div>
  126. </ws-form-item>
  127. <ws-form-item label="卖方电话" span="1" prop="sellerPhone">
  128. <div class="unchanged">
  129. {{ deptBudgetList.sellerPhone }}
  130. </div>
  131. </ws-form-item>
  132. <ws-form-item label="验收方式" span="1" prop="acceptanceMethod">
  133. <div class="unchanged">
  134. {{ deptBudgetList.acceptanceMethod }}
  135. </div>
  136. </ws-form-item>
  137. <ws-form-item label="重量(吨)" span="1" prop="weight">
  138. <div class="unchanged">
  139. {{ deptBudgetList.weight }}
  140. </div>
  141. </ws-form-item>
  142. <ws-form-item
  143. label="交货日期(起)"
  144. span="1"
  145. prop="deliveryDateStart"
  146. >
  147. <div class="unchanged">
  148. {{ deptBudgetList.deliveryDateStart }}
  149. </div>
  150. </ws-form-item>
  151. <ws-form-item label="溢短装(%)" span="1" prop="overShort">
  152. <div class="unchanged">
  153. {{ deptBudgetList.overShort }}
  154. </div>
  155. </ws-form-item>
  156. <ws-form-item label="交货日期(止)" span="1" prop="deliveryDateEnd">
  157. <div class="unchanged">
  158. {{ deptBudgetList.deliveryDateEnd }}
  159. </div>
  160. </ws-form-item>
  161. <ws-form-item
  162. label="合同单价(元/吨)"
  163. span="1"
  164. prop="unitContractPrice"
  165. >
  166. <div class="unchanged">
  167. {{ deptBudgetList.unitContractPrice }}
  168. </div>
  169. </ws-form-item>
  170. <ws-form-item
  171. label="合同总价(元)"
  172. span="1"
  173. prop="totalContractPrice"
  174. >
  175. <div class="unchanged">
  176. {{ deptBudgetList.totalContractPrice }}
  177. </div>
  178. </ws-form-item>
  179. <ws-form-item label="货源所在地区" span="1">
  180. <div class="unchanged">
  181. {{ deptBudgetList.sourceProvince }}
  182. {{ deptBudgetList.sourceCity }}
  183. {{ deptBudgetList.sourceArea }}
  184. </div>
  185. </ws-form-item>
  186. <ws-form-item label="货源详细地址" span="1" prop="sourceGoods">
  187. <div class="unchanged">
  188. {{ deptBudgetList.sourceGoods }}
  189. </div>
  190. </ws-form-item>
  191. <ws-form-item label="交货地所在地区" span="1">
  192. <div class="unchanged">
  193. {{ deptBudgetList.deliveryProvince }}
  194. {{ deptBudgetList.deliveryCity }}
  195. {{ deptBudgetList.deliveryArea }}
  196. </div>
  197. </ws-form-item>
  198. <ws-form-item label="交货地详细地址" span="1" prop="placeDelivery">
  199. <div class="unchanged">
  200. {{ deptBudgetList.placeDelivery }}
  201. </div>
  202. </ws-form-item>
  203. <ws-form-item label="签订日期" span="1" prop="signingDate">
  204. <div class="unchanged">
  205. {{ deptBudgetList.signingDate }}
  206. </div>
  207. </ws-form-item>
  208. <ws-form-item
  209. label="最终实际交易量 (吨)"
  210. span="1"
  211. prop="finalTradingVolume"
  212. >
  213. <div class="unchanged">
  214. {{ deptBudgetList.finalTradingVolume }}
  215. </div>
  216. </ws-form-item>
  217. </ws-info-table>
  218. <!--面试信息-->
  219. <div class="remark">
  220. <h3>货物信息</h3>
  221. </div>
  222. <ws-info-table>
  223. <ws-form-item label="货名" span="1" prop="waterContent">
  224. <div class="unchanged">
  225. {{ deptBudgetList.contractGoodsInfo.goodsName }}
  226. </div>
  227. </ws-form-item>
  228. <ws-form-item label="水分(%)<=" span="1" prop="intendedShipId">
  229. <div class="unchanged">
  230. {{ deptBudgetList.contractGoodsInfo.waterContent }}
  231. </div>
  232. </ws-form-item>
  233. <ws-form-item label="品级" span="1" prop="grade">
  234. <div class="unchanged">
  235. {{ deptBudgetList.contractGoodsInfo.grade }}
  236. </div>
  237. </ws-form-item>
  238. <ws-form-item label="杂质(%)<=" span="1" prop="impurity">
  239. <div class="unchanged">
  240. {{ deptBudgetList.contractGoodsInfo.impurity }}
  241. </div>
  242. </ws-form-item>
  243. <ws-form-item label="容重(克/升)>=" span="1" prop="bulkDensity">
  244. <div class="unchanged">
  245. {{ deptBudgetList.contractGoodsInfo.bulkDensity }}
  246. </div>
  247. </ws-form-item>
  248. <ws-form-item
  249. label="霉变粒(%)<="
  250. span="1"
  251. prop="mildewGrain"
  252. class="result"
  253. >
  254. <div class="unchanged">
  255. {{ deptBudgetList.contractGoodsInfo.mildewGrain }}
  256. </div>
  257. </ws-form-item>
  258. <ws-form-item label="热损伤(%)<=" span="1" prop="jiaorenli">
  259. <div class="unchanged">
  260. {{ deptBudgetList.contractGoodsInfo.jiaorenli }}
  261. </div>
  262. </ws-form-item>
  263. <ws-form-item
  264. label="不完善粒(%)<="
  265. span="1"
  266. prop="imperfectGrain"
  267. class="result"
  268. >
  269. <div class="unchanged">
  270. {{ deptBudgetList.contractGoodsInfo.imperfectGrain }}
  271. </div>
  272. </ws-form-item>
  273. </ws-info-table>
  274. <div class="remark">
  275. <h3>流程信息</h3>
  276. </div>
  277. <ws-info-table>
  278. <ws-form-item label="合同收入(元)" span="1" prop="goodsNameKey">
  279. <div class="unchanged">
  280. {{ deptBudgetList.contractProcessInfo.goodsNameKey }}
  281. </div>
  282. </ws-form-item>
  283. <ws-form-item label="已开发票(元)" span="1" prop="goodsName">
  284. <div class="unchanged">
  285. {{ deptBudgetList.contractProcessInfo.goodsName }}
  286. </div>
  287. </ws-form-item>
  288. <ws-form-item label="费用支出(元)" span="1" prop="waterContent">
  289. <div class="unchanged">
  290. {{ deptBudgetList.contractProcessInfo.waterContent }}
  291. </div>
  292. </ws-form-item>
  293. <ws-form-item label="未开发票(元)" span="1" prop="impurity">
  294. <div class="unchanged">
  295. {{ deptBudgetList.contractProcessInfo.impurity }}
  296. </div>
  297. </ws-form-item>
  298. <ws-form-item label="未回款(元)" span="1" prop="mildewGrain">
  299. <div class="unchanged">
  300. {{ deptBudgetList.contractProcessInfo.mildewGrain }}
  301. </div>
  302. </ws-form-item>
  303. <!-- <ws-form-item
  304. label="已完成发运量(吨)"
  305. span="1"
  306. prop="imperfectGrain"
  307. class="result"
  308. >
  309. <div class="unchanged">
  310. {{ deptBudgetList.contractProcessInfo.imperfectGrain }}
  311. </div>
  312. </ws-form-item> -->
  313. <ws-form-item label="双章原件回收情况" span="1" prop="grade">
  314. <div class="unchanged">
  315. {{ deptBudgetList.contractProcessInfo.grade }}
  316. </div>
  317. </ws-form-item>
  318. </ws-info-table>
  319. <div class="remark">
  320. <h3>备注信息</h3>
  321. <div class="beizhu">
  322. {{ deptBudgetList.remarks }}
  323. </div>
  324. </div>
  325. <ws-upload
  326. ref="upload"
  327. :comp-id="compId"
  328. :appendix-ids="deptBudgetList.addressUrl"
  329. :editable="false"
  330. accept=".jpg, .jpeg, .png, .pdf, .doc, .zip, .rar"
  331. />
  332. </ws-form>
  333. <el-table
  334. class="wenzi"
  335. :data="taskhistories"
  336. style="width: 100%"
  337. >
  338. <el-table-column prop="operatorMajorRoleName" label="审核人">
  339. <template scope="scope">
  340. {{scope.row.operatorMajorRoleName}}{{scope.row.operatorName}}
  341. </template>
  342. </el-table-column>
  343. <el-table-column prop="inOutTaskNo" label="审核结果">
  344. <template scope="scope">
  345. <span v-if='scope.row.approved'>通过</span>
  346. <span v-if='!scope.row.approved'>驳回</span>
  347. </template>
  348. </el-table-column>
  349. <el-table-column prop="endTime" label="审核时间"></el-table-column>
  350. <el-table-column prop="auditMind" label="驳回原因"></el-table-column>
  351. </el-table>
  352. <div style="text-align: right; padding: 10px">
  353. <el-button
  354. class="bg-bottom"
  355. type="primary"
  356. size="small"
  357. @click="returnsales()"
  358. >关闭</el-button
  359. >
  360. </div>
  361. </div>
  362. </div>
  363. </template>
  364. <script>
  365. import {
  366. packList,
  367. xiala,
  368. examineList,
  369. billoperatehis,
  370. } from '@/model/contarct/index'
  371. import {
  372. gettaskhistories
  373. } from '@/model/tasksport/index'
  374. import { dayjs } from 'base-core-lib'
  375. import WsUpload from '@/components/WsUpload'
  376. export default {
  377. name: 'viewSpareMoney',
  378. components: {
  379. WsUpload,
  380. },
  381. watch: {
  382. vesselId(val) {
  383. this.getVesselData()
  384. },
  385. isShow(val) {
  386. this.showType = val
  387. },
  388. },
  389. data() {
  390. return {
  391. //弹出框
  392. dialogViewSpareMoney: false,
  393. dialogApproveFormVisible: false,
  394. taskhistories:[],
  395. // 船舶类型
  396. monetaryKey: null,
  397. // 表格显示数据
  398. tableDate: [],
  399. // 是否显示
  400. showType: true,
  401. // 年
  402. year: '',
  403. // 提交类型
  404. submitType: true,
  405. tableData: [],
  406. ruleDeptBudget: [],
  407. deptBudgetList: {
  408. contractProcessInfo: {},
  409. contractGoodsInfo: {},
  410. },
  411. mainReportAdd: {},
  412. list: {},
  413. historyList: [],
  414. compId: sessionStorage.getItem('ws-pf_compId'),
  415. }
  416. },
  417. activated() {
  418. this.status = this.$route.query.status
  419. this.loaddata()
  420. this.showType = this.isShow
  421. // this.examineList()
  422. },
  423. methods: {
  424. loaddata() {
  425. gettaskhistories({businessKey: this.$route.query.id,workflowId: this.$route.query.workflowId}).toPromise()
  426. .then((response) => {
  427. this.taskhistories=response
  428. })
  429. // 数据
  430. examineList({ id: this.$route.query.id })
  431. .toPromise()
  432. .then((response) => {
  433. this.deptBudgetList = response
  434. if (this.deptBudgetList.deliverType == 1) {
  435. this.deptBudgetList.deliverType1 = '我方送货'
  436. } else if (this.deptBudgetList.deliverType == 2) {
  437. this.deptBudgetList.deliverType1 = '对方自提'
  438. }
  439. })
  440. // 包装方式
  441. packList({ constId: 'CON1' })
  442. .toPromise()
  443. .then((response) => {
  444. this.packtypeList = response
  445. })
  446. // 验收方式
  447. this.getUnitList()
  448. // 货名
  449. packList({ constId: 'CON2' })
  450. .toPromise()
  451. .then((response) => {
  452. this.goodnameList = response
  453. })
  454. // 品级
  455. packList({ constId: 'CON3' })
  456. .toPromise()
  457. .then((response) => {
  458. this.gradeList = response
  459. })
  460. // 双章
  461. packList({ constId: 'CON4' })
  462. .toPromise()
  463. .then((response) => {
  464. this.ChapterTwoList = response
  465. })
  466. },
  467. getUnitList() {
  468. xiala({
  469. compId: sessionStorage.getItem('ws-pf_compId'),
  470. constCode: 'TYPEYAN',
  471. })
  472. .toPromise()
  473. .then((response) => {
  474. this.unitList = response
  475. let currItem
  476. this.unitList.forEach((item, index, arr) => {
  477. item.flag = 'delete'
  478. if (this.vModel == item.constKey) {
  479. currItem = item
  480. }
  481. })
  482. //
  483. if (currItem) {
  484. this.selectContract(currItem.constValue)
  485. }
  486. })
  487. },
  488. // 关闭 dialog时 处理文件url 初始化upload组件
  489. handleClose() {
  490. this.dialogViewSpareMoney = false
  491. },
  492. history(id1) {
  493. billoperatehis({ id: id1 })
  494. .toPromise()
  495. .then((response) => {
  496. this.historyList = response
  497. })
  498. },
  499. returnsales() {
  500. this.$router.go(-1)
  501. },
  502. },
  503. }
  504. </script>
  505. <style lang="scss" scoped>
  506. /deep/.ws-info-table .el-form-item .el-form-item__content {
  507. padding: 0 25px;
  508. }
  509. /deep/.ws-info-table .el-form-item {
  510. border-right: 1px solid #cdd2dc;
  511. border-bottom: 1px solid #cdd2dc;
  512. }
  513. .title {
  514. position: relative;
  515. }
  516. .title::before {
  517. content: '';
  518. display: inline-block;
  519. width: 5px;
  520. height: 30px;
  521. background: #5473e8;
  522. position: absolute;
  523. left: 0;
  524. }
  525. .el-button--primary {
  526. background-color: #5878e8;
  527. border-color: #5878e8;
  528. }
  529. .el-col {
  530. background: #f6f7fc;
  531. }
  532. .readonly {
  533. position: relative;
  534. }
  535. .readonly:after {
  536. content: '*';
  537. color: #ff2727;
  538. position: absolute;
  539. right: 8px;
  540. z-index: 10;
  541. top: 21%;
  542. font-size: 20px;
  543. }
  544. /deep/.ws-info-table .el-form-item .el-form-item__content {
  545. padding: 0 25px;
  546. border-left: 1px solid #cdd2dc;
  547. background: #fafbfc;
  548. }
  549. /deep/.ws-info-table .el-form-item .el-form-item__label {
  550. width: 140px;
  551. text-align: center;
  552. background: #f0f2f6;
  553. // border: 1px solid #cdd2dc;
  554. }
  555. .button-container {
  556. display: flex;
  557. flex-wrap: nowrap;
  558. justify-content: space-between;
  559. align-items: center;
  560. background-color: #fff;
  561. width: 100%;
  562. height: 50px;
  563. padding: 0 10px;
  564. & > div {
  565. margin-left: 10px;
  566. display: flex;
  567. flex-wrap: nowrap;
  568. flex-direction: row;
  569. & > span {
  570. line-height: 50px;
  571. }
  572. }
  573. /deep/.auditFlow-box {
  574. position: unset;
  575. margin-left: 10px;
  576. &/deep/.auditFlow-icon {
  577. width: auto;
  578. padding-right: 30px;
  579. }
  580. &/deep/.auditFlow-main {
  581. position: absolute;
  582. }
  583. }
  584. }
  585. .box-app {
  586. display: inline-block;
  587. margin-left: 30px;
  588. line-height: 50px;
  589. }
  590. /deep/.el-dialog {
  591. .el-form-item {
  592. margin-bottom: 0 !important;
  593. .el-input--medium {
  594. textarea {
  595. min-height: 100px !important;
  596. }
  597. }
  598. }
  599. }
  600. .collapse-bottom {
  601. margin-bottom: 20px;
  602. }
  603. .input-main .textarea .el-textarea__inner {
  604. width: 100%;
  605. z-index: 1;
  606. }
  607. .bg-left {
  608. padding-left: 30px;
  609. }
  610. .bg-right {
  611. padding: 10px;
  612. text-align: right;
  613. }
  614. .bg-bottom {
  615. margin: 6px 0px;
  616. }
  617. .wenzi {
  618. width: 900px;
  619. margin: 0 auto;
  620. }
  621. .wenzi h3 {
  622. display: inline-block;
  623. left: 30px;
  624. }
  625. .wenzi p {
  626. display: inline-block;
  627. }
  628. .center {
  629. width: 900px;
  630. margin: 0 auto;
  631. }
  632. .el-form-item {
  633. width: 50%;
  634. }
  635. .el-form-item__label {
  636. text-align: center;
  637. }
  638. /*.crt-main .textarea /deep/ .el-form-item__label {*/
  639. /* height: 82px;*/
  640. /*}*/
  641. // 控制select为只读的时候显示样式
  642. .hide-sel {
  643. .el-input__inner {
  644. border: 0px;
  645. }
  646. .el-icon-arrow-up {
  647. display: none;
  648. }
  649. .el-textarea__inner {
  650. background-color: #fff !important;
  651. border: 0;
  652. }
  653. .el-date-editor {
  654. i {
  655. display: none;
  656. }
  657. }
  658. .is-disabled {
  659. .el-input__inner:hover {
  660. background-color: #fff !important;
  661. border: 0;
  662. }
  663. color: #606266;
  664. .el-input__inner {
  665. background-color: #fff !important;
  666. border: 0;
  667. color: #606266;
  668. }
  669. .el-textarea__inner {
  670. background-color: #fff !important;
  671. border: 0;
  672. color: #606266;
  673. }
  674. }
  675. }
  676. // 控制select为只读的时候显示样式
  677. /deep/.ws-class-table-col {
  678. height: auto;
  679. padding: 0px 2px;
  680. /deep/.el-input__inner {
  681. padding: 0px 2px;
  682. }
  683. }
  684. /deep/.is-disabled {
  685. .el-input__prefix,
  686. .el-input__suffix {
  687. display: none;
  688. }
  689. .el-input__inner {
  690. background-color: #fff;
  691. border-color: #fff !important;
  692. color: #000 !important;
  693. font-size: 14px;
  694. cursor: text;
  695. padding: 0 !important;
  696. }
  697. }
  698. .winseaview-view {
  699. padding: 10px 0 20px;
  700. }
  701. .container {
  702. overflow: scroll;
  703. height: 93vh;
  704. }
  705. .state {
  706. width: 900px;
  707. margin: 0 auto;
  708. }
  709. .state h2,
  710. .state p {
  711. display: inline-block;
  712. }
  713. .state p {
  714. display: inline-block;
  715. margin-left: 10px;
  716. width: 170px;
  717. height: 20px;
  718. font-size: 14px;
  719. font-family: PingFangSC-Regular, PingFang SC;
  720. font-weight: 400;
  721. color: #000000;
  722. line-height: 20px;
  723. }
  724. .icon {
  725. display: inline-block;
  726. width: 60px;
  727. height: 24px;
  728. background: #ecfeff;
  729. border-radius: 12px;
  730. border: 1px solid #50cad4;
  731. position: relative;
  732. font-size: 14px;
  733. color: #50cad4;
  734. line-height: 24px;
  735. padding: 1px 7px;
  736. }
  737. //*号
  738. // .unchangeable {
  739. // position: absolute;
  740. // width: 9px;
  741. // height: 22px;
  742. // font-size: 16px;
  743. // font-family: PingFangSC-Medium, PingFang SC;
  744. // font-weight: 500;
  745. // color: #ff2727;
  746. // line-height: 22px;
  747. // display: inline-block;
  748. // right: 14px;
  749. // }
  750. /deep/.el-input,
  751. /deep/.el-date-editor {
  752. font-size: 13px;
  753. width: 232px;
  754. left: 21px;
  755. }
  756. /deep/.el-textarea {
  757. width: 900px;
  758. margin: 0px;
  759. }
  760. /deep/el-date-editor--date {
  761. width: 200px;
  762. }
  763. /deep/.beizhu {
  764. margin: 0 auto;
  765. font-size: 14px;
  766. color: #afb5cb;
  767. margin-left: 20px;
  768. }
  769. .unchanged {
  770. position: absolute;
  771. left: 37px;
  772. width: 900px;
  773. height: 14px;
  774. font-size: 14px;
  775. font-family: PingFangSC-Regular, PingFang SC;
  776. font-weight: 400;
  777. color: #afb5cb;
  778. line-height: 14px;
  779. }
  780. /deep/.ws-info-table[data-v-850a44a6] .el-form-item .el-form-item__label {
  781. width: 130px;
  782. }
  783. /deep/.el-input--small .el-input__inner {
  784. height: 32px;
  785. line-height: 32px;
  786. width: 232px;
  787. }
  788. .vertical-text-left {
  789. width: 62px;
  790. text-align: right;
  791. }
  792. .vertical-text {
  793. margin: 0 10px;
  794. color: #8890b1;
  795. font-size: 12px;
  796. margin-top: -4px;
  797. }
  798. .vertical-line {
  799. height: 100px;
  800. border-left: 2px solid #e9ecf7;
  801. margin-left: 4px;
  802. padding: 0 3px;
  803. }
  804. .vertical-circle {
  805. width: 10px;
  806. height: 10px;
  807. border: 2px solid #5878e8;
  808. background-color: #ffffff;
  809. -webkit-border-radius: 100px;
  810. }
  811. .vertical-circle:first-child {
  812. color: red;
  813. }
  814. </style>