Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

inspection.vue 25KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748
  1. <template>
  2. <div class="patient-container">
  3. <patient-sidebar :id="patientID" defaultActive="1-3"></patient-sidebar>
  4. <div
  5. class="patient-app-container app-container"
  6. v-loading="pageLoading"
  7. element-loading-text="拼命加载中"
  8. >
  9. <el-row :gutter="20">
  10. <el-col :span="7">
  11. <el-table
  12. :header-cell-style="{
  13. backgroundColor: 'rgb(245, 247, 250)',
  14. color: '#606266'
  15. }"
  16. :row-style="{ color: '#303133' }"
  17. :data="projects"
  18. border
  19. style="width: 100%"
  20. highlight-current-row
  21. @current-change="handleCurrentChange"
  22. ref="singleTable"
  23. >
  24. <el-table-column label="检验检查项目" align="center">
  25. <el-table-column
  26. prop="project_name"
  27. label="检验项目"
  28. align="center"
  29. >
  30. </el-table-column>
  31. <el-table-column
  32. prop="count"
  33. label="次数"
  34. width="80"
  35. align="center"
  36. >
  37. </el-table-column>
  38. </el-table-column>
  39. </el-table>
  40. </el-col>
  41. <el-col :span="17" v-loading="itemLoading">
  42. <div class="filter-container" style="float:right">
  43. <el-button
  44. size="small"
  45. class="filter-item"
  46. type="primary"
  47. @click="openNew()"
  48. icon="el-icon-circle-plus-outline"
  49. :disabled="project ? false : true"
  50. >新增</el-button
  51. >
  52. <el-button
  53. size="small"
  54. class="filter-item"
  55. type="primary"
  56. icon="el-icon-edit-outline"
  57. @click="openEdit()"
  58. :disabled="itemDate ? false : true"
  59. >修改</el-button
  60. >
  61. <el-button
  62. size="small"
  63. class="filter-item"
  64. type="danger"
  65. icon="el-icon-delete"
  66. @click="deleteInspection()"
  67. :disabled="itemDate ? false : true"
  68. >删除</el-button
  69. >
  70. </div>
  71. <div class="filter-container">
  72. <el-button class="filter-item" type="text" style="color:#000"
  73. >{{ itemName }}
  74. <span v-if="itemDate"
  75. >(检查日期:{{ itemDate }})</span
  76. ></el-button
  77. >
  78. </div>
  79. <el-table
  80. :header-cell-style="{
  81. backgroundColor: 'rgb(245, 247, 250)',
  82. color: '#606266'
  83. }"
  84. :row-style="{ color: '#303133' }"
  85. :data="items"
  86. border
  87. style="width: 100%"
  88. id="user-inspection-order"
  89. >
  90. <el-table-column
  91. prop="item_name"
  92. label="检验项目"
  93. align="center"
  94. min-width="180"
  95. >
  96. <template slot-scope="scope">
  97. {{ scope.row.item_name }} {{ scope.row.item_name_addition }}
  98. </template>
  99. </el-table-column>
  100. <el-table-column
  101. prop="name"
  102. label="结果"
  103. align="center"
  104. min-width="80"
  105. >
  106. <template slot-scope="scope">
  107. <span v-if="scope.row.value =='阳性'" style="color:red">{{ scope.row.value }}</span>
  108. <span v-else>{{ scope.row.value }}</span>
  109. <span v-if="scope.row.range_type == 1">
  110. {{scope.row.value_direction}}
  111. </span>
  112. </template>
  113. </el-table-column>
  114. <el-table-column
  115. prop="address"
  116. label="参考值"
  117. align="center"
  118. min-width="120"
  119. >
  120. <template slot-scope="scope">
  121. <span v-if="scope.row.range_type == 1"
  122. >{{ scope.row.range_min }}~{{ scope.row.range_max }}</span
  123. >
  124. <span v-else>{{ scope.row.range_value }}</span>
  125. </template>
  126. </el-table-column>
  127. <el-table-column
  128. prop="unit"
  129. label="单位"
  130. align="center"
  131. min-width="80"
  132. >
  133. </el-table-column>
  134. </el-table>
  135. <el-pagination
  136. align="right"
  137. @current-change="handleCurrentChangePage"
  138. :current-page="queryParams.page"
  139. :page-size="1"
  140. background
  141. style="margin-top:20px;"
  142. layout="total, prev, pager, next, jumper"
  143. :total="total"
  144. >
  145. </el-pagination>
  146. </el-col>
  147. </el-row>
  148. </div>
  149. <el-dialog
  150. :title="formTitle"
  151. :visible.sync="dialogFormVisible"
  152. width="1000px"
  153. id="user-inspection-form"
  154. v-loading="formLoading"
  155. >
  156. <el-form :model="form" ref="form" label-position="top">
  157. <el-row>
  158. <el-col :span="24" v-if="form.formItem[0].project_id == 14">
  159. <el-form-item label="传染病周期提醒: ">
  160. <el-radio-group v-model="form.remind_cycle">
  161. <el-radio :label="1">一月一次</el-radio>
  162. <el-radio :label="2">两月一次</el-radio>
  163. <el-radio :label="3">三月一次</el-radio>
  164. <el-radio :label="4">半年一次</el-radio>
  165. <el-radio :label="5">一年一次</el-radio>
  166. </el-radio-group>
  167. </el-form-item>
  168. </el-col>
  169. <el-col :span="7">
  170. <el-form-item
  171. label="检验日期"
  172. prop="inspect_date"
  173. :rules="[
  174. { required: true, message: '请输入检验日期', trigger: 'blur' }
  175. ]"
  176. >
  177. <el-date-picker
  178. style="width:95%"
  179. v-model="form.inspect_date"
  180. type="datetime"
  181. value-format="yyyy-MM-dd HH:mm"
  182. format="yyyy-MM-dd HH:mm"
  183. placeholder="选择日期"
  184. >
  185. </el-date-picker>
  186. </el-form-item>
  187. </el-col>
  188. <el-col :span="1">&nbsp;</el-col>
  189. <template v-for="(item, index) in form.formItem">
  190. <el-col :span="7" :key="index">
  191. <el-form-item
  192. :label="item.item_name"
  193. v-if="item.range_type == 1"
  194. :key="item.item_id"
  195. :prop="'formItem.' + index + '.value'"
  196. >
  197. <el-input
  198. placeholder="请填入"
  199. v-model="item.value"
  200. style="width:95%"
  201. type="number"
  202. >
  203. <template slot="append">{{ item.unit }}</template>
  204. </el-input>
  205. </el-form-item>
  206. <el-form-item
  207. :label="item.item_name"
  208. v-else
  209. :key="item.item_id"
  210. :prop="'formItem.' + index + '.value'"
  211. >
  212. <el-select
  213. v-model="item.value"
  214. placeholder="请选择"
  215. style="width:95%"
  216. >
  217. <el-option
  218. v-for="(optionItem, oidex) in item.select_options"
  219. :key="oidex"
  220. :label="optionItem"
  221. :value="optionItem"
  222. >
  223. </el-option>
  224. </el-select>
  225. </el-form-item>
  226. </el-col>
  227. <el-col :span="1" :key="'form-col' + index">&nbsp;</el-col>
  228. </template>
  229. </el-row>
  230. </el-form>
  231. <div slot="footer" class="dialog-footer">
  232. <el-button @click="dialogFormVisible = false">取 消</el-button>
  233. <el-button
  234. type="primary"
  235. v-if="form.method == 'add'"
  236. @click="submitNew('form')"
  237. >保 存</el-button
  238. >
  239. <el-button type="primary" v-else @click="submitEdit('form')"
  240. >保 存</el-button
  241. >
  242. </div>
  243. </el-dialog>
  244. </div>
  245. </template>
  246. <script>
  247. import PatientSidebar from './components/PatientSidebar'
  248. import {
  249. fetchInspectionReference,
  250. CreatePatientInspection,
  251. fetchPatientInspections,
  252. EditPatientInspection,
  253. DeletePatientInspection
  254. } from '@/api/inspection'
  255. import { uParseTime, isPositiveNumber } from '@/utils/tools'
  256. export default {
  257. name: 'Inspection',
  258. components: { PatientSidebar },
  259. data() {
  260. return {
  261. total: 0,
  262. pageLoading: true,
  263. itemLoading: false,
  264. formLoading: false,
  265. itemDate: '',
  266. patientID: 0,
  267. panelClass: 'patient-app-container',
  268. patientInfo: {
  269. id: 0
  270. },
  271. itemName: '请选择项目',
  272. formTitle: '',
  273. dialogFormVisible: false,
  274. patient_info: null,
  275. form: {
  276. remind_cycle: '',
  277. method: 'add',
  278. project_id: 0,
  279. inspect_date: '',
  280. old_inspect_date: '',
  281. formItem: [{ id: 0, value: '' }]
  282. },
  283. formItem: [],
  284. items: [],
  285. inspections: [],
  286. inspectionsMap: {},
  287. projects: [],
  288. project: null,
  289. queryParams: {
  290. patient: 0,
  291. project_id: 0,
  292. page: 1
  293. }
  294. }
  295. },
  296. methods: {
  297. deleteInspection() {
  298. if (this.project == null || this.itemDate == '') {
  299. this.$message.error('请先选择删除删除的记录')
  300. return false
  301. }
  302. this.$confirm('确认删除此记录?', '删除', {
  303. confirmButtonText: '确定',
  304. cancelButtonText: '取消',
  305. type: 'warning'
  306. })
  307. .then(() => {
  308. var params = {
  309. patient: this.patientID,
  310. date: this.itemDate,
  311. project_id: this.project.project_id
  312. }
  313. DeletePatientInspection(params).then(response => {
  314. if (response.data.state == 0) {
  315. this.$message.error(response.data.msg)
  316. return false
  317. } else {
  318. this.$notify({
  319. title: '成功',
  320. message: '删除成功',
  321. type: 'success',
  322. duration: 2000
  323. })
  324. for (var index in this.projects) {
  325. if (this.projects[index].project_id == params.project_id) {
  326. this.projects[index].count--
  327. break
  328. }
  329. }
  330. this.total -= 1
  331. this.itemDate = ''
  332. this.items = []
  333. if (this.total > 0) {
  334. this.queryParams.page = 1
  335. this.fetchPatientInspections(this.queryParams)
  336. }
  337. }
  338. })
  339. })
  340. .catch(() => {})
  341. },
  342. openEdit() {
  343. if (this.project == null) {
  344. this.$message.error('请先选择项目')
  345. return false
  346. }
  347. this.form.method = 'edit'
  348. this.formTitle = '修改' + this.project.project_name
  349. this.form.project_id = this.project.project_id
  350. this.form.inspect_date = this.itemDate
  351. this.form.old_inspect_date = this.itemDate
  352. this.form.remind_cycle = this.patient_info.remind_cycle
  353. console.log(this.form.remind_cycle)
  354. this.form.formItem = []
  355. for (var index in this.project.inspection_reference) {
  356. this.form.formItem.push({
  357. id: this.project.inspection_reference[index].id in this.inspectionsMap ? this.inspectionsMap[this.project.inspection_reference[index].id].id : 0,
  358. project_id: this.project.inspection_reference[index].project_id,
  359. project_name: this.project.inspection_reference[index].project_name,
  360. item_id: this.project.inspection_reference[index].id,
  361. item: this.project.inspection_reference[index].item,
  362. item_name: this.project.inspection_reference[index].item_name,
  363. range_type: this.project.inspection_reference[index].range_type,
  364. value: this.project.inspection_reference[index].id in this.inspectionsMap ? this.inspectionsMap[this.project.inspection_reference[index].id].inspect_value : '',
  365. select_options: this.project.inspection_reference[index].range_options.split(','),
  366. unit: this.project.inspection_reference[index].unit
  367. })
  368. }
  369. console.log(this.form.formItem)
  370. this.dialogFormVisible = true
  371. },
  372. openNew() {
  373. if (this.project == null) {
  374. this.$message.error('请先选择项目')
  375. return false
  376. }
  377. this.form.method = 'add'
  378. this.formTitle = '新增' + this.project.project_name
  379. this.form.project_id = this.project.project_id
  380. this.form.remind_cycle = this.patient_info.remind_cycle
  381. var today = new Date()
  382. this.form.inspect_date = uParseTime(today, '{y}-{m}-{d} {h}:{i}')
  383. this.form.formItem = []
  384. for (var index in this.project.inspection_reference) {
  385. // var formItem = this.project.inspection_reference[index];
  386. // formItem["value"] = '';
  387. // if (formItem.range_type==2) {
  388. // formItem["select_options"] = formItem.range_options.split(",");
  389. // }
  390. this.form.formItem.push({
  391. id: 0,
  392. project_id: this.project.inspection_reference[index].project_id,
  393. project_name: this.project.inspection_reference[index].project_name,
  394. item_id: this.project.inspection_reference[index].id,
  395. item: this.project.inspection_reference[index].item,
  396. item_name: this.project.inspection_reference[index].item_name,
  397. range_type: this.project.inspection_reference[index].range_type,
  398. value: '',
  399. select_options: this.project.inspection_reference[
  400. index
  401. ].range_options.split(','),
  402. unit: this.project.inspection_reference[index].unit
  403. })
  404. }
  405. this.dialogFormVisible = true
  406. },
  407. submitEdit(formName) {
  408. this.$refs[formName].validate(valid => {
  409. if (valid) {
  410. this.formLoading = true
  411. if (this.form.formItem.length == 0) {
  412. this.$message.error('未填写项目')
  413. return false
  414. }
  415. for (var index in this.form.formItem) {
  416. this.form.formItem[index].value = '' + this.form.formItem[index].value
  417. }
  418. EditPatientInspection(this.patientID, this.form, this.form.remind_cycle, this.form.inspect_date, this.form.project_id).then(response => {
  419. if (response.data.state == 1) {
  420. this.$notify({
  421. title: '成功',
  422. message: '修改成功',
  423. type: 'success',
  424. duration: 2000
  425. })
  426. this.patient_info.remind_cycle =
  427. response.data.data.remind_cycle
  428. this.itemDate = this.form.inspect_date
  429. this.items = []
  430. var inspections = response.data.data.inspections
  431. this.inspections = response.data.data.inspections
  432. if (inspections == null) {
  433. this.inspections = []
  434. return false
  435. }
  436. var inspectionsMap = {}
  437. this.inspectionsMap = {}
  438. for (var index in inspections) {
  439. inspectionsMap[inspections[index].item_id] =
  440. inspections[index]
  441. this.inspectionsMap[inspections[index].item_id] =
  442. inspections[index]
  443. }
  444. var items = this.project.inspection_reference
  445. for (var index in items) {
  446. if (items[index].id in inspectionsMap) {
  447. var item = {}
  448. for (var key in items[index]) {
  449. item[key] = items[index][key]
  450. }
  451. item.value = inspectionsMap[items[index].id].inspect_value
  452. item.value_direction = ''
  453. if (item.range_type == 1) {
  454. var value = parseFloat(item.value)
  455. var range_min = parseFloat(item.range_min)
  456. var range_max = parseFloat(item.range_max)
  457. if (value < range_min) {
  458. item.value_direction = '↓'
  459. } else if (value > range_max) {
  460. item.value_direction = '↑'
  461. }
  462. }
  463. this.items.push(item)
  464. }
  465. }
  466. this.resetForm(formName)
  467. this.dialogFormVisible = false
  468. } else {
  469. this.$message.error(response.data.msg)
  470. return false
  471. }
  472. })
  473. .catch(v => {
  474. this.$message.error(v)
  475. return false
  476. })
  477. this.formLoading = false
  478. return false
  479. } else {
  480. return false
  481. }
  482. })
  483. },
  484. submitNew(formName) {
  485. this.$refs[formName].validate(valid => {
  486. if (valid) {
  487. this.formLoading = true
  488. if (this.form.formItem.length == 0) {
  489. this.$message.error('未填写项目')
  490. return false
  491. }
  492. for (var index in this.form.formItem) {
  493. this.form.formItem[index].value =
  494. '' + this.form.formItem[index].value
  495. }
  496. CreatePatientInspection(
  497. this.patientID,
  498. this.form,
  499. this.form.remind_cycle
  500. )
  501. .then(response => {
  502. if (response.data.state == 1) {
  503. this.$notify({
  504. title: '成功',
  505. message: '新增成功',
  506. type: 'success',
  507. duration: 2000
  508. })
  509. // this.form.remind_reycle = response.data.data.remind_reycc
  510. this.patient_info.remind_cycle =
  511. response.data.data.remind_cycle
  512. console.log(this.patient_info.remind_cycle)
  513. this.itemDate = this.form.inspect_date
  514. this.items = []
  515. for (var index in this.projects) {
  516. if (this.projects[index].project_id == this.form.project_id) {
  517. this.projects[index].count++
  518. break
  519. }
  520. }
  521. this.total += 1
  522. var inspections = response.data.data.inspections
  523. this.inspections = response.data.data.inspections
  524. if (inspections == null) {
  525. this.inspections = []
  526. return false
  527. }
  528. var inspectionsMap = {}
  529. this.inspectionsMap = {}
  530. for (var index in inspections) {
  531. inspectionsMap[inspections[index].item_id] =
  532. inspections[index]
  533. this.inspectionsMap[inspections[index].item_id] =
  534. inspections[index]
  535. }
  536. var items = this.project.inspection_reference
  537. for (var index in items) {
  538. if (items[index].id in inspectionsMap) {
  539. var item = {}
  540. for (var key in items[index]) {
  541. item[key] = items[index][key]
  542. }
  543. item.value = inspectionsMap[items[index].id].inspect_value
  544. item.value_direction = ''
  545. if (item.range_type == 1) {
  546. var value = parseFloat(item.value)
  547. var range_min = parseFloat(item.range_min)
  548. var range_max = parseFloat(item.range_max)
  549. if (value < range_min) {
  550. item.value_direction = '↓'
  551. } else if (value > range_max) {
  552. item.value_direction = '↑'
  553. }
  554. }
  555. this.items.push(item)
  556. }
  557. }
  558. this.resetForm(formName)
  559. this.dialogFormVisible = false
  560. this.queryParams.patient = this.patientID
  561. this.queryParams.project_id = this.project.project_id
  562. this.queryParams.page = 1
  563. this.total = 0
  564. this.fetchPatientInspections(this.queryParams)
  565. } else {
  566. this.$message.error(response.data.msg)
  567. return false
  568. }
  569. })
  570. .catch(v => {
  571. this.$message.error(v)
  572. return false
  573. })
  574. this.formLoading = false
  575. return false
  576. } else {
  577. return false
  578. }
  579. })
  580. },
  581. fetchInspectionReference() {
  582. fetchInspectionReference(this.patientID)
  583. .then(response => {
  584. if (response.data.state == 1) {
  585. var reference = response.data.data.reference
  586. var patient_info = response.data.data.patient_info
  587. this.projects = reference
  588. this.patient_info = patient_info
  589. this.pageLoading = false
  590. this.form.remind_cycle = this.patient_info.remind_cycle
  591. } else {
  592. this.$message.error(response.data.msg)
  593. return false
  594. }
  595. })
  596. .catch(v => {})
  597. },
  598. setCurrent(row) {
  599. this.$refs.singleTable.setCurrentRow(row)
  600. },
  601. resetForm(formName) {
  602. this.$refs[formName].resetFields()
  603. },
  604. handleCurrentChange(row) {
  605. this.itemDate = ''
  606. this.form.method = 'add'
  607. if (typeof row === 'undefined' || row == null) {
  608. this.project = null
  609. this.items = []
  610. this.itemName = '请选择项目'
  611. } else {
  612. this.itemLoading = true
  613. this.project = row
  614. this.items = row.inspection_reference
  615. this.itemName = row.project_name
  616. this.queryParams.patient = this.patientID
  617. this.queryParams.project_id = this.project.project_id
  618. this.queryParams.page = 1
  619. this.total = 0
  620. this.fetchPatientInspections(this.queryParams)
  621. }
  622. },
  623. handleCurrentChangePage(val) {
  624. this.itemLoading = true
  625. this.queryParams.page = val
  626. this.fetchPatientInspections(this.queryParams)
  627. },
  628. fetchPatientInspections(params) {
  629. this.items = []
  630. fetchPatientInspections(params)
  631. .then(response => {
  632. if (response.data.state == 1) {
  633. var inspections = response.data.data.inspections
  634. this.total = response.data.data.total
  635. this.itemDate = response.data.data.date
  636. this.inspections = response.data.data.inspections
  637. if (inspections == null) {
  638. this.inspections = []
  639. return false
  640. }
  641. var inspectionsMap = {}
  642. this.inspectionsMap = {}
  643. for (var index in inspections) {
  644. inspectionsMap[inspections[index].item_id] = inspections[index]
  645. this.inspectionsMap[inspections[index].item_id] = inspections[index]
  646. }
  647. var items = this.project.inspection_reference
  648. for (var index in items) {
  649. if (items[index].id in inspectionsMap || items[index].item_id in inspectionsMap) {
  650. var item = {}
  651. for (var key in items[index]) {
  652. item[key] = items[index][key]
  653. }
  654. if (item.item_id > 0) {
  655. if (inspectionsMap[items[index].item_id] == undefined) {
  656. item.value = inspectionsMap[items[index].id].inspect_value
  657. } else {
  658. item.value = inspectionsMap[items[index].item_id].inspect_value
  659. }
  660. } else {
  661. item.value = inspectionsMap[items[index].id].inspect_value
  662. }
  663. item.value_direction = ''
  664. if (item.range_type == 1) {
  665. var value = parseFloat(item.value)
  666. var range_min = parseFloat(item.range_min)
  667. var range_max = parseFloat(item.range_max)
  668. if (value < range_min) {
  669. item.value_direction = '↓'
  670. } else if (value > range_max) {
  671. item.value_direction = '↑'
  672. }
  673. }
  674. this.items.push(item)
  675. }
  676. }
  677. console.log(this.items)
  678. }
  679. })
  680. .catch(v => {})
  681. setTimeout(() => {
  682. this.itemLoading = false
  683. }, 1000)
  684. }
  685. },
  686. created() {
  687. const id = this.$route.query && this.$route.query.id
  688. this.patientID = parseInt(id)
  689. if (isNaN(this.patientID) || this.patientID <= 0) {
  690. this.$notify.error({
  691. title: '错误',
  692. message: '无效的id'
  693. })
  694. this.$router.push('/patients/patients')
  695. }
  696. this.fetchInspectionReference()
  697. }
  698. }
  699. </script>
  700. <style>
  701. #oictable ::-webkit-scrollbar {
  702. height: 15px;
  703. }
  704. </style>
  705. <style>
  706. #user-inspection-order td {
  707. border-bottom: 0px !important;
  708. border-right: 0px !important;
  709. }
  710. #user-inspection-order th {
  711. border-right: 0px !important;
  712. }
  713. #user-inspection-form .el-form-item__content {
  714. line-height: 0 !important;
  715. }
  716. .el-table td,
  717. .el-table th.is-leaf,
  718. .el-table--border,
  719. .el-table--group {
  720. border-color: #d0d3da;
  721. }
  722. .el-table--border::after,
  723. .el-table--group::after,
  724. .el-table::before {
  725. background-color: #d0d3da;
  726. }
  727. </style>