creditApply.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  1. <template>
  2. <div class="app-container">
  3. <el-form ref="form" :model="form" :rules="rules" :inline="true" style="margin-top: 10px" label-width="auto" >
  4. <el-row>
  5. <el-divider content-position="left" >应收账款</el-divider>
  6. <el-form-item style="margin-left: 100px">
  7. <el-button size="mini" type="primary" @click="openTicket">选择</el-button>
  8. <el-button size="mini" @click="deleteTicekt">清空全部</el-button>
  9. <el-form-item label="合计金额:">
  10. <span>{{checkTotalAmt}}</span>
  11. </el-form-item>
  12. <el-form-item label="金额大写:">
  13. <span>{{checkTotalBigAmt}}</span>
  14. </el-form-item>
  15. <el-table :data="ticketList" style="width: 1100px">
  16. <el-table-column label="账款名称" align="center" prop="zbiName" show-overflow-tooltip />
  17. <el-table-column label="应收企业" align="center" prop="receiveName"/>
  18. <el-table-column label="应付企业" align="center" prop="payName" />
  19. <el-table-column label="预计还款期" align="center" prop="zbiPayDate" show-overflow-tooltip />
  20. <el-table-column label="金额" align="center" prop="zbiAmount" />
  21. <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="250">
  22. <template slot-scope="scope">
  23. <el-button
  24. size="mini"
  25. type="text"
  26. icon="el-icon-delete"
  27. @click="handleDelete(scope.$index, ticketList)"
  28. >删除</el-button>
  29. </template>
  30. </el-table-column>
  31. </el-table>
  32. </el-form-item>
  33. <el-col :span="8">
  34. <el-form-item label="签发金额" prop="zfiAmount">
  35. <el-input v-model="form.zfiAmount" style="width: 200px" @input="getBigSmall" />
  36. </el-form-item>
  37. </el-col>
  38. <el-col :span="8">
  39. <el-form-item label="开立方" prop="openName">
  40. <el-input v-model="form.openName" style="width: 200px" disabled />
  41. </el-form-item>
  42. </el-col>
  43. <!-- <el-col :span="8">
  44. <el-form-item label="授信额度" prop="zfiSupplierQuotaId">
  45. <el-select
  46. style="width: 200px"
  47. v-model="form.zfiSupplierQuotaId"
  48. filterable
  49. clearable
  50. remote
  51. @change="change"
  52. >
  53. <el-option
  54. v-for="item in creditLineList"
  55. :key="item.value"
  56. :label="item.label"
  57. :value="item.value">
  58. </el-option>
  59. </el-select>
  60. </el-form-item>
  61. </el-col>
  62. <el-col :span="8">
  63. <span>可用额度:</span>
  64. <span>{{availableAmt}}</span>
  65. <br>
  66. <span>有效期:</span>
  67. <span>{{validityDate}}</span>
  68. </el-col> -->
  69. </el-row>
  70. <!-- <el-row>
  71. <el-col :span="8">
  72. <el-form-item label="接收方" prop="receiveName">
  73. <el-input v-model="form.receiveName" style="width: 200px" disabled />
  74. </el-form-item>
  75. </el-col>
  76. <el-col :span="8">
  77. <el-form-item label="签发有效期" prop="zfiEffectiveDate">
  78. <el-date-picker clearable size="small" style="width: 200px"
  79. v-model="form.zfiEffectiveDate"
  80. type="date"
  81. value-format="yyyy-MM-dd"
  82. placeholder="选择签发有效期">
  83. </el-date-picker>
  84. </el-form-item>
  85. </el-col>
  86. <el-col :span="8">
  87. <el-form-item label="承诺还款日" prop="zfiExpireDate">
  88. <el-date-picker clearable size="small" style="width: 200px"
  89. v-model="form.zfiExpireDate"
  90. type="date"
  91. value-format="yyyy-MM-dd"
  92. placeholder="选择承诺还款日">
  93. </el-date-picker>
  94. </el-form-item>
  95. </el-col>
  96. </el-row> -->
  97. <el-row>
  98. <!-- <el-col :span="8">
  99. <el-form-item label="收款账号" prop="zfiCollectionAccount" v-if="zfpcrLoanType != '0'">
  100. <el-input v-model="form.zfiCollectionAccount" style="width: 200px" />
  101. </el-form-item>
  102. </el-col> -->
  103. </el-row>
  104. <el-row>
  105. <el-col :span="8">
  106. <el-form-item label="金额大写" prop="issuedAmount">
  107. {{issuedAmount}}
  108. </el-form-item>
  109. </el-col>
  110. </el-row>
  111. </el-form>
  112. <!-- 发票附件 -->
  113. <el-divider content-position="left">发票附件</el-divider>
  114. <el-table :data="invoiceFileList" border style="width: 100%">
  115. <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
  116. <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
  117. <template slot-scope="scope">
  118. <el-button
  119. size="mini"
  120. type="text"
  121. icon="el-icon-view"
  122. @click="handleDetail(scope.row)"
  123. >下载</el-button>
  124. </template>
  125. </el-table-column>
  126. </el-table>
  127. <!-- 合同附件 -->
  128. <el-divider content-position="left">合同附件</el-divider>
  129. <el-table :data="contractFileList" border style="width: 100%">
  130. <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
  131. <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
  132. <template slot-scope="scope">
  133. <el-button
  134. size="mini"
  135. type="text"
  136. icon="el-icon-view"
  137. @click="handleDetail(scope.row)"
  138. >下载</el-button>
  139. </template>
  140. </el-table-column>
  141. </el-table>
  142. <!-- 其他附件 -->
  143. <el-divider content-position="left">其他附件</el-divider>
  144. <el-table :data="otherFileList" border style="width: 100%">
  145. <el-table-column label="文件名称" align="center" prop="pfiFileName" show-overflow-tooltip />
  146. <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width='300' fixed="right" >
  147. <template slot-scope="scope">
  148. <el-button
  149. size="mini"
  150. type="text"
  151. icon="el-icon-view"
  152. @click="handleDetail(scope.row)"
  153. >下载</el-button>
  154. </template>
  155. </el-table-column>
  156. </el-table>
  157. <div class="footer" style="float: right;
  158. margin-bottom:2px;">
  159. <el-button type="primary" @click="submitForm">确 定</el-button>
  160. <el-button @click="cancel">取 消</el-button>
  161. </div>
  162. <!-- 应收账款信息 -->
  163. <el-dialog :title="payTitle" :visible.sync="open" width="1120px" append-to-body>
  164. <el-form :model="queryParamsPay" ref="formQuery" :inline="true" label-width="68px" style="margin-bottom: -21px">
  165. <el-form-item label="账款名称" prop="zbiName">
  166. <el-input
  167. v-model="queryParamsPay.zbiName"
  168. placeholder="请输入账款名称"
  169. clearable
  170. size="small"
  171. maxlength="11"
  172. @keyup.enter.native="handleQuerys"/>
  173. </el-form-item>
  174. <el-form-item label="应付企业" prop="payName">
  175. <el-input
  176. v-model="queryParamsPay.payName"
  177. placeholder="请输入应付企业"
  178. clearable
  179. size="small"
  180. maxlength="11"
  181. @keyup.enter.native="handleQuerys"/>
  182. </el-form-item>
  183. <el-form-item>
  184. <el-button
  185. type="cyan"
  186. icon="el-icon-search"
  187. size="mini"
  188. @click="handleQuerys"
  189. >搜索</el-button>
  190. <el-button icon="el-icon-refresh" size="mini" @click="resetQuerys"
  191. >重置</el-button>
  192. </el-form-item>
  193. </el-form>
  194. <el-table :data="payList"
  195. ref="tablePay"
  196. class="single-select-table"
  197. @selection-change="handleSelectionChange"
  198. :row-key="rowkey">
  199. <el-table-column
  200. type="selection"
  201. :reserve-selection="true"
  202. width="50"
  203. align="center"/>
  204. <el-table-column label="序号" type="index" width="50" align="center">
  205. <template slot-scope="scope">
  206. <span>{{ (queryParamsPay.pageNum - 1) * queryParamsPay.pageSize + scope.$index + 1}}</span>
  207. </template>
  208. </el-table-column>
  209. <el-table-column label="账款名称" align="center" prop="zbiName" show-overflow-tooltip />
  210. <el-table-column label="应收企业" align="center" prop="receiveName"/>
  211. <el-table-column label="应付企业" align="center" prop="payName" />
  212. <el-table-column label="预计还款期" align="center" prop="zbiPayDate" show-overflow-tooltip />
  213. <el-table-column label="金额" align="center" prop="zbiAmount" />
  214. </el-table>
  215. <pagination
  216. v-show="total > 0"
  217. :total="total"
  218. :page.sync="queryParamsPay.pageNum"
  219. :limit.sync="queryParamsPay.pageSize"
  220. @pagination="getAccountsCollection" />
  221. <span slot="footer" class="dialog-footer">
  222. <el-button size="mini" @click="cancelTicket">取消</el-button>
  223. <el-button size="mini" type="primary" @click="closeTicket">确认</el-button>
  224. </span>
  225. </el-dialog>
  226. </div>
  227. </template>
  228. <script>
  229. import {getAccountsCollection,addCredit,getFile} from "@/api/service/credit/credit";
  230. import {accAdd} from "@/utils/calculation";
  231. export default {
  232. name: "creditApply",
  233. components: {},
  234. data() {
  235. return {
  236. // 总条数
  237. total: 0,
  238. // 查询参数
  239. queryParams: {
  240. pageNum: 1,
  241. pageSize: 10,
  242. },
  243. creditParams: {
  244. zfsqId:null
  245. },
  246. queryParamsPay: {
  247. pageNum: 1,
  248. pageSize: 10,
  249. payName:null,
  250. zbiName:null
  251. },
  252. // 表单参数
  253. form: {
  254. },
  255. // 表单校验
  256. rules: {
  257. //签发金额
  258. zfiAmount: [
  259. {
  260. required: true,
  261. message: "请输入签发金额",
  262. trigger: ["blur", "change"],
  263. },
  264. {
  265. pattern: /^(?:0|[1-9]\d{0,8})(?:\.\d{1,2})?$/,
  266. message: "请输入正确的签发金额",
  267. trigger: ["blur", "change"],
  268. },
  269. ]
  270. },
  271. // 是否显示弹出层
  272. open: false,
  273. //应付账款
  274. payList:[],
  275. //应付账款表格数据
  276. ticketList: [],
  277. //应付标题
  278. payTitle:"",
  279. //合计选中的应付账款的金额
  280. checkTotalAmt:"0.00",
  281. //合计选中的应付账款的大写金额
  282. checkTotalBigAmt:"零元整",
  283. //签发金额大写
  284. issuedAmount:"零元整",
  285. //合同附件
  286. contractFileList:[],
  287. //发票附件
  288. invoiceFileList:[],
  289. //其他文件
  290. otherFileList:[]
  291. };
  292. },
  293. created() {
  294. //签发金额
  295. this.$set(this.form, "zfiAmount","0.00");
  296. },
  297. methods: {
  298. // 取消按钮
  299. cancel() {
  300. this.$store.dispatch("tagsView/delView", this.$route);
  301. this.$router.go(-1);
  302. },
  303. //应收账款查询列表
  304. getAccountsCollection() {
  305. getAccountsCollection(this.queryParamsPay).then((response) => {
  306. this.payList = response.data.records;
  307. this.selectChecked();
  308. this.total = response.data.total;
  309. });
  310. },
  311. resetQuerys() {
  312. this.resetForm("formQuery");
  313. this.handleQuerys();
  314. },
  315. handleQuerys() {
  316. this.queryParamsPay.pageNum = 1;
  317. this.getAccountsCollection();
  318. },
  319. //打开应付账款选择列表
  320. openTicket() {
  321. this.getAccountsCollection();
  322. this.open = true;
  323. this.payTitle = "应收账款";
  324. },
  325. //获取附件信息
  326. getFile(datas){
  327. var queryParamsFile = {};
  328. queryParamsFile.ticketList = datas;
  329. getFile(queryParamsFile).then((response) => {
  330. if(response.data){
  331. //获取发票文件
  332. this.invoiceFileList = response.data.invoiceFileList;
  333. //获取合同文件
  334. this.contractFileList = response.data.contractFileList;
  335. //获取其他文件
  336. this.otherFileList = response.data.otherFileList;
  337. }
  338. });
  339. },
  340. //获取签发金额大写
  341. getBigSmall(){
  342. this.issuedAmount = this.smallToBig(this.form.zfiAmount);
  343. },
  344. selectChecked() {
  345. this.ticketList.forEach((item) => {
  346. this.payList.forEach(row => {
  347. if (row.zbiId == item.zbiId) {
  348. this.$nextTick(() => {
  349. this.$refs.tablePay && this.$refs.tablePay.toggleRowSelection(row, true);
  350. })
  351. }
  352. });
  353. });
  354. //合计
  355. this.getReTotal(this.ticketList);
  356. //附件
  357. this.getFile(this.ticketList);
  358. },
  359. /* 多选框跨页 */
  360. rowkey(row) {
  361. return row.zbiId;
  362. },
  363. // 多选框选中数据
  364. handleSelectionChange(val) {
  365. this.chooseTicket = val
  366. },
  367. // 确认选择
  368. closeTicket() {
  369. if(this.chooseTicket){
  370. //如果长度大于1,则需要进行对比应收企业和预计还款日期是否一致
  371. if(this.chooseTicket.length > 1){
  372. //获取选中第一个的应付企业
  373. var payName = this.chooseTicket[0].payName;
  374. //获取选中第一个的预计还款日期
  375. var zbiPayDate = this.chooseTicket[0].zbiPayDate;
  376. for(var i = 0 ;i < this.chooseTicket.length;i++){
  377. if(payName != this.chooseTicket[i].payName){
  378. this.$message({
  379. message: '请选择应付企业相同的应付账款',
  380. type: 'warning'
  381. });
  382. return;
  383. }
  384. if(zbiPayDate != this.chooseTicket[i].zbiPayDate){
  385. this.$message({
  386. message: '请选择预计还款日期相同的应付账款',
  387. type: 'warning'
  388. });
  389. return;
  390. }
  391. }
  392. }
  393. //合计
  394. this.getReTotal(this.chooseTicket);
  395. this.ticketList = this.chooseTicket;
  396. //附件
  397. this.getFile(this.ticketList);
  398. //开立方赋值
  399. this.$set(this.form, "openName",this.chooseTicket[0].payName);
  400. this.open = false;
  401. }else{
  402. this.$message({
  403. message: '请选择应收账款',
  404. type: 'warning'
  405. });
  406. }
  407. },
  408. //重新合计
  409. getReTotal(chooseTicket){
  410. //合计
  411. this.checkTotalAmt = "0.00";
  412. for(var i = 0; i < chooseTicket.length;i++){
  413. this.checkTotalAmt = accAdd(this.checkTotalAmt,chooseTicket[i].zbiAmount,2);
  414. }
  415. //签发金额
  416. this.$set(this.form, "zfiAmount",this.checkTotalAmt);
  417. //签发金额大写
  418. this.issuedAmount = this.smallToBig(this.checkTotalAmt);
  419. this.checkTotalBigAmt = this.smallToBig(this.checkTotalAmt);
  420. this.checkTotalAmt = this.amtFormat(this.checkTotalAmt);
  421. },
  422. //取消选择按钮
  423. cancelTicket(){
  424. this.ticketList = [];
  425. if(this.$refs.tablePay){
  426. this.$refs.tablePay.clearSelection();
  427. }
  428. this.open = false;
  429. },
  430. /** 清空选择信息 */
  431. deleteTicekt() {
  432. this.ticketList = [];
  433. this.checkTotalAmt = "0.00";
  434. this.checkTotalBigAmt = this.smallToBig(this.checkTotalAmt);
  435. //签发金额
  436. this.$set(this.form, "zfiAmount","0.00");
  437. this.issuedAmount = this.smallToBig(this.checkTotalAmt);
  438. //开立方清空
  439. this.$set(this.form, "openName","");
  440. //附件
  441. this.getFile(this.ticketList);
  442. if(this.$refs.tablePay){
  443. this.$refs.tablePay.clearSelection();
  444. }
  445. },
  446. /* 删除按钮 */
  447. handleDelete(index, rows) {
  448. rows.splice(index, 1);
  449. if(this.$refs.tablePay){
  450. this.$refs.tablePay.clearSelection();
  451. }
  452. this.selectChecked();
  453. },
  454. onSelectAll() {
  455. if(this.$refs.tablePay){
  456. this.$refs.tablePay.clearSelection();
  457. }
  458. },
  459. //格式化金额
  460. amtFormat(cellValue) {
  461. if(cellValue == null || cellValue== undefined || cellValue == ''){
  462. cellValue = '0.00'
  463. }
  464. cellValue += '';
  465.       if (!cellValue.includes('.')) {
  466. cellValue += '.00';
  467. }
  468. console.log(cellValue);
  469.       return cellValue.replace(/(\d)(?=(\d{3})+\.)/g, function ($0, $1) {
  470.         return $1 + ',';
  471.       }).replace(/\.$/, '');
  472. },
  473. /* // 将数字金额转换为大写金额 */
  474. smallToBig(money) {
  475. // 将数字金额转换为大写金额
  476. var cnNums = new Array(
  477. "零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖" ); //汉字的数字
  478. var cnIntRadice = new Array("", "拾", "佰", "仟"); //基本单位
  479. var cnIntUnits = new Array("", "万", "亿", "兆"); //对应整数部分扩展单位
  480. var cnDecUnits = new Array("角", "分", "毫", "厘"); //对应小数部分单位
  481. var cnInteger = "整"; //整数金额时后面跟的字符
  482. var cnIntLast = "元"; //整数完以后的单位
  483. //最大处理的数字
  484. var maxNum = 999999999999999.9999;
  485. var integerNum; //金额整数部分
  486. var decimalNum; //金额小数部分
  487. //输出的中文金额字符串
  488. var chineseStr = "";
  489. var parts; //分离金额后用的数组,预定义
  490. if (money == "" || money == null || money == undefined) {
  491. return "零元零角零分";
  492. }
  493. money = parseFloat(money);
  494. if (money >= maxNum) {
  495. //超出最大处理数字
  496. return "超出最大处理数字";
  497. }
  498. if (money == 0) {
  499. chineseStr = cnNums[0] + cnIntLast + cnInteger;
  500. return chineseStr;
  501. }
  502. //四舍五入保留两位小数,转换为字符串
  503. money = Math.round(money * 100).toString();
  504. integerNum = money.substr(0, money.length - 2);
  505. decimalNum = money.substr(money.length - 2);
  506. //获取整型部分转换
  507. if (parseInt(integerNum, 10) > 0) {
  508. var zeroCount = 0;
  509. var IntLen = integerNum.length;
  510. for (var i = 0; i < IntLen; i++) {
  511. var n = integerNum.substr(i, 1);
  512. var p = IntLen - i - 1;
  513. var q = p / 4;
  514. var m = p % 4;
  515. if (n == "0") {
  516. zeroCount++;
  517. } else {
  518. if (zeroCount > 0) {
  519. chineseStr += cnNums[0];
  520. }
  521. //归零
  522. zeroCount = 0;
  523. chineseStr += cnNums[parseInt(n)] + cnIntRadice[m];
  524. }
  525. if (m == 0 && zeroCount < 4) {
  526. chineseStr += cnIntUnits[q];
  527. }
  528. }
  529. chineseStr += cnIntLast;
  530. }
  531. //小数部分
  532. if (decimalNum != "") {
  533. var decLen = decimalNum.length;
  534. for (var i = 0; i < decLen; i++) {
  535. var n = decimalNum.substr(i, 1);
  536. if (n != "0") {
  537. chineseStr += cnNums[Number(n)] + cnDecUnits[i];
  538. }
  539. }
  540. }
  541. if (chineseStr == "") {
  542. chineseStr += cnNums[0] + cnIntLast + cnInteger;
  543. } else if (decimalNum == "" || /^0*$/.test(decimalNum)) {
  544. chineseStr += cnInteger;
  545. }
  546. return chineseStr;
  547. },
  548. //新增
  549. submitForm(){
  550. if(this.ticketList.length < 1){
  551. this.$message({
  552. message: '请选择应收账款',
  553. type: 'warning'
  554. });
  555. return;
  556. }
  557. if(parseFloat(this.form.zfiAmount) > parseFloat(this.moneyDelete(this.checkTotalAmt))){
  558. this.$message({
  559. message: '签发金额不可大于合计金额',
  560. type: 'warning'
  561. });
  562. return;
  563. }
  564. this.$refs["form"].validate(valid => {
  565. if (valid) {
  566. const loading = this.$loading({
  567. lock: true,
  568. text: 'Loading',
  569. background: 'rgba(0, 0, 0,0)'
  570. });
  571. //如果签发金额小于合计金额
  572. if((parseFloat(this.form.zfiAmount)) < (parseFloat(this.moneyDelete(this.checkTotalAmt)))){
  573. var _this = this;
  574. this.$confirm('签发金额小于应付金额合计,是否确认提交', "警告", {
  575. confirmButtonText: "确定",
  576. cancelButtonText: "取消",
  577. type: "warning"
  578. }).then(function() {
  579. //应收账款
  580. _this.form.ticketList = _this.ticketList;
  581. //融信类型
  582. _this.form.type = "0";
  583. //合计金额
  584. _this.form.checkTotalAmt = _this.moneyDelete(_this.checkTotalAmt);
  585. addCredit(_this.form).then(response => {
  586. loading.close();
  587. _this.msgSuccess("新增成功");
  588. _this.$store.dispatch("tagsView/delView", _this.$route);
  589. _this.$router.go(-1);
  590. }).catch((response)=>{
  591. loading.close();
  592. });
  593. }).catch((e) => {
  594. loading.close();
  595. });
  596. }else{
  597. //应收账款
  598. this.form.ticketList = this.ticketList;
  599. //融信类型
  600. this.form.type = "0";
  601. //合计金额
  602. this.form.checkTotalAmt = this.moneyDelete(this.checkTotalAmt);
  603. addCredit(this.form).then(response => {
  604. loading.close();
  605. this.msgSuccess("新增成功");
  606. this.$store.dispatch("tagsView/delView", this.$route);
  607. this.$router.go(-1);
  608. }).catch((response)=>{
  609. loading.close();
  610. });
  611. }
  612. }
  613. });
  614. },
  615. //金额去掉千分位
  616. moneyDelete(num){
  617. if(num &&num != undefined && num != null){
  618. let _num = num;
  619. _num = _num.toString();
  620. _num = _num.replace(/,/gi,'');
  621. return _num;
  622. }else{
  623. return num;
  624. }
  625. }
  626. }
  627. };
  628. </script>
  629. <style lang="scss">
  630. .uoloadfj .el-upload--picture-card{
  631. width:110px;
  632. height:110px;
  633. line-height:110px;
  634. }
  635. .fjUoloadSty .el-upload--picture-card{
  636. display:none;
  637. }
  638. table th.star div::before {
  639. content: '*';
  640. color: red;
  641. }
  642. </style>