detailsPage.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795
  1. <template>
  2. <div class="borderless">
  3. <div class="customer-head">
  4. <div class="customer-back">
  5. <el-button type="danger" style="border: none;background: none;color: red" icon="el-icon-arrow-left"
  6. @click="backToList">返回列表
  7. </el-button>
  8. </div>
  9. <el-button
  10. class="el-button--small-yh add-customer-btn"
  11. type="primary"
  12. :disabled="disabled"
  13. @click="editCustomer"
  14. >{{form.id?'确认修改':'确认新增'}}
  15. </el-button>
  16. </div>
  17. <div style="margin-top: 60px">
  18. <el-form :model="form" ref="form" label-width="130px">
  19. <containerTitle title="基础信息"></containerTitle>
  20. <basic-container style="margin-bottom: 10px">
  21. <el-row>
  22. <el-col v-for="(item, index) in basicData.column" :span="item.span?item.span:8" :key="index">
  23. <el-form-item :label="item.label" :prop="item.prop" :rules="item.rules">
  24. <el-date-picker v-if="item.type === 'datetime'" style="width: 100%;" v-model="form[item.prop]" size="small" type="datetime" placeholder="选择日期" value-format="yyyy-MM-dd HH:mm:ss"/>
  25. <el-select v-else-if="item.type === 'select'" style="width: 100%" v-model="form[item.prop]" size="small" placeholder="请选择" clearable filterable>
  26. <el-option
  27. v-for="(data, index) in item.dicData"
  28. :key="index"
  29. :label="data.label"
  30. :value="data.value"
  31. ></el-option>
  32. </el-select>
  33. <el-input type="age" v-else v-model="form[item.prop]" size="small" autocomplete="off" placeholder="请输入"></el-input>
  34. </el-form-item>
  35. </el-col>
  36. </el-row>
  37. </basic-container>
  38. <!-- 商品明细-->
  39. <containerTitle title="商品明细"></containerTitle>
  40. <basic-container style="margin-bottom: 10px">
  41. <avue-crud
  42. :option="importInventory"
  43. v-model="importInventoryForm"
  44. :data="importInventoryData"
  45. ref="importInventory"
  46. @click="openDetailed"
  47. >
  48. <template slot="menuLeft" slot-scope="{size}">
  49. <el-button type="primary"
  50. icon="el-icon-plus"
  51. size="small"
  52. @click="newDetails"
  53. >新增明细</el-button>
  54. <el-button type="warning"
  55. icon="el-icon-download"
  56. size="small"
  57. >导 出</el-button>
  58. <el-button type="info"
  59. icon="el-icon-printer"
  60. size="small"
  61. >打 印</el-button>
  62. </template>
  63. <template slot-scope="{row,index}" slot="menu">
  64. <el-button
  65. type="text"
  66. size="small"
  67. @click="sendHandle"
  68. >发货</el-button>
  69. </template>
  70. </avue-crud>
  71. </basic-container>
  72. <!-- 其他费用-->
  73. <containerTitle title="其他费用"></containerTitle>
  74. <basic-container style="margin-bottom: 40px">
  75. <avue-crud
  76. :option="advantageProject"
  77. v-model="advantageProjectForm"
  78. :data="advantageProjectData"
  79. ref="crudProject"
  80. @row-save="rowSaveProject"
  81. @row-update="rowUpdateProject"
  82. @row-del="rowDelProject"
  83. >
  84. <template slot="code" slot-scope="{row,index}">
  85. <span style="float: left;padding-top: 2px">{{row.code}}</span><el-button type="text" size="mini" style="float: right" @click="choice(row)">选择</el-button>
  86. </template>
  87. <template slot-scope="{row,index}" slot="menu">
  88. <el-button
  89. type="text"
  90. size="small"
  91. @click="rowCellTwo(row,index)"
  92. >{{row.$cellEdit?'保存':'修改'}}</el-button>
  93. </template>
  94. <template slot="menuLeft" slot-scope="{size}">
  95. <el-button type="primary"
  96. icon="el-icon-plus"
  97. size="small"
  98. @click="costIncrease"
  99. >新增</el-button>
  100. </template>
  101. </avue-crud>
  102. </basic-container>
  103. <!-- 合同上传-->
  104. <containerTitle title="合同附件"></containerTitle>
  105. <basic-container style="margin-bottom: 40px">
  106. <avue-crud
  107. :option="uploadList"
  108. v-model="bankOfDepositForm"
  109. :data="bankOfDepositData"
  110. @row-save="rowSaveBankOfDeposit"
  111. @row-update="rowUpdateBankOfDeposit"
  112. @row-del="rowDelBankOfDeposit"
  113. ></avue-crud>
  114. </basic-container>
  115. </el-form>
  116. </div>
  117. <el-dialog
  118. title="导入商品"
  119. append-to-body
  120. class="el-dialogDeep"
  121. :visible.sync="dialogVisible"
  122. width="80%"
  123. :close-on-click-modal="false"
  124. :destroy-on-close="true"
  125. :close-on-press-escape="false">
  126. <el-row style="height: 0;">
  127. <el-col :span="5">
  128. <div>
  129. <el-scrollbar>
  130. <basic-container>
  131. <avue-tree :option="treeOption" :data="treeData" @node-click="nodeClick"/>
  132. </basic-container>
  133. </el-scrollbar>
  134. </div>
  135. </el-col>
  136. <el-col :span="19">
  137. <basic-container>
  138. <avue-crud :option="optionTwo"
  139. :table-loading="loading"
  140. :data="data"
  141. ref="crud"
  142. @refresh-change="refreshChange"
  143. @selection-change="selectionChange"
  144. :page.sync="page"
  145. @on-load="onLoad"></avue-crud>
  146. </basic-container>
  147. </el-col>
  148. </el-row>
  149. <span slot="footer" class="dialog-footer">
  150. <el-button @click="dialogVisible = false">取 消</el-button>
  151. <el-button type="primary" @click="importGoods" v-if="commodityData !== true">导入</el-button>
  152. <el-button type="primary" @click="importChoice" v-if="commodityData === true"
  153. :disabled="tableData.length !== 1">导入</el-button>
  154. </span>
  155. </el-dialog>
  156. <!-- 导入其他费用-->
  157. <el-dialog
  158. title="导入费用"
  159. append-to-body
  160. class="el-dialogDeep"
  161. :visible.sync="dialogCost"
  162. width="80%"
  163. :close-on-click-modal="false"
  164. :destroy-on-close="true"
  165. :close-on-press-escape="false">
  166. <el-row style="height: 0;">
  167. <el-col :span="5">
  168. <div>
  169. <el-scrollbar>
  170. <basic-container>
  171. <avue-tree :option="treeOptionCost" :data="treeData" @node-click="nodeClickCost"/>
  172. </basic-container>
  173. </el-scrollbar>
  174. </div>
  175. </el-col>
  176. <el-col :span="19">
  177. <basic-container>
  178. <avue-crud :option="optionTwoCost"
  179. :table-loading="loadingCost"
  180. :data="dataCost"
  181. ref="crud"
  182. @refresh-change="refreshChangeCost"
  183. @selection-change="selectionChangeCost"
  184. :page.sync="pageCost"
  185. @on-load="onLoadCost">
  186. </avue-crud>
  187. </basic-container>
  188. </el-col>
  189. </el-row>
  190. <span slot="footer" class="dialog-footer">
  191. <el-button @click="dialogCost = false">取 消</el-button>
  192. <el-button type="primary" @click="importCost" v-if="choiceData !== true">导入</el-button>
  193. <el-button type="primary" @click="choiceCost" v-if="choiceData === true" :disabled="tableDataCost.length !== 1">导入</el-button>
  194. </span>
  195. </el-dialog>
  196. </div>
  197. </template>
  198. <script>
  199. import importInventory from './config/importInventory.json';
  200. import uploadList from './config/uploadList.json';
  201. import advantageProject from "./config/advantageProject.json";
  202. import optionTwoCost from "./config/mainListCost.json";
  203. import {getDeptLazyTree,getDeptLazyTreeTwo, customerList} from "@/api/basicData/basicFeesDesc";
  204. import commodity from "./config/commodity.json"
  205. export default {
  206. name: "detailsPage",
  207. data() {
  208. return {
  209. disabled: false,
  210. dialogCommodity: false,
  211. dialogVisible: false,
  212. form: {},
  213. // 基础信息
  214. basicData: {
  215. column: [
  216. {
  217. label: '系统号',
  218. prop: 'sysNo',
  219. rules: [
  220. {
  221. required: false,
  222. message: ' ',
  223. trigger: 'blur'
  224. }
  225. ]
  226. }, {
  227. label: '订单号',
  228. prop: 'orderNo',
  229. rules: [
  230. {
  231. required: true,
  232. message: ' ',
  233. trigger: 'blur'
  234. }
  235. ]
  236. }, {
  237. label: '订单日期',
  238. prop: 'businessDate',
  239. type:'datetime',
  240. data: [],
  241. rules: [
  242. {
  243. required: true,
  244. message: ' ',
  245. trigger: 'blur'
  246. }
  247. ]
  248. }, {
  249. label: '业务员',
  250. prop: 'salesName',
  251. type:'select',
  252. dicData: [],
  253. rules: [
  254. {
  255. required: true,
  256. message: ' ',
  257. trigger: 'blur'
  258. }
  259. ]
  260. }, {
  261. label: '销售公司',
  262. prop: 'belongToCorpId',
  263. type:'select',
  264. dicData: [],
  265. rules: [
  266. {
  267. required: true,
  268. message: ' ',
  269. trigger: 'blur'
  270. }
  271. ]
  272. }, {
  273. label: '工厂/贸易商名称',
  274. prop: 'corpId',
  275. type:'select',
  276. dicData: [],
  277. rules: [
  278. {
  279. required: true,
  280. message: ' ',
  281. trigger: 'blur'
  282. }
  283. ]
  284. }, {
  285. label: '提成标准',
  286. prop: 'commissionRate',
  287. rules: [
  288. {
  289. required: true,
  290. message: ' ',
  291. trigger: 'blur'
  292. }
  293. ]
  294. }, {
  295. label: '发票号(PI)',
  296. prop: 'proformaInvoice',
  297. rules: [
  298. {
  299. required: true,
  300. message: ' ',
  301. trigger: 'blur'
  302. }
  303. ]
  304. }, {
  305. label: '起运港',
  306. prop: 'portOfLoad',
  307. rules: [
  308. {
  309. required: true,
  310. message: ' ',
  311. trigger: 'blur'
  312. }
  313. ]
  314. },
  315. {
  316. label: '目的港',
  317. prop: 'portOfDestination',
  318. rules: [
  319. {
  320. required: true,
  321. message: ' ',
  322. trigger: 'blur'
  323. }
  324. ]
  325. },
  326. {
  327. label: '包装要求',
  328. prop: 'packageRemarks',
  329. rules: [
  330. {
  331. required: true,
  332. message: ' ',
  333. trigger: 'blur'
  334. }
  335. ]
  336. },
  337. {
  338. label: '计划交期',
  339. prop: 'plannedDeliveryDate',
  340. type: 'datetime',
  341. rules: [
  342. {
  343. required: true,
  344. message: ' ',
  345. trigger: 'blur'
  346. }
  347. ]
  348. },
  349. {
  350. label: '客户首付日期',
  351. prop: 'b5',
  352. type: 'datetime',
  353. rules: [
  354. {
  355. required: true,
  356. message: ' ',
  357. trigger: 'blur'
  358. }
  359. ]
  360. },
  361. {
  362. label: '首付比例',
  363. prop: 'b6',
  364. rules: [
  365. {
  366. required: true,
  367. message: ' ',
  368. trigger: 'blur'
  369. }
  370. ]
  371. },
  372. {
  373. label: '首付金额',
  374. prop: 'advancePayment',
  375. rules: [
  376. {
  377. required: true,
  378. message: ' ',
  379. trigger: 'blur'
  380. }
  381. ]
  382. },
  383. {
  384. label: '销售单价',
  385. prop: 'salesPrice',
  386. data: [],
  387. rules: [
  388. {
  389. required: true,
  390. message: ' ',
  391. trigger: 'blur'
  392. }
  393. ]
  394. }, {
  395. label: '发票重量',
  396. prop: 'invoiceWeight',
  397. data: [],
  398. rules: [
  399. {
  400. required: true,
  401. message: ' ',
  402. trigger: 'blur'
  403. }
  404. ]
  405. }, {
  406. label: '码单重量',
  407. prop: 'billWeight',
  408. rules: [
  409. {
  410. required: true,
  411. message: ' ',
  412. trigger: 'blur'
  413. }
  414. ]
  415. }, {
  416. label: '币别',
  417. prop: 'currency',
  418. rules: [
  419. {
  420. required: true,
  421. message: ' ',
  422. trigger: 'blur'
  423. }
  424. ]
  425. }, {
  426. label: '汇率',
  427. prop: 'exChangeRate',
  428. rules: [
  429. {
  430. required: true,
  431. message: ' ',
  432. trigger: 'blur'
  433. }
  434. ]
  435. },
  436. // {
  437. // label: '预收金额',
  438. // prop: 'a14',
  439. // rules: [
  440. // {
  441. // required: true,
  442. // message: ' ',
  443. // trigger: 'blur'
  444. // }
  445. // ]
  446. // },
  447. {
  448. label: '合同金额',
  449. prop: 'orderAmount',
  450. rules: [
  451. {
  452. required: true,
  453. message: ' ',
  454. trigger: 'blur'
  455. }
  456. ]
  457. }, {
  458. label: '收款金额',
  459. prop: 'settlmentAmount',
  460. rules: [
  461. {
  462. required: true,
  463. message: ' ',
  464. trigger: 'blur'
  465. }
  466. ]
  467. }, {
  468. label: "备注",
  469. span: 24,
  470. prop: "orderRemark",
  471. mock: {
  472. type: 'county'
  473. }
  474. }
  475. ],
  476. },
  477. // 导入库存配置
  478. importInventory: importInventory,
  479. importInventoryForm: {},
  480. importInventoryData: [],
  481. dialogStock: false,
  482. // 其他费用
  483. advantageProject: advantageProject,
  484. advantageProjectData: [],
  485. advantageProjectForm: {},
  486. dialogCost: false,
  487. choiceData: false,
  488. treeOptionCost:{
  489. nodeKey: 'id',
  490. lazy: true,
  491. treeLoad: function (node, resolve) {
  492. const parentId = (node.level === 0) ? 0 : node.data.id;
  493. getDeptLazyTree(parentId).then(res => {
  494. resolve(res.data.data.map(item => {
  495. return {
  496. ...item,
  497. leaf: !item.hasChildren
  498. }
  499. }))
  500. });
  501. },
  502. addBtn: false,
  503. menu: false,
  504. size: 'small',
  505. props: {
  506. labelText: '标题',
  507. label: 'title',
  508. value: 'value',
  509. children: 'children'
  510. }
  511. },
  512. treeOption: {
  513. nodeKey: 'id',
  514. lazy: true,
  515. treeLoad: function (node, resolve) {
  516. const parentId = (node.level === 0) ? 0 : node.data.id;
  517. getDeptLazyTreeTwo(parentId).then(res => {
  518. resolve(res.data.data.map(item => {
  519. return {
  520. ...item,
  521. leaf: !item.hasChildren
  522. }
  523. }))
  524. });
  525. },
  526. addBtn: false,
  527. menu: false,
  528. size: 'small',
  529. props: {
  530. labelText: '标题',
  531. label: 'title',
  532. value: 'value',
  533. children: 'children'
  534. }
  535. },
  536. // 导入商品配置
  537. optionGoods: [],
  538. loadingGoods: false,
  539. dataGoods:[],
  540. pageGoods:{
  541. pageSize: 10,
  542. currentPage: 1,
  543. total: 0
  544. },
  545. // 导入其他费用配置
  546. optionTwoCost: optionTwoCost,
  547. loadingCost: false,
  548. dataCost:[],
  549. pageCost:{
  550. pageSize: 10,
  551. currentPage: 1,
  552. total: 0
  553. },
  554. tableDataCost: [],
  555. treeDeptIdCost: '',
  556. choiceIndex: '',
  557. // 合同上传数据
  558. uploadList: uploadList,
  559. // 合同数据
  560. bankOfDepositData: [],
  561. bankOfDepositForm: {},
  562. optionTwo: commodity,
  563. loading: false,
  564. data: [],
  565. }
  566. },
  567. created() {
  568. if (this.$route.query.id) {
  569. }
  570. },
  571. methods: {
  572. editCustomer() {
  573. this.$refs["form"].validate((valid) => {
  574. if (valid) {
  575. this.backToList()
  576. } else {
  577. return false;
  578. }
  579. });
  580. },
  581. //商品明细导入
  582. newDetails(){
  583. this.dialogCommodity = !this.dialogCommodity
  584. },
  585. // 导入库存新增明细
  586. openDetailed() {},
  587. //其他费用编辑
  588. rowCellTwo(row, index) {
  589. console.log(row)
  590. this.$refs.crudProject.rowCell(row, index)
  591. },
  592. //其他费用新增触发
  593. costIncrease(){
  594. this.dialogCost = !this.dialogCost
  595. this.choiceData = false
  596. },
  597. //费用查询
  598. onLoadCost(page, params = {}) {
  599. this.loadingCost = true;
  600. let queryParams = Object.assign({}, params, {pageSize: page.pageSize, pageNum: page.currentPage,parentId:0,feesTypeId:this.treeDeptIdCost})
  601. customerList(queryParams).then(res => {
  602. console.log(res)
  603. const data = res.data.data;
  604. this.pageCost.total = data.total;
  605. this.dataCost = data.records;
  606. this.loadingCost = false;
  607. });
  608. },
  609. //商品列表查询
  610. onLoad(page, params = {}) {
  611. this.loading = true;
  612. getList(page.currentPage, page.pageSize, Object.assign(params, this.query), this.treeDeptId).then(res => {
  613. console.log(res)
  614. const data = res.data.data;
  615. this.page.total = data.total;
  616. this.data = data.records;
  617. this.loading = false;
  618. });
  619. },
  620. //点击费用明细选择触发
  621. choice(row){
  622. this.dialogCost = !this.dialogCost
  623. this.choiceData = true
  624. this.choiceIndex = row.$index
  625. },
  626. nodeClickCost(data){
  627. this.treeDeptIdCost = data.id;
  628. this.pageCost.currentPage = 1;
  629. this.onLoadCost(this.pageCost);
  630. },
  631. //刷新触发
  632. refreshChange() {
  633. this.treeDeptId = '';
  634. this.page.currentPage = 1;
  635. this.onLoad(this.page);
  636. },
  637. //费用刷新触发
  638. refreshChangeCost() {
  639. this.treeDeptIdCost = '';
  640. this.pageCost.currentPage = 1;
  641. this.onLoadCost(this.pageCost);
  642. },
  643. //选中触发
  644. selectionChange(list) {
  645. this.tableData = list
  646. },
  647. //费用选中触发
  648. selectionChangeCost(list){
  649. this.tableDataCost = list
  650. },
  651. //费用导入触发
  652. importCost(){
  653. // this.advantageProjectForm = this.advantageProjectForm.concat(this.tableDataCost)
  654. if (this.tableDataCost.length>0){
  655. for(let item in this.tableDataCost){
  656. console.log(this.tableDataCost[item])
  657. this.tableDataCost[item].itemId = this.tableDataCost[item].id
  658. this.tableDataCost[item].feeName = this.tableDataCost[item].cname
  659. delete this.tableDataCost[item].id
  660. this.$refs.crudProject.rowCellAdd(this.tableDataCost[item]);
  661. this.$refs.crudProject.rowCell(this.tableDataCost[item], this.advantageProjectForm.length-1)
  662. }
  663. }
  664. this.tableDataCost = []
  665. this.dialogCost = false
  666. },
  667. //费用编辑导入触发
  668. choiceCost(){
  669. if (this.tableDataCost.length === 1){
  670. this.advantageProjectData[this.choiceIndex].feeName = this.tableDataCost[0].cname
  671. this.advantageProjectData[this.choiceIndex].itemId = this.tableDataCost[0].id
  672. this.advantageProjectData[this.choiceIndex].code = this.tableDataCost[0].code
  673. }
  674. this.dialogCost = !this.dialogCost
  675. this.choiceData = false
  676. },
  677. //新增附件上传保存触发
  678. rowSaveBankOfDeposit(row, done, loading){
  679. this.bankOfDepositData.push(row)
  680. done()
  681. },
  682. //修改附件上传触发
  683. rowUpdateBankOfDeposit(row, index, done, loading) {
  684. done(row);
  685. },
  686. //删除附件上传触发
  687. rowDelBankOfDeposit(row, index, donerowDel) {
  688. this.$confirm("确定将选择数据删除?", {
  689. confirmButtonText: "确定",
  690. cancelButtonText: "取消",
  691. type: "warning"
  692. }).then(() => {
  693. if (row.id){
  694. corpsbank(row.id).then(res=>{
  695. this.$message({
  696. type: "success",
  697. message: "操作成功!"
  698. });
  699. this.bankOfDepositData.splice(index, 1);
  700. })
  701. }else {
  702. this.$message({
  703. type: "success",
  704. message: "操作成功!"
  705. });
  706. this.bankOfDepositData.splice(index, 1);
  707. }
  708. })
  709. },
  710. //新增明细保存触发
  711. rowSaveProject(row, done, loading){
  712. // this.advantageProjectData.push(row)
  713. done()
  714. },
  715. //修改明细触发
  716. rowUpdateProject(row, index, done, loading) {
  717. done(row);
  718. },
  719. //删除明细触发
  720. rowDelProject(row, index, donerowDel) {
  721. this.$confirm("确定将选择数据删除?", {
  722. confirmButtonText: "确定",
  723. cancelButtonText: "取消",
  724. type: "warning"
  725. }).then(() => {
  726. if (row.id){
  727. // corpsitem(row.id).then(res=>{
  728. // this.$message({
  729. // type: "success",
  730. // message: "操作成功!"
  731. // });
  732. // this.detailedData.splice(index, 1);
  733. // })
  734. }else {
  735. this.$message({
  736. type: "success",
  737. message: "操作成功!"
  738. });
  739. this.advantageProjectData.splice(index, 1);
  740. }
  741. })
  742. },
  743. // 发货
  744. sendHandle() {
  745. this.$message.success('发货成功')
  746. },
  747. backToList() {
  748. this.$router.$avueRouter.closeTag();
  749. this.$router.push({
  750. path: '/salesManagement/salesContract/index',
  751. query: {}
  752. });
  753. },
  754. },
  755. }
  756. </script>
  757. <style scoped lang="scss">
  758. .customer-head {
  759. position: fixed;
  760. top: 105px;
  761. width: 100%;
  762. margin-left: -10px;
  763. height: 62px;
  764. background: #ffffff;
  765. box-shadow: 0 4px 12px 0px rgba(232, 232, 235, 1);
  766. z-index: 999;
  767. /* display: flex;
  768. justify-content: left; */
  769. }
  770. .customer-back {
  771. cursor: pointer;
  772. line-height: 62px;
  773. font-size: 16px;
  774. color: #323233;
  775. font-weight: 400;
  776. }
  777. .add-customer-btn {
  778. position: fixed;
  779. right: 36px;
  780. top: 115px;
  781. }
  782. ::v-deep .el-form-item {
  783. margin-bottom: 0;
  784. }
  785. </style>