moveWarehouseTaskLook.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  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. <span
  32. >移库任务编号:
  33. <span style="font-weight: 600">{{ this.moveTaskNo }}</span></span
  34. >
  35. <!-- <div v-for="(item, index) in shipment" > -->
  36. <ws-info-table class="inout">
  37. <!--出货库-->
  38. <div class="library">
  39. <span style="margin-left: 14px"
  40. >出货库:{{ shipment1.sendWarehouse }}</span
  41. >
  42. <span class="status" v-show="shipment1.taskStatus == '待审核'">{{
  43. shipment1.taskStatus
  44. }}</span>
  45. <span class="status2" v-show="shipment1.taskStatus == '执行中'">{{
  46. shipment1.taskStatus
  47. }}</span>
  48. <span class="status1" v-show="shipment1.taskStatus == '已完成'">{{
  49. shipment1.taskStatus
  50. }}</span>
  51. </div>
  52. <!--出库经办人-->
  53. <ws-form-item label="出库经办人:" span="1" prop="agent">
  54. {{ shipment1.agent }}
  55. </ws-form-item>
  56. <el-divider direction="vertical" class="line"></el-divider>
  57. <!--出库重量(吨)-->
  58. <ws-form-item label="出库重量(吨):" span="1" prop="weight">
  59. {{ shipment1.weight }}
  60. </ws-form-item>
  61. <el-divider direction="vertical" class="line"></el-divider>
  62. <!--仓位-->
  63. <ws-form-item label="仓位:" span="1" prop="deliveryVolume">
  64. {{ shipment1.binNumber == null ? '未指定' : shipment1.binNumber }}
  65. </ws-form-item>
  66. <el-divider direction="vertical" class="line"></el-divider>
  67. <!--预计出库日期-->
  68. <ws-form-item label="预计出库日期:" span="1" prop="predictDate">
  69. {{ shipment1.predictDate }}
  70. </ws-form-item>
  71. </ws-info-table>
  72. <ws-info-table v-bind:class="classs1">
  73. <div class="library">
  74. <span style="margin-left: 14px">
  75. 入货库:{{ enter.warehouseName }}</span
  76. >
  77. <span class="status" v-show="enter.taskStatus == '待审核'">{{
  78. enter.taskStatus
  79. }}</span>
  80. <span class="status2" v-show="enter.taskStatus == '执行中'">{{
  81. enter.taskStatus
  82. }}</span>
  83. <span class="status1" v-show="enter.taskStatus == '已完成'">{{
  84. enter.taskStatus
  85. }}</span>
  86. </div>
  87. <!--入库经办人-->
  88. <ws-form-item label="入库经办人:" span="1" prop="agent">
  89. {{ enter.agent }}
  90. </ws-form-item>
  91. <el-divider direction="vertical" class="line"></el-divider>
  92. <!--入库重量(吨)-->
  93. <ws-form-item label="入库重量(吨):" span="1" prop="weight">
  94. {{ enter.weight }}
  95. </ws-form-item>
  96. <el-divider direction="vertical" class="line"></el-divider>
  97. <!-- 仓位 -->
  98. <ws-form-item label="仓位:" span="1" prop="deliveryVolume">
  99. {{ enter.binNumber == null ? '未指定' : enter.binNumber }}
  100. </ws-form-item>
  101. <el-divider direction="vertical" class="line"></el-divider>
  102. <!--预计入库日期-->
  103. <ws-form-item label="预计入库日期:" span="1" prop="predictDate">
  104. {{ enter.predictDate }}
  105. </ws-form-item>
  106. </ws-info-table>
  107. <div style="float: right; margin-top: -61px;color:red;" v-show="this.moveLookData.length == 1">已删除</div>
  108. <!-- </div> -->
  109. <ws-info-table class="goods">
  110. <!--货物信息-->
  111. <div class="library">
  112. <span style="line-height: 50px; color: #323233; margin-left: 14px"
  113. >货物信息</span
  114. >
  115. </div>
  116. <el-input
  117. placeholder="信息暂无"
  118. :disabled="true"
  119. v-model="this.goodsName"
  120. ></el-input>
  121. <el-divider direction="vertical" class="line1"></el-divider>
  122. <el-input
  123. placeholder="信息暂无"
  124. :disabled="true"
  125. v-model="this.grade"
  126. ></el-input>
  127. <el-divider direction="vertical" class="line1"></el-divider>
  128. <el-input
  129. placeholder="信息暂无"
  130. :disabled="true"
  131. v-model="this.bulkDensity + 'g/L(容)'"
  132. >
  133. </el-input>
  134. <el-divider direction="vertical" class="line1"></el-divider>
  135. <el-input
  136. placeholder="信息暂无"
  137. :disabled="true"
  138. v-model="this.waterContent + '%(水)'"
  139. >
  140. </el-input>
  141. <el-divider direction="vertical" class="line1"></el-divider>
  142. <el-input
  143. placeholder="信息暂无"
  144. :disabled="true"
  145. v-model="this.weight + '(吨)'"
  146. >
  147. </el-input>
  148. <el-divider direction="vertical" class="line1"></el-divider>
  149. <el-input
  150. placeholder="信息暂无"
  151. :disabled="true"
  152. v-model="this.unitPrice + '(元/吨)'"
  153. >
  154. </el-input>
  155. </ws-info-table>
  156. <span style="line-height: 60px; text-align: center; color: #323233"
  157. >业务描述:</span
  158. >
  159. <!--业务描述-->
  160. <ws-input
  161. v-model="businessDescribe"
  162. type="textarea"
  163. row="3"
  164. placeholder="暂无"
  165. maxlength="200"
  166. readonly
  167. />
  168. <div class="small-title" style="font-size: 16px">实际流转数量</div>
  169. <ws-info-table class="flow">
  170. <el-table :data="weights" border style="width: 100%">
  171. <el-table-column prop="weightOut" label="累计出库量(吨)">
  172. </el-table-column>
  173. <el-table-column prop="weightIn" label="累计入库量(吨)">
  174. </el-table-column>
  175. <el-table-column prop="transportLoss" label="累计运输损耗(吨)">
  176. <template scope="scope">
  177. {{ scope.row.weightOut - scope.row.weightIn - Number(count)}}
  178. </template>
  179. </el-table-column>
  180. </el-table>
  181. </ws-info-table>
  182. <ws-info-table class="flow1">
  183. <el-table
  184. :data="enter.inOutWarehouseTaskList"
  185. border
  186. style="width: 100%"
  187. >
  188. <el-table-column prop="weight" label="累计退库量(吨)">
  189. <el-table-column :label="count">
  190. <template scope="scope">
  191. {{ scope.row.weight
  192. }}<span style="margin: 0 30px; color: #8890b1">退至</span
  193. >{{ scope.row.warehouseName }}
  194. </template>
  195. </el-table-column>
  196. </el-table-column>
  197. </el-table>
  198. </ws-info-table>
  199. </ws-form>
  200. <!-- 提交 -->
  201. <div style="text-align: right; padding: 10px" class="center">
  202. <el-button
  203. class="bg-bottom"
  204. type="primary"
  205. size="small"
  206. @click="returnsales"
  207. >关闭</el-button
  208. >
  209. </div>
  210. </div>
  211. </template>
  212. <script>
  213. import { moveLook } from '@/model/tasksport/index'
  214. import WsUpload from '@/components/WsUpload'
  215. import mapDrag from '@/components/mapdrag/mapdrag'
  216. export default {
  217. name: 'viewSpareMoney',
  218. components: {
  219. WsUpload,
  220. mapDrag,
  221. },
  222. watch: {
  223. vesselId(val) {
  224. this.getVesselData()
  225. },
  226. isShow(val) {
  227. this.showType = val
  228. },
  229. },
  230. data() {
  231. return {
  232. deptBudgetList: {
  233. totalStorage: 0,
  234. },
  235. listDate: { country: '中国', level: 'country', city: '' },
  236. tranType: 2,
  237. rules: {
  238. warehouseName: [
  239. {
  240. required: true,
  241. message: '请输入仓库名称',
  242. trigger: 'blur',
  243. },
  244. {
  245. min: 2,
  246. max: 20,
  247. message: '仓库名长度不符合要求,请输入2-20字符之内',
  248. trigger: 'blur',
  249. },
  250. ],
  251. },
  252. appendixIdsAdd: '',
  253. size: 10,
  254. unitList: [],
  255. name: '',
  256. moveLookData: [],
  257. shipment: {},
  258. shipment1: {},
  259. enter: {
  260. inOutWarehouseTaskList:[],
  261. },
  262. moveTaskNo: '',
  263. weights: [
  264. {},
  265. ],
  266. weightOut: 0,
  267. weightIn: 0,
  268. transportLoss: 0,
  269. weightIn: 0,
  270. retreat: 0,
  271. goodsName: '',
  272. grade: '',
  273. bulkDensity: 0,
  274. waterContent: 0,
  275. weight: 0,
  276. unitPrice: 0,
  277. businessDescribe: '',
  278. count: '0',
  279. classs1:'inout',
  280. }
  281. },
  282. activated() {
  283. this.moveTaskNo = this.$route.query.moveTaskNo
  284. this.getList()
  285. },
  286. mounted() {
  287. this.moveTaskNo = this.$route.query.moveTaskNo
  288. this.getList()
  289. },
  290. methods: {
  291. marker: function (item) {
  292. this.deptBudgetList.warehousePositioning =
  293. item.lnglat.lat + ',' + item.lnglat.lng
  294. },
  295. confirmPositioncity() {
  296. this.listDate.level = 'city'
  297. this.listDate.country = this.name
  298. },
  299. // 关闭 dialog时 处理文件url 初始化upload组件
  300. handleClose() {
  301. this.dialogViewSpareMoney = false
  302. },
  303. returnsales() {
  304. this.moveLookData = []
  305. this.$router.go(-1)
  306. },
  307. // 上传附件
  308. uploadSuccess(data, files, url) {
  309. console.log(data, files, url)
  310. },
  311. resetForm(deptBudgetList) {
  312. this.$refs[deptBudgetList].resetFields()
  313. },
  314. getList() {
  315. moveLook({ moveTaskNo: this.moveTaskNo })
  316. .toPromise()
  317. .then((response) => {
  318. this.moveLookData = response
  319. for (var i = 0; i < this.moveLookData.length; i++) {
  320. if (this.moveLookData[i].inOutType == '移库出库') {
  321. this.shipment = this.moveLookData[i]
  322. this.shipment1 = this.moveLookData[i]
  323. this.weightOut = this.moveLookData[i].weight
  324. this.$set(
  325. this.weights[0],
  326. 'weightOut',
  327. this.moveLookData[i].completedQuantity
  328. )
  329. } else {
  330. // if (this.moveLookData[i].inOutType == '移库入库')
  331. this.enter = this.shipment = this.moveLookData[i]
  332. this.weightIn = this.moveLookData[i].weight
  333. this.$set(
  334. this.weights[0],
  335. 'weightIn',
  336. this.moveLookData[i].completedQuantity
  337. )
  338. this.businessDescribe = this.moveLookData[i].businessDescribe
  339. }
  340. this.transportLoss = this.weightOut - this.weightIn
  341. this.goodsName = this.moveLookData[0].goodsName
  342. this.grade = this.moveLookData[0].grade
  343. if(this.moveLookData[0].bulkDensity){
  344. this.bulkDensity = this.moveLookData[0].bulkDensity
  345. }
  346. if(this.moveLookData[0].waterContent){
  347. this.waterContent = this.moveLookData[0].waterContent
  348. }
  349. if(this.moveLookData[0].unitPrice){
  350. this.unitPrice = this.moveLookData[0].unitPrice
  351. }
  352. this.weight = this.moveLookData[0].weight
  353. }
  354. var num = 0
  355. for (var i = 0; i < this.enter.inOutWarehouseTaskList.length; i++) {
  356. num += this.enter.inOutWarehouseTaskList[i].weight
  357. }
  358. this.count = ""+num
  359. if(this.enter.inOutType == null && this.enter.agent ==null){
  360. this.classs1 = 'inouts'
  361. }
  362. })
  363. },
  364. selectChapterTwo(e) {
  365. for (var i = 0; i < this.ChapterTwoList.length; i++) {
  366. if (this.ChapterTwoList[i].constValue == e) {
  367. this.deptBudgetList.gradeKey = this.ChapterTwoList[i].constKey
  368. }
  369. }
  370. },
  371. selectunitList(e) {
  372. for (var i = 0; i < this.unitList.length; i++) {
  373. if (this.unitList[i].constValue == e) {
  374. this.deptBudgetList.acceptanceMethodKey = this.unitList[i].constKey
  375. }
  376. }
  377. },
  378. selectgrade(e) {
  379. for (var i = 0; i < this.gradeList.length; i++) {
  380. if (this.gradeList[i].constValue == e) {
  381. this.deptBudgetList.gradeKey = this.gradeList[i].constKey
  382. }
  383. }
  384. },
  385. selectgoodsName(e) {
  386. for (var i = 0; i < this.goodnameList.length; i++) {
  387. if (this.goodnameList[i].constValue == e) {
  388. this.deptBudgetList.goodsNameKey = this.goodnameList[i].constKey
  389. }
  390. }
  391. },
  392. selectpackingMethod(e) {
  393. for (var i = 0; i < this.packtypeList.length; i++) {
  394. if (this.packtypeList[i].constValue == e) {
  395. this.deptBudgetList.packingMethodKey = this.packtypeList[i].constKey
  396. }
  397. }
  398. },
  399. },
  400. }
  401. </script>
  402. <style lang="scss" scoped>
  403. //蓝标
  404. .small-title {
  405. position: relative;
  406. padding: 10px;
  407. font-weight: 600;
  408. }
  409. .small-title::before {
  410. position: absolute;
  411. content: '';
  412. display: block;
  413. background: #5473e8;
  414. width: 4px;
  415. height: 14px;
  416. left: 0px;
  417. top: 13px;
  418. }
  419. .amap-page-container {
  420. width: 300px;
  421. height: 300px;
  422. }
  423. .el-form {
  424. padding: 0 15%;
  425. }
  426. /deep/.ws-info-table .el-form-item {
  427. width: 23%;
  428. border: none;
  429. height: 50px;
  430. }
  431. .readonly {
  432. position: relative;
  433. }
  434. .readonly:after {
  435. content: '*';
  436. color: #ff2727;
  437. position: absolute;
  438. right: 8px;
  439. z-index: 10;
  440. top: 21%;
  441. font-size: 20px;
  442. }
  443. .title {
  444. position: relative;
  445. }
  446. .title::before {
  447. content: '';
  448. display: inline-block;
  449. width: 5px;
  450. height: 30px;
  451. background: #5473e8;
  452. position: absolute;
  453. left: 0;
  454. }
  455. .el-button--primary {
  456. background-color: #5878e8;
  457. border-color: #5878e8;
  458. }
  459. .el-col {
  460. background: #f6f7fc;
  461. }
  462. /deep/.ws-info-table .el-form-item .el-form-item__content {
  463. border: none;
  464. font-size: 14px;
  465. // color: #8890b1;
  466. }
  467. /deep/.ws-info-table .el-form-item .el-form-item__label {
  468. text-align: right;
  469. background: #fff;
  470. font-size: 14px;
  471. font-weight: 400;
  472. width: 52%;
  473. }
  474. .button-container {
  475. display: flex;
  476. flex-wrap: nowrap;
  477. justify-content: space-between;
  478. align-items: center;
  479. background-color: #fff;
  480. width: 100%;
  481. height: 50px;
  482. padding: 0 10px;
  483. & > div {
  484. margin-left: 10px;
  485. display: flex;
  486. flex-wrap: nowrap;
  487. flex-direction: row;
  488. & > span {
  489. line-height: 50px;
  490. }
  491. }
  492. /deep/.auditFlow-box {
  493. position: unset;
  494. margin-left: 10px;
  495. &/deep/.auditFlow-icon {
  496. width: auto;
  497. padding-right: 30px;
  498. }
  499. &/deep/.auditFlow-main {
  500. position: absolute;
  501. }
  502. }
  503. }
  504. .box-app {
  505. display: inline-block;
  506. float: left;
  507. margin-left: 30px;
  508. line-height: 50px;
  509. }
  510. /deep/.el-dialog {
  511. .el-form-item {
  512. margin-bottom: 0 !important;
  513. .el-input--medium {
  514. textarea {
  515. min-height: 100px !important;
  516. }
  517. }
  518. }
  519. }
  520. .collapse-bottom {
  521. margin-bottom: 20px;
  522. }
  523. .input-main .textarea .el-textarea__inner {
  524. width: 100%;
  525. z-index: 1;
  526. }
  527. .bg-left {
  528. padding-left: 30px;
  529. }
  530. .bg-right {
  531. padding-right: 10px;
  532. text-align: right;
  533. }
  534. .bg-bottom {
  535. margin: 15px 0px;
  536. }
  537. .center {
  538. width: 90%;
  539. margin: 0 auto;
  540. }
  541. .el-form-item__label {
  542. text-align: center;
  543. }
  544. /*.crt-main .textarea /deep/ .el-form-item__label {*/
  545. /* height: 82px;*/
  546. /*}*/
  547. // 控制select为只读的时候显示样式
  548. .hide-sel {
  549. .el-input__inner {
  550. border: 0px;
  551. }
  552. .el-icon-arrow-up {
  553. display: none;
  554. }
  555. .el-date-editor {
  556. i {
  557. display: none;
  558. }
  559. }
  560. .is-disabled {
  561. .el-input__inner:hover {
  562. background-color: #fff !important;
  563. border: 0;
  564. }
  565. color: #606266;
  566. .el-input__inner {
  567. background-color: #fff !important;
  568. border: 0;
  569. color: #606266;
  570. }
  571. .el-textarea__inner {
  572. background-color: #fff !important;
  573. border: 0;
  574. color: #606266;
  575. }
  576. }
  577. }
  578. // 控制select为只读的时候显示样式
  579. /deep/.ws-class-table-col {
  580. height: auto;
  581. padding: 0px 2px;
  582. /deep/.el-input__inner {
  583. padding: 0px 2px;
  584. }
  585. }
  586. /deep/.is-disabled {
  587. .el-input__prefix,
  588. .el-input__suffix {
  589. display: none;
  590. }
  591. .el-input__inner {
  592. background-color: #fff;
  593. border-color: #fff !important;
  594. color: #000 !important;
  595. font-size: 14px;
  596. cursor: text;
  597. padding: 0 !important;
  598. }
  599. }
  600. .winseaview-view {
  601. padding: 0 0 20px;
  602. }
  603. .container {
  604. overflow: scroll;
  605. height: 93vh;
  606. }
  607. .readonly:after {
  608. display: none;
  609. }
  610. .el-form {
  611. margin-top: 50px;
  612. }
  613. .readonly {
  614. width: 16%;
  615. }
  616. //去边框
  617. /deep/.el-form-item {
  618. border-right: 0px;
  619. border-bottom: 0px;
  620. width: 50%;
  621. }
  622. /deep/.ws-info-table {
  623. border-left: 0px;
  624. border-top: 0px;
  625. }
  626. //输入框
  627. /deep/.el-input {
  628. width: 14.555%;
  629. margin-left: 10px;
  630. }
  631. /deep/.is-disabled .el-input__inner {
  632. height: 40px;
  633. text-align: center;
  634. }
  635. .library {
  636. width: 100%;
  637. height: 50px;
  638. border-bottom: 1px solid #d8dce6;
  639. color: #232323;
  640. line-height: 50px;
  641. }
  642. .line {
  643. height: 50px;
  644. // left: -80px;
  645. }
  646. .line1 {
  647. height: 50px;
  648. }
  649. /deep/.is-disabled .el-input__inner {
  650. margin-top: 4px;
  651. }
  652. //业务描述
  653. /deep/.el-textarea {
  654. width: 90%;
  655. // margin-left: 24px;
  656. margin-top: 20px;
  657. }
  658. .inout {
  659. width: 95%;
  660. border-radius: 4px;
  661. border: 1px solid #d8dce6;
  662. margin-top: 20px;
  663. }
  664. .goods {
  665. width: 95%;
  666. border-radius: 4px;
  667. border: 1px solid #d8dce6;
  668. margin-top: 20px;
  669. }
  670. .flow,
  671. .flow1 {
  672. border-radius: 5px;
  673. border: 1px solid #d8dce6;
  674. margin-top: 20px;
  675. // border-bottom: 0px;
  676. border-top: 0px;
  677. }
  678. .flow {
  679. height: 95px;
  680. }
  681. /deep/.flow .el-form-item {
  682. display: inline-grid;
  683. border-bottom: 1px solid #d8dce6;
  684. width: 30%;
  685. height: 50px;
  686. text-align: center;
  687. }
  688. .flow .el-col {
  689. background: #fff;
  690. display: contents;
  691. }
  692. .flow{
  693. width: 95%;
  694. }
  695. .flow1 {
  696. width: 32%;
  697. }
  698. /deep/.el-table th > .cell {
  699. text-align: center;
  700. border-right: 1px solid #d8dce6;
  701. background: #fff;
  702. }
  703. .weights {
  704. width: 100%;
  705. height: 50px;
  706. text-align: center;
  707. line-height: 50px;
  708. }
  709. /deep/.el-textarea__inner {
  710. border: none;
  711. }
  712. /deep/.el-table th > .cell {
  713. color: #000 !important;
  714. font-weight: 400;
  715. }
  716. /deep/.el-table td {
  717. text-align: center;
  718. }
  719. .status {
  720. margin-left: 10px;
  721. background: #e6eaf8;
  722. padding: 2px 5px;
  723. border-radius: 3px;
  724. color: #5473e8;
  725. }
  726. .status1 {
  727. margin-left: 10px;
  728. background: #e5f1f7;
  729. padding: 2px 5px;
  730. border-radius: 3px;
  731. color: #50cad4;
  732. }
  733. .status2 {
  734. margin-left: 10px;
  735. background: #e1e7fd;
  736. padding: 2px 5px;
  737. border-radius: 3px;
  738. color: #5473e8;
  739. }
  740. .inouts{
  741. background: #F6F7FB;
  742. width: 95%;
  743. border-radius: 4px;
  744. border: 1px solid #d8dce6;
  745. margin-top: 20px;
  746. }
  747. /deep/.inouts .el-form-item .el-form-item__content,/deep/.inouts .el-form-item .el-form-item__label{
  748. background: #F6F7FB;
  749. }
  750. </style>