You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

588 lines
22 KiB

3 years ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 years ago
2 years ago
3 years ago
3 years ago
2 years ago
3 years ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 years ago
3 years ago
2 years ago
3 years ago
2 years ago
3 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 months ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <template>
  2. <div style="display: flex">
  3. <div :style="'width:' + (window.pageWidth - 200 - 145) + 'px;'">
  4. <u-table :data="tableData" width="100%" border :height="window.pageHeight < 600 ? 330 : window.pageHeight - 240"
  5. row-key="id" size="small" highlight-current-row ref="tableData"
  6. @selection-change="handleSelectionChange" @table-body-scroll="scrollFull" use-virtual :row-height="25">
  7. <u-table-column type="selection" width="40" align="center"/>
  8. <u-table-column prop="isMedicalStart" label="签到" width="50" align="center">
  9. <template slot-scope="scope">
  10. <el-checkbox :value="scope.row.isMedicalStart == 'Y'" />
  11. </template>
  12. </u-table-column>
  13. <u-table-column prop="medicalStartDate" label="签到日期" width="90" align="center">
  14. <template slot-scope="scope">
  15. <div>{{ lmoment(scope.row.medicalStartDate, "yyyy-MM-DD") }}</div>
  16. </template>
  17. </u-table-column>
  18. <u-table-column prop="completeFlag" label="体检进度" align="center">
  19. <template slot-scope="scope">
  20. <div>{{ ldddw(dict.completeFlag, "id", scope.row.completeFlag, "displayName") }}</div>
  21. </template>
  22. </u-table-column>
  23. <u-table-column prop="isLock" label="锁住" width="50" align="center">
  24. <template slot-scope="scope">
  25. <div>{{ scope.row.isLock == "Y" ? "是" : "否" }}</div>
  26. </template>
  27. </u-table-column>
  28. <u-table-column prop="customerOrgParentName" label="单位" width="180">
  29. <template slot-scope="scope">
  30. <div>{{ scope.row.customerOrgParentName ? scope.row.customerOrgParentName : scope.row.customerOrgName }}</div>
  31. </template>
  32. </u-table-column>
  33. <u-table-column prop="customerOrgName" label="部门" width="180">
  34. <template slot-scope="scope">
  35. <div>{{ scope.row.customerOrgParentName ? scope.row.customerOrgName : "" }}</div>
  36. </template>
  37. </u-table-column>
  38. <u-table-column prop="patientName" label="姓名" align="center"/>
  39. <u-table-column prop="sexId" label="性别" align="center">
  40. <template slot-scope="scope">
  41. <div>{{ ldddw(dict.sex, "id", scope.row.sexId, "displayName") }}</div>
  42. </template>
  43. </u-table-column>
  44. <u-table-column prop="age" label="年龄" align="center"/>
  45. <u-table-column prop="patientRegisterNo" label="条码号" width="130" align="center"/>
  46. <u-table-column prop="patientNo" label="档案号" align="center"/>
  47. <u-table-column prop="medicalTimes" label="体检次数" align="center"></u-table-column>
  48. <u-table-column label="分组/套餐" width="150">
  49. <template slot-scope="scope">
  50. <div v-if="scope.row.medicalPackageId !== dict.personOrgId && scope.row.customerOrgId === dict.personOrgId">
  51. {{ scope.row.medicalPackageName }}
  52. </div>
  53. <div v-else>
  54. {{ scope.row.customerOrgGroupName }}
  55. </div>
  56. </template>
  57. </u-table-column>
  58. <u-table-column prop="nationName" label="民族" align="center">
  59. </u-table-column>
  60. <u-table-column prop="idNo" label="身份证" width="150" align="center"/>
  61. <u-table-column prop="birthDate" label="出生日期" width="100" align="center">
  62. <template slot-scope="scope">
  63. <div v-if="scope.row.birthDate">
  64. {{ lmoment(scope.row.birthDate, "yyyy-MM-DD") }}
  65. </div>
  66. </template>
  67. </u-table-column>
  68. <u-table-column prop="email" label="邮箱" width="100" align="center"/>
  69. <u-table-column prop="mobileTelephone" label="手机" width="130"align="center" />
  70. <u-table-column prop="telephone" label="电话" width="100" />
  71. <u-table-column prop="address" label="地址" width="300" />
  72. <u-table-column prop="medicalCardNo" label="体检卡号" align="center"/>
  73. <u-table-column prop="jobCardNo" label="工卡号" align="center"/>
  74. <u-table-column prop="maritalStatusName" label="婚姻状况" align="center">
  75. </u-table-column>
  76. <u-table-column prop="medicalTypeId" label="体检类别">
  77. <template slot-scope="scope">
  78. <div v-if="scope.row.medicalTypeId !== dict.personOrgId">
  79. {{ ldddw(dict.medicalType, "id", scope.row.medicalTypeId, "displayName") }}
  80. </div>
  81. </template>
  82. </u-table-column>
  83. <u-table-column prop="personnelTypeId" label="人员类别">
  84. <template slot-scope="scope">
  85. <div v-if="scope.row.personnelTypeId !== dict.personOrgId">
  86. {{ ldddw(dict.personnelType, "id", scope.row.personnelTypeId, "displayName") }}
  87. </div>
  88. </template>
  89. </u-table-column>
  90. <u-table-column prop="jobPost" label="职务" />
  91. <u-table-column prop="jobTitle" label="职称" />
  92. <u-table-column prop="salesman" label="介绍人" align="center"/>
  93. <u-table-column prop="isVip" label="是否VIP" align="center">
  94. <template slot-scope="scope">
  95. <div>{{ scope.row.isVip == "Y" ? "是" : "否" }}</div>
  96. </template>
  97. </u-table-column>
  98. <u-table-column prop="creatorName" label="登记人" align="center"/>
  99. <u-table-column prop="creationTime" label="登记日期" width="100" align="center">
  100. <template slot-scope="scope">
  101. <div>{{ lmoment(scope.row.creationTime, "yyyy-MM-DD") }}</div>
  102. </template>
  103. </u-table-column>
  104. <u-table-column prop="isUpload" label="是否上传" align="center">
  105. <template slot-scope="scope">
  106. <div>{{ scope.row.isUpload == "Y" ? "是" : "否" }}</div>
  107. </template>
  108. </u-table-column>
  109. </u-table>
  110. <div style="display: flex; justify-content: space-between">
  111. <div></div>
  112. <div>
  113. <span style="font-size: 12px">{{ loadOpts.totalCount }} 条记录当前显示{{
  114. tableData.length
  115. }}
  116. </span>
  117. </div>
  118. </div>
  119. </div>
  120. <div style="margin-left: 10px;">
  121. <div class="listBtn">
  122. <el-button type="success" class="commonbutton" @click="sign">签到</el-button>
  123. </div>
  124. <div class="listBtn">
  125. <el-button type="primary" class="commonbutton" @click="scanSign">扫码签到</el-button>
  126. </div>
  127. </div>
  128. <el-dialog title="扫/输入条码签到" :visible.sync="dialogVisible">
  129. <el-form :model="form">
  130. <el-form-item label="条码" label-width="100px">
  131. <el-input v-model="form.patientRegisterNo" @change="signByPatientRegisterNo"></el-input>
  132. </el-form-item>
  133. </el-form>
  134. <div slot="footer" class="dialog-footer">
  135. <el-button @click="dialogVisible = false">关闭</el-button>
  136. <el-button type="primary" @click="signByPatientRegisterNo">确定</el-button>
  137. </div>
  138. </el-dialog>
  139. </div>
  140. </template>
  141. <script>
  142. import moment from "moment";
  143. import { mapState, mapActions } from "vuex";
  144. import { getapi, postapi, putapi, deletapi } from "@/api/api";
  145. import { dddw, objCopy, arrayReduce } from "@/utlis/proFunc";
  146. import PatientRegisterEdit from "../../components/patientRegister/PatientRegisterEdit.vue";
  147. import Camera from "../../components/patientRegister/Camera.vue";
  148. import { UTable, UTableColumn } from "umy-ui";
  149. export default {
  150. components: {
  151. PatientRegisterEdit,
  152. Camera,UTable, UTableColumn
  153. },
  154. props: ["refQueryCondition"],
  155. data() {
  156. return {
  157. tableData: [], //列表数据
  158. multipleSelection: [], //选中的数据列表
  159. dialogVisible: false,
  160. form:{
  161. patientRegisterNo:''
  162. },
  163. patient_register_query_idno: 'Y', // 身份证排他
  164. patient_register_query_name: 'N', // 姓名排他
  165. patient_register_read_idno_upPhoto: 'N', // 读身份证查询 是否更新照片
  166. LocalConfig: {
  167. normal: {
  168. maxResultCount: 100, //分页时单页记录数
  169. },
  170. },
  171. loadOpts: {
  172. totalCount: 0,
  173. skipCount: 0,
  174. maxResultCount: 100,
  175. },
  176. loadOptsInit: {},
  177. lazyLoading:false,
  178. };
  179. },
  180. created() {
  181. try {
  182. let LocalConfig = JSON.parse(window.localStorage.getItem("LocalConfig") || null)
  183. if (LocalConfig?.normal?.maxResultCount){
  184. this.LocalConfig.normal.maxResultCount = LocalConfig.normal.maxResultCount
  185. }
  186. } catch (error) {
  187. console.log('window.localStorage.getItem("LocalConfig")', error);
  188. }
  189. // console.log('this.LocalConfig',this.LocalConfig)
  190. this.loadOpts.maxResultCount = Number(
  191. this.LocalConfig.normal.maxResultCount || 100
  192. );
  193. this.loadOptsInit = Object.assign({}, this.loadOpts);
  194. // 获取系统参数 -- 身份证排他
  195. postapi("/api/app/SysParmValue/GetSysParmValueBySysParmId",
  196. { sysParmId: "patient_register_query_idno" }
  197. ).then((res) => {
  198. if (res.code > -1) {
  199. this.patient_register_query_idno = res.data || "Y";
  200. }
  201. });
  202. // 获取系统参数 -- 姓名排他
  203. postapi("/api/app/SysParmValue/GetSysParmValueBySysParmId",
  204. { sysParmId: "patient_register_query_name" }
  205. ).then((res) => {
  206. if (res.code > -1) {
  207. this.patient_register_query_name = res.data || "N";
  208. }
  209. });
  210. // 获取系统参数 -- 读身份证 是否更新照片
  211. postapi("/api/app/SysParmValue/GetSysParmValueBySysParmId",
  212. { sysParmId: "patient_register_read_idno_upPhoto" }
  213. ).then((res) => {
  214. if (res.code > -1) {
  215. this.patient_register_read_idno_upPhoto = res.data || "N";
  216. }
  217. });
  218. },
  219. //挂载完成
  220. mounted() { },
  221. computed: {
  222. ...mapState(["window","dict", "patientRegister", "customerOrg"]),
  223. },
  224. methods: {
  225. ...mapActions(["getCustomerOrgGroup", "getPatientRegisterAbs"]),
  226. handleSelectionChange(val) {
  227. this.multipleSelection = val;
  228. },
  229. signCore(body){
  230. postapi(`/api/app/patientregister/updatesigninmany`, body)
  231. .then((res) => {
  232. if (res.code != -1){
  233. console.log("操作成功");
  234. }
  235. })
  236. },
  237. //选中人员签到
  238. sign() {
  239. if (!this.multipleSelection || this.multipleSelection.length < 1 ) {
  240. this.$message.warning({ showClose: true, message: "请选择体检人员,再进行此操作"});
  241. return;
  242. }
  243. let body = []
  244. this.multipleSelection.forEach(e =>{
  245. body.push(e.id)
  246. });
  247. this.signCore(body)
  248. },
  249. scanSign(){
  250. this.dialogVisible = true
  251. },
  252. //按条码号查个人数据
  253. signByPatientRegisterNo() {
  254. let patientRegisterNo = this.form.patientRegisterNo
  255. let body = {
  256. sType:1,
  257. patientRegisterNo
  258. }
  259. console.log(`/api/app/patientregister/getpatientregisterorpatient`,body)
  260. postapi('/api/app/patientregister/getpatientregisterorpatient',body)
  261. .then((res) => {
  262. if (res.code != -1) {
  263. if(res.data){
  264. this.signCore([res.data.id])
  265. this.form.patientRegisterNo = ''
  266. }
  267. }
  268. });
  269. },
  270. ldddw(arrayData, key, value, display) {
  271. return dddw(arrayData, key, value, display);
  272. },
  273. lmoment(date, forMat) {
  274. return moment(new Date(date)).format(forMat);
  275. },
  276. //查询
  277. async Query() {
  278. // 查询时,清掉明细数据 (滚动时不清)
  279. this.tableDataCurrentRow = {}; // 清除选择
  280. if (
  281. !(
  282. this.patientRegister.query.isSeries == "Y" &&
  283. this.patientRegister.query.patientRegisterNo
  284. )
  285. ) {
  286. this.tableData = [];
  287. }
  288. this.loadOpts = Object.assign(this.loadOpts, this.loadOptsInit);
  289. await this.getPrList();
  290. },
  291. //数据量多时,滚动加载
  292. async load() {
  293. this.loadOpts.skipCount++;
  294. await this.getPrList();
  295. this.lazyLoading = false
  296. },
  297. // 查询获取人员列表数据
  298. async getPrList() {
  299. if (
  300. this.loadOpts.skipCount != 0 &&
  301. this.loadOpts.skipCount * this.loadOpts.maxResultCount >=
  302. this.loadOpts.totalCount
  303. )
  304. return;
  305. // console.log('getPrList', this.loadOpts)
  306. let body = Object.assign({}, this.loadOpts)
  307. let queryType = this.refQueryCondition.queryType
  308. console.log('getPrList.this.refQueryCondition', this.refQueryCondition)
  309. // 非排他查询条件 ===================== Start ==========================
  310. if (!queryType) {
  311. // 查询条件--日期
  312. if (this.refQueryCondition.startDate && this.refQueryCondition.endDate) {
  313. body.dateType = this.refQueryCondition.dateType;
  314. body.startDate = this.refQueryCondition.startDate
  315. body.endDate = this.refQueryCondition.endDate
  316. if (body.startDate > body.endDate) {
  317. this.$message.warning({
  318. showClose: true,
  319. message: "起始日期不能大于截止日期,数据校验不通过!",
  320. });
  321. return;
  322. }
  323. }
  324. // 查询条件--单位、次数、分组
  325. if (this.refQueryCondition.customerOrgFlag) {
  326. if (this.refQueryCondition.customerOrgId) body.customerOrgId = this.refQueryCondition.customerOrgId
  327. // 获取单位体检次数与分组
  328. try {
  329. if (
  330. this.refQueryCondition.customerOrgId &&
  331. this.refQueryCondition.customerOrgId != this.dict.personOrgId &&
  332. this.refQueryCondition.customerOrgRegister.id
  333. ) {
  334. body.customerOrgRegisterId = this.refQueryCondition.customerOrgRegister.id;
  335. if (this.refQueryCondition.customerOrgGroupIds) body.customerOrgGroupIds = this.refQueryCondition.customerOrgGroupIds
  336. }
  337. } catch (error) {
  338. console.error(error);
  339. }
  340. }
  341. // 电话
  342. if (this.refQueryCondition.phone) body.phone = this.refQueryCondition.phone
  343. // 性别
  344. if (this.refQueryCondition.sexId) body.sexId = this.refQueryCondition.sexId
  345. // 体检类别
  346. if (this.refQueryCondition.medicalTypeIds) body.medicalTypeIds = this.refQueryCondition.medicalTypeIds
  347. // 人员状态
  348. if (this.refQueryCondition.completeFlags) body.completeFlags = this.refQueryCondition.completeFlags
  349. // 人员类别
  350. if (this.refQueryCondition.personnelTypeIds) body.personnelTypeIds = this.refQueryCondition.personnelTypeIds
  351. // 表格回收状态
  352. if (this.refQueryCondition.isRecoverGuide) body.isRecoverGuide = this.refQueryCondition.isRecoverGuide
  353. // 排他条件有值时
  354. if (this.refQueryCondition.patientRegisterNo) {
  355. queryType = "patientRegisterNo"
  356. } else if (this.refQueryCondition.pacsNo) {
  357. queryType = "pacsNo"
  358. } else if (this.refQueryCondition.lisNo) {
  359. queryType = "lisNo"
  360. } else if (this.refQueryCondition.patientNo) {
  361. queryType = "patientNo"
  362. } else if (this.refQueryCondition.idCardNo) {
  363. queryType = "idCardNo"
  364. } else if (this.refQueryCondition.patientName) {
  365. queryType = "patientName"
  366. }
  367. }
  368. // 非排他查询条件 ===================== End ==========================
  369. // 排他查询条件
  370. let photo = ''
  371. switch (queryType) {
  372. case 'patientName': // 姓名排他判断
  373. if (this.refQueryCondition.patientName) {
  374. body.patientName = this.refQueryCondition.patientName;
  375. if (this.patient_register_query_name == 'Y') {
  376. body = {
  377. patientName: this.refQueryCondition.patientName,
  378. skipCount: this.loadOpts.skipCount,
  379. maxResultCount: this.loadOpts.maxResultCount,
  380. };
  381. }
  382. }
  383. break;
  384. case 'idCardNo': // 身份证排他判断
  385. if (this.refQueryCondition.idCardNo) {
  386. body.idNo = this.refQueryCondition.idCardNo;
  387. if (this.patient_register_query_idno == 'Y') {
  388. body = {
  389. idNo: this.refQueryCondition.idCardNo,
  390. skipCount: this.loadOpts.skipCount,
  391. maxResultCount: this.loadOpts.maxResultCount,
  392. };
  393. }
  394. }
  395. if (this.refQueryCondition.photo) photo = this.refQueryCondition.photo;
  396. break;
  397. case 'patientNo': // 档案号排他判断
  398. if (this.refQueryCondition.patientNo)
  399. body = {
  400. patientNo: this.refQueryCondition.patientNo,
  401. skipCount: this.loadOpts.skipCount,
  402. maxResultCount: this.loadOpts.maxResultCount,
  403. };
  404. break;
  405. case 'patientRegisterNo': // 条码号排他判断
  406. if (this.refQueryCondition.patientRegisterNo)
  407. body = {
  408. patientRegisterNo: this.refQueryCondition.patientRegisterNo,
  409. skipCount: this.loadOpts.skipCount,
  410. maxResultCount: this.loadOpts.maxResultCount,
  411. };
  412. break;
  413. case 'pacsNo': // 检查条码排他判断
  414. if (this.refQueryCondition.pacsNo)
  415. body = {
  416. pacsNo: this.refQueryCondition.pacsNo,
  417. skipCount: this.loadOpts.skipCount,
  418. maxResultCount: this.loadOpts.maxResultCount,
  419. };
  420. break;
  421. case 'lisNo': // 检验条码排他判断
  422. if (this.refQueryCondition.lisNo)
  423. body = {
  424. lisNo: this.refQueryCondition.lisNo,
  425. skipCount: this.loadOpts.skipCount,
  426. maxResultCount: this.loadOpts.maxResultCount,
  427. };
  428. break;
  429. default: //
  430. break;
  431. }
  432. // 带费且合计 /api/app/PatientRegister/GetPatientRegisterWithCharge
  433. // 不带费且合计 /api/app/patientregister/getlistinfilter
  434. postapi(
  435. "/api/app/patientregister/getlistinfilter",
  436. body
  437. ).then(async (res) => {
  438. if (res.code > -1) {
  439. // 刷新最大记录数
  440. this.loadOpts.totalCount = res.data.totalCount;
  441. let curLoad = res.data.items;
  442. // let oldCount = 0
  443. // 处理:
  444. // 1、分组/套餐 排序混乱的问题
  445. // 2、扫身份证查询时,无照片自动更新照片(参数控制)
  446. curLoad.forEach((e) => {
  447. // 1、分组/套餐 排序混乱的问题
  448. if (e.customerOrgId == this.dict.personOrgId) {
  449. e.groupPack = e.medicalPackageId;
  450. } else {
  451. e.groupPack = e.customerOrgGroupId;
  452. }
  453. // 2、扫身份证查询时,无照片自动更新照片(参数控制)
  454. if (this.patient_register_read_idno_upPhoto == "Y" && photo) {
  455. if (!e.photo) {
  456. savePeoplePhoto(e.id, photo);
  457. }
  458. }
  459. });
  460. // 不是连续扫码时,需要判断是否分页查询(连续扫码不清原来的数据)
  461. // console.log("this.refQueryCondition", this.refQueryCondition.isSeries, this.refQueryCondition.patientRegisterNo);
  462. if (this.refQueryCondition.isSeries == "Y" && this.refQueryCondition.patientRegisterNo) {
  463. // 如果已经存在列表中,则不在添加
  464. for (let index = curLoad.length - 1; index > -1; index--) {
  465. const e = curLoad[index];
  466. if (arrayExistObj(this.tableData, 'id', e.id) > -1) curLoad.splice(index, 1)
  467. }
  468. } else {
  469. if (body.skipCount == 0) {
  470. //查询
  471. this.tableData = [];
  472. }
  473. }
  474. this.tableData = this.tableData.concat(curLoad);
  475. // else {
  476. // // 懒加载 ,原数据集不用清空
  477. // oldCount = this.tableData.length
  478. // }
  479. // curLoad.forEach((e, index) => {
  480. // this.tableData.push(Object.assign({ index: Number(oldCount) + Number(index), choosed: false }, e))
  481. // })
  482. }
  483. });
  484. },
  485. //滚动加载数据
  486. async scrollFull(scroll, event) {
  487. if (!scroll.judgeFlse) return;
  488. // 正在加载时阻止重复触发
  489. if (this.lazyLoading) return;
  490. if (
  491. (Number(this.loadOpts.skipCount) + 1) *
  492. Number(this.loadOpts.maxResultCount) >=
  493. Number(this.loadOpts.totalCount)
  494. ) {
  495. return;
  496. }
  497. this.lazyLoading = true;
  498. try {
  499. await this.load();
  500. } catch (e) {
  501. console.error('scrollFull load error', e);
  502. }
  503. // this.dom = this.$refs['tableData'].bodyWrapper
  504. // console.log('obj', this.dom)
  505. // this.dom.addEventListener('scroll', async () => {
  506. // // console.log('scrollTop',this.dom.scrollTop,'clientHeight',this.dom.clientHeight,'scrollHeight',this.dom.scrollHeight);
  507. // if (this.dom.scrollTop + this.dom.clientHeight + 20 > this.dom.scrollHeight && !this.lazyLoading) {
  508. // // 获取到的不是全部数据 当滚动到底部
  509. // //console.log('scrollTop', obj.scrollTop, 'clientHeight', obj.clientHeight, 'scrollHeight', obj.scrollHeight);
  510. // if (Number(this.loadOpts.skipCount) * Number(this.loadOpts.maxResultCount) >= Number(this.loadOpts.totalCount)) {
  511. // this.lazyLoading = false
  512. // } else {
  513. // this.lazyLoading = true
  514. // this.load()
  515. // // this.dom.scrollTop = this.dom.scrollTop - 100
  516. // }
  517. // }
  518. // })
  519. },
  520. },
  521. //监听事件
  522. watch: {
  523. //触发查询事件
  524. "refQueryCondition.queryConditionTimes"(newVal, oldVal) {
  525. if (newVal != oldVal) {
  526. console.log('签到--触发查询 refQueryCondition.queryConditionTimes', oldVal, newVal)
  527. this.Query();
  528. }
  529. },
  530. },
  531. };
  532. </script>
  533. <style scoped>
  534. .listBtn {
  535. margin-top: 10px;
  536. }
  537. .btnClass{
  538. width:100px;
  539. }
  540. </style>