warehouseManagementPerfectput.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754
  1. // 完善入库信息
  2. <template>
  3. <div class="container">
  4. <el-row>
  5. <el-col :span="20">
  6. <h2 class="bg-left title">完善入库登记</h2>
  7. </el-col>
  8. <el-col :span="4" class="bg-right">
  9. <el-button
  10. class="bg-bottom"
  11. type="primary"
  12. size="small"
  13. @click="revert()"
  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 ref="dataList" :model="dataList" :rules="rules">
  25. <div class="basicInformation">
  26. <h2>
  27. {{ deptBudgetList1.warehouseName }}库
  28. <span class="position"> {{ deptBudgetList1.binNumber }}仓位 </span>
  29. </h2>
  30. <div class="small-title">基本信息</div>
  31. <ws-info-table>
  32. <!-- 货名 -->
  33. <ws-form-item label="货名" span="1">
  34. <ws-select
  35. v-model="dataList.goodsName"
  36. placeholder=""
  37. class="typeselect"
  38. @change="selectgoodsName"
  39. >
  40. <ws-option
  41. v-for="item in goodnameList"
  42. :key="item.constKey"
  43. :label="item.constValue"
  44. :value="item.constValue"
  45. />
  46. </ws-select>
  47. </ws-form-item>
  48. <!--毛重(吨)-->
  49. <ws-form-item label="毛重(吨)" span="1" prop="grossWeight">
  50. <ws-input
  51. @input="grossWeightchange"
  52. v-model="dataList.grossWeight"
  53. placeholder="请输入毛重"
  54. maxlength="20"
  55. size="small"
  56. />
  57. </ws-form-item>
  58. <!--皮重(吨)-->
  59. <ws-form-item
  60. label="皮重(吨)"
  61. span="1"
  62. prop="tare"
  63. class="readonly"
  64. >
  65. <ws-input
  66. @input="tarechange"
  67. v-model="dataList.tare"
  68. placeholder="请输入皮重"
  69. maxlength="100"
  70. size="small"
  71. />
  72. </ws-form-item>
  73. <!--净重(吨)-->
  74. <ws-form-item label="净重(吨)" span="1" prop="netWeight">
  75. <ws-input
  76. v-model.number="dataList.netWeight"
  77. placeholder="不可编辑,自动计算"
  78. type="number"
  79. maxlength="120"
  80. size="small"
  81. />
  82. </ws-form-item>
  83. <!-- 品级 -->
  84. <ws-form-item label="品级" span="1" class="readonly">
  85. <ws-select
  86. v-model="dataList.grade"
  87. placeholder=""
  88. class="typeselect"
  89. @change="selectpackingMethod"
  90. >
  91. <ws-option
  92. v-for="item in gradeList"
  93. :key="item.constKey"
  94. :label="item.constValue"
  95. :value="item.constValue"
  96. />
  97. </ws-select>
  98. </ws-form-item>
  99. <!--经办人-->
  100. <ws-form-item label="经办人" span="1" prop="agent">
  101. <ws-input
  102. v-model="dataList.agent"
  103. placeholder="请输入出库经办人姓名"
  104. maxlength="100"
  105. size="small"
  106. />
  107. </ws-form-item>
  108. <!--入库日期-->
  109. <ws-form-item
  110. label="入库日期"
  111. span="1"
  112. prop="inOutDate"
  113. class="deliverydate"
  114. >
  115. <ws-date-picker
  116. v-model="dataList.inOutDate"
  117. type="date"
  118. placeholder="请选择出库日期"
  119. value-format="yyyy-MM-dd"
  120. />
  121. </ws-form-item>
  122. <!-- 入库类型 -->
  123. <ws-form-item label="入库类型" span="1">
  124. <ws-select
  125. v-model="dataList.inOutType"
  126. placeholder=""
  127. class="typeselect"
  128. @change="selectstorageType"
  129. >
  130. <ws-option
  131. v-for="item in storageType"
  132. :key="item.constKey"
  133. :label="item.constValue"
  134. :value="item.constValue"
  135. />
  136. </ws-select>
  137. </ws-form-item>
  138. <!--车牌号-->
  139. <ws-form-item label="车牌号" span="1" prop="sourceGoods">
  140. <ws-input
  141. v-model="dataList.carNo"
  142. placeholder="请输入车牌号"
  143. maxlength="20"
  144. size="small"
  145. />
  146. </ws-form-item>
  147. <!--合同编号-->
  148. <ws-form-item label="合同编号" span="1" prop="contractNo">
  149. <ws-input
  150. v-model="dataList.contractNo"
  151. placeholder="请输入合同编号"
  152. maxlength="100"
  153. size="small"
  154. />
  155. </ws-form-item>
  156. </ws-info-table>
  157. </div>
  158. <div class="small-title">上传仓库照片</div>
  159. <ws-upload
  160. ref="upload"
  161. table-name="maintain_work_order"
  162. oss-key="mainPlan"
  163. :comp-id="compId"
  164. :appendix-ids="appendixIdsAdd"
  165. :vesselId="dataList.addressUrl"
  166. :size-limit="size"
  167. @uploadSuccess="uploadSuccess"
  168. @onChange="onChange"
  169. accept=".jpg, .jpeg, .png, .pdf, .doc, .zip, .rar"
  170. />
  171. <div class="small-title">化验数据(选填)</div>
  172. <div class="inspector">
  173. <!--自检员-->
  174. <ws-form-item label="质检员" span="1" prop="qualityInspector">
  175. <ws-input
  176. v-model="dataList.warehouseInOutDetail.qualityInspector"
  177. placeholder="请输入质检员姓名"
  178. maxlength="120"
  179. size="small"
  180. />
  181. </ws-form-item>
  182. </div>
  183. <div class="neifor">
  184. <ws-info-table>
  185. <!--水分(%)<=-->
  186. <ws-form-item label="水分(%)<=" span="1" prop="waterContent">
  187. <ws-input
  188. v-model="dataList.warehouseInOutDetail.waterContent"
  189. placeholder="请输入水分占比"
  190. maxlength="120"
  191. size="small"
  192. />
  193. </ws-form-item>
  194. <!--杂质(%)<=-->
  195. <ws-form-item label="杂质(%)<=" span="1" prop="impurity">
  196. <ws-input
  197. v-model="dataList.warehouseInOutDetail.impurity"
  198. placeholder="请输入杂质占比"
  199. maxlength="120"
  200. size="small"
  201. />
  202. </ws-form-item>
  203. <!--容重(克/升)>=-->
  204. <ws-form-item label="容重(克/升)>=" span="1" prop="bulkDensity">
  205. <ws-input
  206. v-model="dataList.warehouseInOutDetail.bulkDensity"
  207. placeholder="请输入容重"
  208. maxlength="120"
  209. size="small"
  210. />
  211. </ws-form-item>
  212. <!--霉变粒(%)<=-->
  213. <ws-form-item label="霉变粒(%)<=" span="1" prop="mildewGrain">
  214. <ws-input
  215. v-model="dataList.warehouseInOutDetail.mildewGrain"
  216. placeholder="请输入霉变粒占比"
  217. maxlength="120"
  218. size="small"
  219. />
  220. </ws-form-item>
  221. <!--热损伤(%)<=-->
  222. <ws-form-item label="热损伤(%)<=" span="1" prop="jiaorenli">
  223. <ws-input
  224. v-model="dataList.warehouseInOutDetail.jiaorenli"
  225. placeholder="请输入热损伤占比"
  226. maxlength="120"
  227. size="small"
  228. />
  229. </ws-form-item>
  230. <!--不完整粒(%)<=-->
  231. <ws-form-item label="不完整粒(%)<=" span="1" prop="imperfectGrain">
  232. <ws-input
  233. v-model="dataList.warehouseInOutDetail.imperfectGrain"
  234. placeholder="请输入不完整粒占比"
  235. maxlength="120"
  236. size="small"
  237. />
  238. </ws-form-item>
  239. </ws-info-table>
  240. </div>
  241. <div style="text-align: right; padding: 10px">
  242. <el-button
  243. class="bg-bottom-up"
  244. type="primary"
  245. size="small"
  246. @click="temporaryStorage()"
  247. >暂存</el-button
  248. >
  249. <el-button
  250. class="bg-bottom-up"
  251. type="primary"
  252. size="small"
  253. @click="submit()"
  254. >提交</el-button
  255. >
  256. </div>
  257. </ws-form>
  258. </div>
  259. </template>
  260. <script>
  261. import { pullDown, addstorageputList } from '@/model/warehouse/index'
  262. import { downloadFile } from '@/utils/batchDown'
  263. import Pagination from '@/components/Pagination'
  264. import { mapActions, mapGetters, mapState } from 'vuex'
  265. import WsUpload from '@/components/WsUpload'
  266. // import { dayjs, fmoney, EventBus } from 'base-core-lib'
  267. import { dayjs, EventBus } from 'base-core-lib'
  268. export default {
  269. name: 'viewSpareMoney',
  270. components: {
  271. WsUpload,
  272. Pagination,
  273. },
  274. watch: {
  275. // vesselId(val) {
  276. // this.getList()
  277. // },
  278. isShow(val) {
  279. this.showType = val
  280. },
  281. },
  282. computed:{
  283. ...mapGetters([
  284.       'deptBudgetList',
  285.     ]),
  286. },
  287. data() {
  288. return {
  289. //弹出框
  290. dialogViewSpareMoney: false,
  291. dialogApproveFormVisible: false,
  292. // 船舶类型
  293. monetaryKey: null,
  294. // 表格显示数据
  295. tableDate: [],
  296. // 是否显示
  297. showType: true,
  298. // 年
  299. year: '',
  300. deptBudgetTotal: 0,
  301. currentPage: 1,
  302. pageSize: 10,
  303. searchType: 1,
  304. searchKeyWord: '',
  305. contractType: 2,
  306. startDate: null,
  307. endDate: null,
  308. goodnameList: {},
  309. // 提交类型
  310. submitType: true,
  311. storageType: [],
  312. appendixIdsAdd: '',
  313. uploadSuccess: {},
  314. onChange: {},
  315. deptBudgetList1: [],
  316. gradeList: [],
  317. rules: {
  318. netWeight: [
  319. {
  320. required: true,
  321. type: 'number',
  322. message: '请输入活动名称',
  323. trigger: 'blur',
  324. },
  325. ],
  326. },
  327. size: 10,
  328. compId: sessionStorage.getItem('ws-pf_compId'),
  329. deptCircularPage: {},
  330. packtypeList: {},
  331. date: {
  332. year: dayjs().format('YYYY'),
  333. month: dayjs().format('MM'),
  334. },
  335. contractList: [],
  336. dataList: {
  337. id:'',
  338. grossWeight:'',
  339. contractNo:'',
  340. tare:'',
  341. netWeight:'',
  342. grade:'',
  343. agent:'',
  344. carNo:'',
  345. inOutDate:'',
  346. inOutType:'',
  347. goodsName:'',
  348. warehouseInOutDetail: {},
  349. },
  350. historyList: [],
  351. pickerBeginDateBefore: {
  352. disabledDate: (time) => {
  353. return time.getTime() > Date.now()
  354. },
  355. },
  356. accessoryTFs: false,
  357. }
  358. },
  359. activated() {
  360. this.deptBudgetList1.warehouseName = this.$route.query.warehouseName
  361. this.deptBudgetList1.binNumber = this.$route.query.binNumber
  362. this.getList()
  363. this.dataList.id=this.$route.query.id
  364. this.dataList.grossWeight=this.$route.query.grossWeight
  365. this.dataList.contractNo = this.$route.query.contractNo
  366. this.dataList.baseId = this.$route.query.baseId
  367. this.dataList.positionId = this.$route.query.positionId
  368. this.dataList.warehouseName = this.$route.query.warehouseName
  369. this.dataList.binNumber = this.$route.query.binNumber
  370. this.dataList.tare = this.$route.query.tare
  371. this.dataList.netWeight = this.$route.query.netWeight
  372. this.dataList.grade = this.$route.query.grade
  373. this.dataList.agent = this.$route.query.agent
  374. this.dataList.carNo = this.$route.query.carNo
  375. this.dataList.inOutDate = this.$route.query.inOutDate
  376. this.dataList.contractNo = this.$route.query.contractNo
  377. this.dataList.inOutType = this.$route.query.inOutType
  378. this.dataList.compId = this.$route.query.compId
  379. this.dataList.goodsName = this.$route.query.goodsName
  380. this.dataList.goodsNameKey = Number(this.$route.goodsNameKey)
  381. this.dataList.inOutFlag = this.$route.inOutFlag
  382. this.dataList.inOutTypeKey = Number(this.$route.inOutTypeKey)
  383. this.dataList.statusFlag = this.$route.statusFlag
  384. console.log(this.dataList)
  385. },
  386. methods: {
  387. //返回按钮
  388. revert() {
  389. this.$router.go(-1)
  390. },
  391. //暂存按钮
  392. temporaryStorage() {
  393. this.$confirm(`暂存后可在待完成页面查看,确定暂存`, {
  394. cancelButtonText: '取消',
  395. confirmButtonText: '确定',
  396. type: 'warning',
  397. })
  398. .then(() => {
  399. this.$refs.dataList.validate((valid) => {
  400. if (valid) {
  401. this.dataList.compId = sessionStorage.getItem(
  402. 'ws-pf_compId'
  403. )
  404. this.dataList.inOutFlag = 1
  405. this.dataList.statusFlag = 1
  406. addstorageputList(this.dataList)
  407. .toPromise()
  408. .then((response) => {
  409. this.$message.success('暂存成功')
  410. this.$router.push({ path: 'warehouseManagementList' })
  411. })
  412. } else {
  413. EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
  414. return false
  415. }
  416. })
  417. })
  418. .catch(() => {
  419. return false
  420. })
  421. },
  422. //提交按钮
  423. submit() {
  424. console.log(123456)
  425. this.$confirm(`确定提交入库信息`, {
  426. cancelButtonText: '取消',
  427. confirmButtonText: '确定',
  428. type: 'warning',
  429. })
  430. .then(() => {
  431. this.$refs.dataList.validate((valid) => {
  432. if (valid) {
  433. this.dataList.compId = sessionStorage.getItem(
  434. 'ws-pf_compId'
  435. )
  436. this.dataList.inOutFlag = 1
  437. this.dataList.statusFlag = 3
  438. addstorageputList(this.dataList)
  439. .toPromise()
  440. .then((response) => {
  441. this.$message.success('添加成功')
  442. this.$router.push({ path: 'warehouseManagementList' })
  443. })
  444. } else {
  445. EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
  446. return false
  447. }
  448. })
  449. })
  450. .catch(() => {
  451. return false
  452. })
  453. },
  454. //暂存按钮
  455. returnWarehouse() {
  456. this.$refs.dataList.validate((valid) => {
  457. if (valid) {
  458. this.dataList.compId = sessionStorage.getItem('ws-pf_compId')
  459. this.dataList.statusFlag = 1
  460. addstorageputList(this.dataList)
  461. .toPromise()
  462. .then((response) => {
  463. this.$message.success('添加成功')
  464. this.$router.push({ path: 'warehouseManagementList' })
  465. })
  466. } else {
  467. EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
  468. return false
  469. }
  470. })
  471. },
  472. tarechange(e) {
  473. if (this.dataList.grossWeight && this.dataList.tare) {
  474. this.dataList.netWeight = Number(
  475. this.dataList.grossWeight - this.dataList.tare
  476. )
  477. }
  478. },
  479. grossWeightchange(e) {
  480. if (this.dataList.grossWeight && this.dataList.tare) {
  481. this.dataList.netWeight = Number(
  482. this.dataList.grossWeight - this.dataList.tare
  483. )
  484. }
  485. },
  486. selectgoodsName(e) {
  487. for (var i = 0; i < this.goodnameList.length; i++) {
  488. if (this.goodnameList[i].constValue == e) {
  489. this.dataList.goodsNameKey = this.goodnameList[i].constKey
  490. }
  491. }
  492. },
  493. selectpackingMethod(e) {
  494. for (var i = 0; i < this.packtypeList.length; i++) {
  495. if (this.packtypeList[i].constValue == e) {
  496. this.dataList.packingMethodKey = this.packtypeList[i].constKey
  497. }
  498. }
  499. },
  500. selectstorageType(e) {
  501. for (var i = 0; i < this.storageType.length; i++) {
  502. if (this.storageType[i].constValue == e) {
  503. this.dataList.inOutTypeKey = this.storageType[i].constKey
  504. }
  505. }
  506. },
  507. handleClose() {
  508. this.accessoryTFs = false
  509. },
  510. handleSizeChange(val) {
  511. console.log(`每页 ${val} 条`)
  512. this.pageSize = val
  513. this.getList()
  514. },
  515. handleCurrentChange(val) {
  516. this.currentPage = val
  517. console.log(`当前页: ${val}`)
  518. this.getList()
  519. },
  520. getList() {
  521. // 货名
  522. pullDown({ constId: 'CON2' })
  523. .toPromise()
  524. .then((response) => {
  525. this.goodnameList = response
  526. })
  527. // 品级
  528. pullDown({ constId: 'CON3' })
  529. .toPromise()
  530. .then((response) => {
  531. this.gradeList = response
  532. })
  533. // 类型
  534. pullDown({ constId: 'CON5' })
  535. .toPromise()
  536. .then((response) => {
  537. this.storageType = response
  538. })
  539. },
  540. selecttaskType(e) {
  541. for (var i = 0; i < this.taskTypeList.length; i++) {
  542. if (this.taskTypeList[i].value == e) {
  543. this.searchType = this.taskTypeList[i].type
  544. }
  545. }
  546. },
  547. fujian(row) {
  548. if (
  549. row.receiveAttachmentPath === null ||
  550. row.receiveAttachmentPath === ''
  551. ) {
  552. EventBus.$emit(
  553. 'warning',
  554. this.$t('system.noticeCircular.NoInformation')
  555. )
  556. } else {
  557. this.accessoryTFs = true
  558. }
  559. this.appendixIdss = row.receiveAttachmentPath
  560. },
  561. handleExamine(row) {
  562. this.$router.push({
  563. name: 'salesContractExamine',
  564. query: { id: row.id },
  565. })
  566. },
  567. // 关闭 dialog时 处理文件url 初始化upload组件
  568. handleCloe() {
  569. this.dialogViewSpareMoney = false
  570. },
  571. history(row) {
  572. console.log(row)
  573. billoperatehis({ id: row.id })
  574. .toPromise()
  575. .then((response) => {
  576. this.historyList = response
  577. })
  578. },
  579. async exportlist() {
  580. const { data } = await export1(
  581. {
  582. compId: sessionStorage.getItem('ws-pf_compId'),
  583. contractType: this.contractType,
  584. currentPage: this.currentPage,
  585. pageSize: this.pageSize,
  586. searchType: this.searchType,
  587. searchKeyWord: this.searchKeyWord,
  588. startDate: this.startDate,
  589. endDate: this.endDate,
  590. },
  591. {},
  592. { responseType: 'blob' }
  593. ).toPromise()
  594. downloadFile({
  595. res: data,
  596. fileName: `${
  597. this.date.year + (this.date.month ? `-${this.date.month}` : '')
  598. }_采购合同`,
  599. type: 'xls',
  600. })
  601. },
  602. // deletecontract(){},
  603. //删除
  604. approve() {},
  605. listQuery() {},
  606. total() {},
  607. clearfiltQuery() {},
  608. selectCrtDuty() {},
  609. },
  610. }
  611. </script>
  612. <style lang="scss" scoped>
  613. /deep/.basicInformation {
  614. .ws-info-table {
  615. border: none;
  616. }
  617. .el-form-item {
  618. width: 33.3333%;
  619. border: none;
  620. .el-form-item__label {
  621. background: transparent;
  622. border: none;
  623. }
  624. .el-form-item__content {
  625. border: none;
  626. }
  627. }
  628. }
  629. .title {
  630. position: relative;
  631. padding-left: 10px;
  632. }
  633. .title::before {
  634. content: '';
  635. display: inline-block;
  636. width: 5px;
  637. height: 30px;
  638. background: #5473e8;
  639. position: absolute;
  640. left: 0;
  641. }
  642. .el-form {
  643. padding: 0 10%;
  644. }
  645. .el-button--primary {
  646. background-color: #5878e8;
  647. border-color: #5878e8;
  648. }
  649. .el-col {
  650. background: #f6f7fc;
  651. }
  652. .bg-right {
  653. text-align: right;
  654. padding: 16px 20px;
  655. }
  656. .center {
  657. position: relative;
  658. top: 50px;
  659. width: 40%;
  660. height: 2000px;
  661. margin: 0 auto;
  662. }
  663. /deep/.el-form-item__label {
  664. width: 160px;
  665. }
  666. //选填
  667. /deep/.el-form-item {
  668. width: 50%;
  669. }
  670. .container {
  671. overflow: scroll;
  672. height: 120vh;
  673. }
  674. /deep/.ws-info-table .el-form-item .el-form-item__label {
  675. text-align: center;
  676. }
  677. .deliverydate {
  678. display: inline-block;
  679. width: 10%;
  680. }
  681. .center {
  682. margin-top: -60px;
  683. width: 80%;
  684. }
  685. //仓位
  686. .position {
  687. width: 52px;
  688. height: 20px;
  689. background: #afb5cb;
  690. border-radius: 2px;
  691. font-size: 12px;
  692. font-family: PingFangSC-Medium, PingFang SC;
  693. color: #ffffff;
  694. line-height: 20px;
  695. }
  696. //表格文字
  697. /deep/.ws-info-table .el-form-item .el-form-item__label {
  698. text-align: left;
  699. font-size: 14px;
  700. font-family: PingFangSC-Regular, PingFang SC;
  701. font-weight: 400;
  702. color: #8890b1;
  703. line-height: 16px;
  704. }
  705. //质检员
  706. .inspector .el-form-item__content {
  707. text-align: left;
  708. margin-left: 0px;
  709. }
  710. .small-title {
  711. position: relative;
  712. padding: 10px;
  713. font-weight: 600;
  714. }
  715. .small-title::before {
  716. position: absolute;
  717. content: '';
  718. display: block;
  719. background: #5473e8;
  720. width: 4px;
  721. height: 14px;
  722. left: 0px;
  723. top: 13px;
  724. }
  725. //下面列表
  726. .neifor {
  727. width: 80%;
  728. background-color: #f6f7fc;
  729. }
  730. /deep/.neifor .ws-info-table .el-form-item .el-form-item__label {
  731. width: 35%;
  732. text-align: center;
  733. }
  734. /deep/.neifor .ws-info-table .el-form-item .el-form-item__content {
  735. width: 60%;
  736. background-color: #f6f7fc;
  737. }
  738. /deep/.neifor .el-input--small .el-input__inner {
  739. width: 120%;
  740. }
  741. .el-input__inner {
  742. width: 150px;
  743. }
  744. </style>