tcmdrome.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696
  1. <template>
  2. <div>
  3. <crumbs title="中医证候关联维护" style="min-width: 980px" class="knowledgeTitle">
  4. <el-form :inline="true" class="demo-form-inline">
  5. <el-form-item class="selectMedicine" label="标准术语状态:">
  6. <el-select size="mini" v-model="filter.status" placeholder="请选择" clearable>
  7. <el-option
  8. v-for="item in statusList"
  9. :label="item.name"
  10. :value="item.id"
  11. :key="item.id"
  12. ></el-option>
  13. </el-select>
  14. </el-form-item>
  15. <el-form-item label="匹配状态:" class="selectMedicine">
  16. <el-select size="mini" v-model="filter.match" placeholder="请选择" clearable>
  17. <el-option v-for="item in matchList" :label="item.name" :value="item.id" :key="item.id"></el-option>
  18. </el-select>
  19. </el-form-item>
  20. <el-form-item label="医院中医证候名称:">
  21. <el-input size="mini" v-model="filter.hisName" placeholder="请输入" clearable></el-input>
  22. </el-form-item>
  23. <el-form-item label="标准中医证候名称:">
  24. <el-input size="mini" v-model="filter.uniqueName" placeholder="请输入" clearable></el-input>
  25. </el-form-item>
  26. <el-form-item>
  27. <el-button size="mini" @click="filterDatas">检索</el-button>
  28. </el-form-item>
  29. </el-form>
  30. <el-form class="secLine" :inline="true">
  31. <el-form-item>
  32. <el-button type="text" class="downTemplate" @click="exportModule">导入模板下载</el-button>
  33. <input type="file" name="uploadfile " id="upFile" @change="uploadFile($event)" />
  34. <!-- accept=".csv, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" -->
  35. <el-button size="mini" @click="handleMatchData">预匹配</el-button>
  36. <el-button size="mini" @click="importPage" style="margin:0 10px">{{uploadInfo}}</el-button>
  37. <input type="file" name="uploadfile " id="upFileMatch" @change="uploadFileMatch($event)" />
  38. <el-button size="mini" @click="exportData">导出</el-button>
  39. </el-form-item>
  40. <el-form-item>
  41. <el-button size="mini" type="warning" @click="addRelation">添加关联</el-button>
  42. </el-form-item>
  43. </el-form>
  44. </crumbs>
  45. <div class="contents knowledgeContents">
  46. <el-table :data="list" border style="width: 100%">
  47. <el-table-column :resizable="false" type="index" :index="indexMethod" label="编号" width="80"></el-table-column>
  48. <el-table-column :resizable="false" prop="gmtModified" label="操作时间" width="180"></el-table-column>
  49. <el-table-column :resizable="false" prop="hisName" label="医院中医证候名称" show-overflow-tooltip></el-table-column>
  50. <el-table-column :resizable="false" prop="code" label="中医证候代码" show-overflow-tooltip></el-table-column>
  51. <el-table-column
  52. :resizable="false"
  53. prop="uniqueName"
  54. label="标准中医证候名称"
  55. show-overflow-tooltip
  56. ></el-table-column>
  57. <el-table-column :resizable="false" prop="operate" label="匹配状态:">
  58. <template slot-scope="scope">
  59. <span>{{scope.row.isMatch == 0?'未匹配':'已匹配'}}</span>
  60. </template>
  61. </el-table-column>
  62. <el-table-column :resizable="false" prop="operate" label="标准术语状态">
  63. <template slot-scope="scope">
  64. <span
  65. v-if="scope.row.uniqueName && scope.row.uniqueName!=''"
  66. >{{scope.row.status == 0?'禁用':'启用'}}</span>
  67. </template>
  68. </el-table-column>
  69. <el-table-column :resizable="false" prop="operate" label="操作">
  70. <template slot-scope="scope">
  71. <el-button @click="modifyRelation(scope.row)" type="text" size="small">修改</el-button>
  72. <span style="margin:0 3px;">|</span>
  73. <el-button
  74. @click="showDelDialog(scope.row.id)"
  75. class="delete"
  76. type="text"
  77. size="small"
  78. >删除</el-button>
  79. </template>
  80. </el-table-column>
  81. </el-table>
  82. <div class="pagination pagepage">
  83. <el-pagination
  84. :current-page.sync="currentPage"
  85. @current-change="currentChange"
  86. background
  87. :page-size="pageSize"
  88. :page-sizes="pageSizeArr"
  89. @size-change="handleSizeChange"
  90. :layout="pageLayout"
  91. :total="total"
  92. ></el-pagination>
  93. </div>
  94. </div>
  95. <LtModal
  96. v-if="modalVisiable"
  97. @func="getMsgFormSon"
  98. :meal="'中医证候名称'"
  99. :standard="'中医证候名称'"
  100. :detail="'中医证候代码'"
  101. :tip="'中医证候关联'"
  102. :type="13"
  103. :data="data"
  104. ></LtModal>
  105. </div>
  106. </template>
  107. <script>
  108. import api from '@api/icss.js';
  109. import config from '@api/config.js';
  110. import utils from '@api/utils.js';
  111. import LtModal from '@components/common/LtModal';
  112. export default {
  113. name: 'Tcmdrome',
  114. data: function() {
  115. return {
  116. list: [],
  117. searched: false,
  118. filter: {
  119. hisName: '', // 医院诊断名称
  120. uniqueName: '', //标准诊断名称
  121. match: '',
  122. status: ''
  123. },
  124. statusList: [
  125. { id: '', name: '全部' },
  126. { id: 1, name: '启用' },
  127. { id: 0, name: '禁用' }
  128. ],
  129. matchList: [
  130. { id: '', name: '全部' },
  131. { id: 1, name: '已匹配' },
  132. { id: 0, name: '未匹配' },
  133. { id: 2, name: '多项匹配' }
  134. ],
  135. currentPage: 1,
  136. pageSize: config.pageSize,
  137. pageSizeArr: config.pageSizeArr,
  138. pageLayout: config.pageLayout,
  139. total: 0,
  140. fileName: '',
  141. formData: {},
  142. headers: {},
  143. uploadInfo: '导入',
  144. modalVisiable: false,
  145. data: {}
  146. };
  147. },
  148. components: {
  149. LtModal
  150. },
  151. created() {
  152. const param = this.$route.params;
  153. if (param.currentPage) {
  154. this.inCurrentPage = param.currentPage;
  155. }
  156. if (param.filter) {
  157. this.filter = param.filter;
  158. }
  159. //返回时避免参数未赋值就获取列表
  160. setTimeout(() => {
  161. this.getDataList();
  162. });
  163. // 非首页 编辑页返回 设置 this.currentPage
  164. if (Object.keys(this.$route.params).length !== 0) {
  165. this.currentPage = this.$route.params.currentPage;
  166. }
  167. },
  168. watch: {
  169. filter: {
  170. handler: function() {
  171. this.searched = false;
  172. },
  173. deep: true
  174. }
  175. },
  176. methods: {
  177. // 预匹配
  178. handleMatchData() {
  179. let inp = document.getElementById('upFileMatch');
  180. inp.click();
  181. },
  182. // 导入数据
  183. uploadFileMatch(e) {
  184. let fileInfo = e.target.files[0];
  185. let extend = fileInfo.name.substring(fileInfo.name.lastIndexOf('.') + 1);
  186. if (extend != 'xls' && extend != 'xlsx') {
  187. this.$message({ message: '请根据模板进行导入', type: 'error' });
  188. return;
  189. }
  190. e.preventDefault();
  191. let formData = new FormData();
  192. formData.append('file', fileInfo);
  193. formData.append('type', 13);
  194. const header = {
  195. headers: {
  196. 'Content-Type': 'multipart/form-data'
  197. }
  198. };
  199. const loading = this.$loading({
  200. lock: true,
  201. text: '预匹配中...',
  202. spinner: 'el-icon-loading',
  203. background: 'rgba(0, 0, 0, 0.7)'
  204. });
  205. api.dataDiseaseVerify(formData, header).then(res => {
  206. if (res.data.code === '00020007' || res.data.code === '00020004') {
  207. loading.close();
  208. this.$alert(`${res.data.msg}`, '提示', {
  209. confirmButtonText: '确定',
  210. type: 'warning'
  211. })
  212. .then(() => {})
  213. .catch(() => {});
  214. } else {
  215. api.precDiseaseDataMatch(formData, header).then(res => {
  216. setTimeout(() => {
  217. loading.close();
  218. }, 800);
  219. if (res.status === 200) {
  220. utils.downloadExportedData(
  221. res.data,
  222. '中医证候关联数据(预匹配).xls'
  223. );
  224. }
  225. });
  226. }
  227. });
  228. let inp = document.getElementById('upFileMatch');
  229. inp.value = '';
  230. },
  231. handleSizeChange(val) {
  232. this.pageSize = val;
  233. this.currentPage = utils.getCurrentPage(
  234. this.currentPage,
  235. this.total,
  236. this.pageSize
  237. );
  238. this.getDataList();
  239. },
  240. // 获取列表数据
  241. getDataList(isTurnPage) {
  242. const params = this.getFilterItems(isTurnPage);
  243. this.searched = true;
  244. const loading = this.$loading({
  245. lock: true,
  246. text: 'Loading',
  247. spinner: 'el-icon-loading',
  248. background: 'rgba(0, 0, 0, 0.7)'
  249. });
  250. api.getTcmsyndromePage(params).then(res => {
  251. loading.close();
  252. if (res.data.code === '0') {
  253. this.list = res.data.data && res.data.data.records;
  254. }
  255. this.total = res.data.data && res.data.data.total;
  256. if (this.inCurrentPage !== undefined) {
  257. this.currentPage = this.inCurrentPage;
  258. this.inCurrentPage = undefined;
  259. }
  260. });
  261. },
  262. // 处理列表请求数据参数
  263. getFilterItems(isTurnPage) {
  264. //翻页时筛选条件没点确定则清空
  265. if (isTurnPage && !this.searched) {
  266. this.clearFilter();
  267. }
  268. const param = {
  269. current: this.inCurrentPage || this.currentPage,
  270. size: this.pageSize,
  271. hisName: this.filter.hisName.trim(),
  272. uniqueName: this.filter.uniqueName.trim(),
  273. uniqueCode: '',
  274. type: 13,
  275. isMatch: this.filter.match,
  276. status: this.filter.status
  277. };
  278. return param;
  279. },
  280. filterDatas() {
  281. this.currentPage = 1;
  282. this.getDataList();
  283. },
  284. addRelation() {
  285. const pam = this.searched
  286. ? {
  287. currentPage: this.currentPage,
  288. pageSize: this.pageSize,
  289. filter: this.filter
  290. }
  291. : { currentPage: this.currentPage, pageSize: this.pageSize };
  292. this.data = {};
  293. this.showModal();
  294. // this.$router.push({ name: 'AddTcmdrome', params: pam });
  295. },
  296. // 修改诊断关联-跳转至编辑页面
  297. modifyRelation(row) {
  298. const item = Object.assign({}, row);
  299. const pam = this.searched
  300. ? {
  301. currentPage: this.currentPage,
  302. pageSize: this.pageSize,
  303. filter: this.filter
  304. }
  305. : { currentPage: this.currentPage, pageSize: this.pageSize };
  306. this.data = item;
  307. this.showModal();
  308. // this.$router.push({
  309. // name: 'AddTcmdrome',
  310. // params: Object.assign(pam, { isEdit: true, data: item })
  311. // });
  312. },
  313. currentChange(next) {
  314. this.currentPage = next;
  315. this.getDataList(true);
  316. // if (this.cacheData[next]) { //如果已请求过该页数据,则使用缓存不重复请求
  317. // this.list = this.cacheData[next];
  318. // } else {
  319. // this.getDataList();
  320. // }
  321. },
  322. // 清空搜索参数
  323. clearFilter() {
  324. this.filter = {
  325. hisName: '',
  326. uniqueName: ''
  327. };
  328. },
  329. indexMethod(index) {
  330. return (this.currentPage - 1) * this.pageSize + index + 1;
  331. },
  332. getTagType(val) {
  333. return val;
  334. },
  335. warning(msg, type) {
  336. this.$message({
  337. showClose: true,
  338. message: msg,
  339. type: type || 'warning'
  340. });
  341. },
  342. showConfirmDialog(msg, resolve) {
  343. this.$confirm(msg, '提示', {
  344. confirmButtonText: '删除',
  345. cancelButtonText: '取消',
  346. cancelButtonClass: 'cancelBtn',
  347. confirmButtonClass: 'confirmC',
  348. type: 'warning'
  349. })
  350. .then(() => {
  351. resolve();
  352. })
  353. .catch(() => {});
  354. },
  355. // 删除关联
  356. showDelDialog(id) {
  357. this.showConfirmDialog('是否删除该关联?', () => {
  358. api
  359. .deleteTcmdromeRecord({ id: id })
  360. .then(res => {
  361. if (res.data.code == '0') {
  362. if (!this.searched) {
  363. //未点确认时清空搜索条件
  364. this.clearFilter();
  365. }
  366. if (this.list.length == 1) {
  367. //当前在最后一页且只有一条数据时,删除后跳到前一页
  368. this.currentPage =
  369. this.currentPage === 1 ? 1 : this.currentPage - 1;
  370. }
  371. this.getDataList();
  372. this.warning(res.data.msg || '操作成功', 'success');
  373. } else {
  374. this.warning(res.data.msg);
  375. }
  376. })
  377. .catch(error => {
  378. if (error.code === '900010001') {
  379. return false;
  380. }
  381. this.warning(error);
  382. });
  383. });
  384. },
  385. // 导出数据
  386. exportData() {
  387. this.$confirm('确定要导出全部中医证候关联数据吗?', '', {
  388. confirmButtonText: '确定',
  389. cancelButtonText: '取消',
  390. cancelButtonClass: 'leftbtn',
  391. customClass: 'exportBox6',
  392. title: '提示',
  393. type: 'warning'
  394. // beforeClose: (action, instance, done) => {
  395. // if (action === 'confirm') {
  396. // // instance.confirmButtonLoading = true;
  397. // // instance.confirmButtonText = '导出中...';
  398. // done()
  399. // api.exportDeptRecord().then(res => {
  400. // if (res.status === 200) {
  401. // setTimeout(() => {
  402. // utils.downloadExportedData(res.data, '科室关联数据.xls');
  403. // // done();
  404. // }, 1500);
  405. // }
  406. // });
  407. // } else {
  408. // done();
  409. // }
  410. // }
  411. })
  412. .then(() => {
  413. api
  414. .exportTcmdromeRecord({ type: 13, isMatch: this.filter.match })
  415. .then(res => {
  416. if (res.status === 200) {
  417. this.$message({ message: '导出成功', type: 'success' });
  418. utils.downloadExportedData(res.data, '中医证候关联数据.xls');
  419. }
  420. });
  421. })
  422. .catch(() => {});
  423. },
  424. // 导入模板
  425. exportModule() {
  426. api.exportTcmdromeModule({ type: 13 }).then(res => {
  427. if (res.status === 200) {
  428. setTimeout(() => {
  429. utils.downloadExportedData(res.data, '中医证候导入模板.xls');
  430. }, 1500);
  431. }
  432. });
  433. },
  434. // 点击导入
  435. importPage() {
  436. let inp = document.getElementById('upFile');
  437. inp.click();
  438. },
  439. // 导入数据
  440. uploadFile(e) {
  441. let fileInfo = e.target.files[0];
  442. let extend = fileInfo.name.substring(fileInfo.name.lastIndexOf('.') + 1);
  443. if (extend != 'xls' && extend != 'xlsx') {
  444. this.$message({ message: '请根据模板进行导入', type: 'error' });
  445. return;
  446. }
  447. // this.fileName = e.target.files[0].name; // 表单同步显示
  448. e.preventDefault();
  449. let formData = new FormData();
  450. formData.append('file', fileInfo);
  451. formData.append('type', 13);
  452. formData.append('uesrId', localStorage.getItem('uesrId'));
  453. formData.append(
  454. 'hospitalId',
  455. JSON.parse(localStorage.getItem('hospitalLoginDTO')).id
  456. );
  457. const header = {
  458. headers: {
  459. 'Content-Type': 'multipart/form-data'
  460. }
  461. };
  462. this.importTcmdromeRecord(formData, header);
  463. // this.uploadInfo = '导入中...';
  464. // api.importExcelDataVerify(formData, header).then(res => {
  465. // if (res.data.code === '00020001') {
  466. // this.$confirm(`${res.data.msg}`, '提示', {
  467. // confirmButtonText: '确定',
  468. // cancelButtonText: '取消',
  469. // type: 'warning'
  470. // })
  471. // .then(() => {
  472. // this.importTcmdromeRecord(formData, header);
  473. // })
  474. // .catch(() => {
  475. // setTimeout(() => {
  476. // this.uploadInfo = '导入';
  477. // }, 300);
  478. // });
  479. // } else if (res.data.data === true) {
  480. // this.importTcmdromeRecord(formData, header);
  481. // }else {
  482. // this.$alert(`${res.data.msg}`, '提示', {
  483. // confirmButtonText: '确定',
  484. // // cancelButtonText: '取消',
  485. // // cancelButtonClass: 'cancelSure',
  486. // // confirmButtonClass: 'sure',
  487. // // customClass: 'exportConfirm',
  488. // type: 'warning'
  489. // })
  490. // .then(() => {})
  491. // .catch(() => {});
  492. // setTimeout(() => {
  493. // this.uploadInfo = '导入';
  494. // }, 300);
  495. // }
  496. // });
  497. //解决上传相同文件不触发change
  498. let inp = document.getElementById('upFile');
  499. inp.value = '';
  500. },
  501. importTcmdromeRecord(formData, header) {
  502. let that = this;
  503. api.importTcmdromeRecord(formData, header).then(res => {
  504. if (res.headers['content-disposition']) {
  505. this.downloadUrl(res);
  506. this.getDataList();
  507. } else {
  508. let r = new FileReader();
  509. r.onload = function() {
  510. if (this.result) {
  511. const code = JSON.parse(this.result);
  512. if (code.code === '00020004') {
  513. that
  514. .$alert(`${code.msg}`, '提示', {
  515. confirmButtonText: '确定',
  516. // cancelButtonText: '取消',
  517. // cancelButtonClass: 'cancelSure',
  518. // confirmButtonClass: 'sure',
  519. // customClass: 'exportConfirm',
  520. type: 'warning'
  521. })
  522. .then(() => {})
  523. .catch(() => {});
  524. }
  525. } else {
  526. that.$alert(`导入成功`, '提示', {
  527. confirmButtonText: '确定',
  528. // cancelButtonText: '取消',
  529. // cancelButtonClass: 'cancelSure',
  530. // confirmButtonClass: 'sure',
  531. // customClass: 'exportConfirm',
  532. type: 'success'
  533. });
  534. that.getDataList();
  535. }
  536. };
  537. r.readAsText(res.data);
  538. }
  539. // if (res.data.code === '00000001') {
  540. // this.$confirm(`医院术语字符数超出最大数量,请修改后再试`, '提示', {
  541. // confirmButtonText: '确定',
  542. // // cancelButtonText: '取消',
  543. // cancelButtonClass: 'cancelSure',
  544. // confirmButtonClass: 'sure',
  545. // customClass: 'exportConfirm',
  546. // type: 'warning'
  547. // })
  548. // .then(() => {})
  549. // .catch(() => {});
  550. // this.getDataList(); // 重新获取列表
  551. // setTimeout(() => {
  552. // this.uploadInfo = '导入';
  553. // }, 300);
  554. // } else if (res.data.data === true && res.status === 200) {
  555. // this.$confirm(`导入成功`, '提示', {
  556. // confirmButtonText: '确定',
  557. // // cancelButtonText: '取消',
  558. // cancelButtonClass: 'cancelSure',
  559. // confirmButtonClass: 'sure',
  560. // customClass: 'exportConfirm',
  561. // type: 'success'
  562. // })
  563. // .then(() => {})
  564. // .catch(() => {});
  565. // this.getDataList(); // 重新获取列表
  566. // setTimeout(() => {
  567. // this.uploadInfo = '导入';
  568. // }, 300);
  569. // } else {
  570. // this.$confirm(`${res.data.msg}`, '提示', {
  571. // confirmButtonText: '确定',
  572. // // cancelButtonText: '取消',
  573. // cancelButtonClass: 'cancelSure',
  574. // confirmButtonClass: 'sure',
  575. // customClass: 'exportConfirm',
  576. // type: 'warning'
  577. // })
  578. // .then(() => {})
  579. // .catch(() => {});
  580. // setTimeout(() => {
  581. // this.uploadInfo = '导入';
  582. // }, 300);
  583. // }
  584. });
  585. },
  586. downloadUrl(res) {
  587. var disposition = res.headers['content-disposition'];
  588. var fileName = decodeURI(
  589. disposition.split('filename=')[1].split(';filename*=')[0]
  590. );
  591. let blob = new Blob([res.data], { type: 'application/.xls' }); //.xls是我和后台约定好的文件格式
  592. let link = document.createElement('a');
  593. link.href = window.URL.createObjectURL(blob);
  594. link.download = fileName;
  595. link.click();
  596. link.remove();
  597. },
  598. /********新增编辑弹窗**********/
  599. showModal() {
  600. this.modalVisiable = true;
  601. },
  602. getMsgFormSon(data) {
  603. if (data == 'close') {
  604. this.modalVisiable = false;
  605. } else {
  606. this.modalVisiable = false;
  607. this.getDataList();
  608. }
  609. }
  610. }
  611. };
  612. </script>
  613. <style lang="less" scoped>
  614. @import '../../../less/admin.less';
  615. /deep/ .container.knowledgeTitle {
  616. height: 80px;
  617. }
  618. /deep/ .contents.knowledgeContents {
  619. padding: 104px 20px 0;
  620. }
  621. /deep/ .secLine.el-form {
  622. float: right;
  623. display: block;
  624. position: relative;
  625. top: -5px;
  626. }
  627. .delete {
  628. color: red;
  629. }
  630. .delete:hover {
  631. color: red;
  632. }
  633. .pagination {
  634. min-width: 1010px;
  635. }
  636. .downTemplate {
  637. margin-right: 8px;
  638. span {
  639. color: #02a7f0;
  640. }
  641. }
  642. #upFile {
  643. display: none !important;
  644. }
  645. .el-message-box {
  646. /deep/.cancelBtn {
  647. background-color: #d7d7d7;
  648. border-color: transparent;
  649. }
  650. /deep/.confirmC {
  651. background-color: #ff545b !important;
  652. border-color: transparent !important;
  653. }
  654. /deep/.el-message-box__header {
  655. border-bottom: 1px solid #dcdfe6;
  656. }
  657. }
  658. .exportBox6 {
  659. /deep/ .el-message-box__btns {
  660. margin-top: 20px;
  661. }
  662. /deep/ .el-message-box__message {
  663. // text-align: center;
  664. }
  665. /deep/.leftbtn {
  666. background-color: #d7d7d7;
  667. border-color: transparent !important;
  668. }
  669. /deep/ .el-message-box__header {
  670. border-bottom: 1px solid #dcdfe6;
  671. }
  672. }
  673. .exportConfirm {
  674. .cancelSure {
  675. display: none;
  676. }
  677. }
  678. #upFileMatch {
  679. display: none;
  680. }
  681. </style>