examineList.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982
  1. <!-- 安全检查-校院巡查管理 -->
  2. <template>
  3. <view class="examine">
  4. <view class="header">
  5. <view class="tabTitle_tow">
  6. <view class="tabTitle_tow_li" @tap="tabClickTow(index)" :key="index" v-for="(item,index) in tabTextTow">
  7. <view :class="{on:curTabTow==index}" class="tabTitle_tow_text">{{item}}</view>
  8. <view :class="{on:curTabTow==index}" class="tabTitle_tow_across"></view>
  9. </view>
  10. </view>
  11. <view class="lab_title">
  12. <picker @change="collegeChange" :value="collegeIndex" :range="collegeArray" class="lab_title_l">
  13. <view class="lab_title_l_n">
  14. <view>{{getData.deptName?getData.deptName:'选择学院'}}</view>
  15. <img src="@/pages_safetyExamine/images/icon_06.png">
  16. </view>
  17. </picker>
  18. <view class="lab_title_r">
  19. <input type="text" v-model="getData.searchValue" placeholder="请输入实验室名称" name="search"
  20. @confirm='searchBtn' confirm-type='search' maxlength="50"
  21. placeholder-style="color: #CCCCCC;font-size:26rpx;">
  22. <view v-if="getData.searchValue>0" class="lab_title_r_btn" @click="clearBtn">
  23. <img src="@/pages_safetyExamine/images/clear.png" />
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <scroll-view scroll-y @scrolltolower="scrollGet" class="info-max-box">
  29. <view class="list_three">
  30. <view class="list_three_li" v-for="(item,index) in dataList" :key="index">
  31. <view class="list_three_li_t">
  32. <view class="list_three_li_t_l">
  33. <img v-if="item.checkRange==1" src="@/pages_safetyExamine/images/icon_xyxc_qx.png" />
  34. <img v-if="item.checkRange==2" src="@/pages_safetyExamine/images/icon_xyxc_xy.png" />
  35. <img v-if="item.checkRange==3" src="@/pages_safetyExamine/images/icon_xyxc_sys.png" />
  36. <text></text>
  37. </view>
  38. <view class="list_three_li_t_c">{{item.subjectName}}-{{item.roomNumber}}</view>
  39. <view class="list_three_li_t_c2" v-if="item.isOverdue==1">已逾期</view>
  40. <view class="list_three_li_t_r"></view>
  41. </view>
  42. <view class="list_three_li_m">
  43. <view class="list_three_li_m_t">{{item.title}}</view>
  44. <view class="list_three_li_m_b">
  45. <text class="blue_color" v-if="item.manageStatus==0">待检查</text>
  46. <text class="red_color" v-if="item.manageStatus==1">检查中</text>
  47. <text class="green_color" v-if="item.manageStatus==2">已检查</text>
  48. <text>{{item.checkType==1?'校院巡查':'实验室自查'}}-{{item.checkCategory==1?'综合检查':'专项检查'}}</text>
  49. <text>{{item.collegeName}}</text>
  50. </view>
  51. </view>
  52. <!-- 开始检查 -->
  53. <view v-if="buttonHide && item.isSelfData==1">
  54. <view v-if="item.manageStatus==0 && item.notStarted" class="list_three_li_b"
  55. @click="handleClick(item,'add')">开始检查</view>
  56. <view v-if="item.manageStatus==1 && item.notStarted" class="list_three_li_b"
  57. @click="handleClick(item,'edit')">编辑</view>
  58. <view v-if="!item.notStarted" class="list_three_li_b_tow"><img
  59. src="@/pages_safetyExamine/images/icon_xyxcgl_jhwks.png" />计划未开始</view>
  60. <view v-if="item.manageStatus==2 && item.notStarted" class="list_three_li_b_three">
  61. <img src="@/pages_safetyExamine/images/icon_djcsys.png" />
  62. <text>整改进度:</text>
  63. <text v-if="item.checkResult==0"
  64. @click="handleClick(item,'detail')">{{item.rectifySchedule}}</text>
  65. <text v-if="item.checkResult==1" @click="handleClick(item,'detail')">已完成</text>
  66. <text v-if="item.isEndProcess==1" class="report"
  67. @click="handleClick(item,'download')">整改报告</text>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. <img class="null-img" v-if="!dataList[0]" src="@/pages_safetyExamine/images/null-data-1.png">
  73. </scroll-view>
  74. <view class="bottom_btn" @click="handleClick('','startInspect')">开始检查</view>
  75. </view>
  76. </template>
  77. <script>
  78. import {
  79. config
  80. } from '@/api/request/config.js'
  81. import {
  82. checkManageList,
  83. } from '@/api/apiDemo/index.js'
  84. import {
  85. systemDeptDropList
  86. } from '@/pages_safetyExamine/api/index.js'
  87. export default {
  88. name: "rectifyList",
  89. components: {
  90. },
  91. data() {
  92. return {
  93. pageType: 0,
  94. //列表请求参数
  95. getData: {
  96. pageNum: 1,
  97. pageSize: 20,
  98. isSelf: 0, //是否本人查询
  99. checkType: '', //检查组织(0全部1校院巡查2实验室自查)
  100. manageStatus: -1, //管理状态(-1全部 0待检查,1检查中,2已检查)
  101. searchValue: '',
  102. },
  103. tabTextTow: ['全部', '待检查', '检查中', '已检查'],
  104. curTabTow: 0,
  105. form: {
  106. name: '',
  107. type: '校院巡查',
  108. startTime: '',
  109. endTime: '',
  110. inspectScope: [],
  111. tiemQuickList: [],
  112. scopeIndex: '',
  113. seleteListLab: [],
  114. patrolIndex: '',
  115. seleteListMember: [],
  116. },
  117. collegeList: [],
  118. collegeIndex: 0,
  119. collegeArray: [],
  120. dataList: [],
  121. currentDate: '',
  122. myApplyGentle: '', //自查身份 校院巡查管理 里操作按钮隐藏
  123. applyGentle: '', //检查组身份 实验室自查管理 里操作按钮隐藏
  124. buttonHide: false, //判断按钮显示隐藏
  125. }
  126. },
  127. onLoad(option) {
  128. this.myApplyGentle = uni.getStorageSync('gentleIdentifierData').myApplyGentle
  129. this.applyGentle = uni.getStorageSync('gentleIdentifierData').applyGentle
  130. if (option.pageType == 1) {
  131. this.getData.checkType = option.pageType
  132. uni.setNavigationBarTitle({
  133. title: '校院巡查管理'
  134. })
  135. if (this.myApplyGentle && !this.applyGentle) {
  136. this.buttonHide = false
  137. }
  138. if (!this.myApplyGentle && !this.applyGentle) {
  139. this.buttonHide = false
  140. } else {
  141. this.buttonHide = true;
  142. }
  143. } else if (option.pageType == 2) {
  144. this.getData.checkType = option.pageType
  145. uni.setNavigationBarTitle({
  146. title: '实验室自查管理'
  147. })
  148. if (!this.myApplyGentle && this.applyGentle) {
  149. this.buttonHide = false
  150. }
  151. if (!this.myApplyGentle && !this.applyGentle) {
  152. this.buttonHide = false
  153. } else {
  154. this.buttonHide = true;
  155. }
  156. }
  157. },
  158. onShow() {
  159. },
  160. mounted() {
  161. //获取当前日期
  162. this.currentDate = this.getNowFormatDate()
  163. this.dataList = [];
  164. this.getList();
  165. this.systemDeptDropList();
  166. },
  167. methods: {
  168. //顶部tab点击
  169. tabClickTow(index) {
  170. this.curTabTow = index;
  171. this.getData.pageNum = 1;
  172. this.dataList = [];
  173. if (index == 0) {
  174. this.getData.manageStatus = -1;
  175. } else if (index == 1) {
  176. this.getData.manageStatus = 0;
  177. } else if (index == 2) {
  178. this.getData.manageStatus = 1;
  179. } else if (index == 3) {
  180. this.getData.manageStatus = 2;
  181. }
  182. this.getList()
  183. },
  184. //选择学院
  185. collegeChange(e) {
  186. this.collegeIndex = e.target.value;
  187. this.getData.deptId = this.collegeList[e.target.value].deptId
  188. this.getData.deptName = this.collegeList[e.target.value].deptName
  189. this.dataList = [];
  190. this.getList();
  191. },
  192. //实验室搜索
  193. searchBtn() {
  194. this.dataList = [];
  195. this.getList();
  196. },
  197. //清除
  198. clearBtn() {
  199. this.getData.pageNum = 1;
  200. this.collegeIndex = 0;
  201. this.getData.deptId = '';
  202. this.getData.deptName = '';
  203. this.getData.searchValue = '';
  204. this.dataList = [];
  205. this.getList();
  206. },
  207. //滚动事件
  208. scrollGet() {
  209. let self = this;
  210. if (self.total / self.getData.pageSize <= self.getData.pageNum) {
  211. console.log('没有更多数据!')
  212. } else {
  213. setTimeout(function() {
  214. self.getData.pageNum += 1;
  215. self.getList();
  216. }, 1000)
  217. }
  218. },
  219. //查询学院列表
  220. async systemDeptDropList() {
  221. let self=this;
  222. const {
  223. data
  224. } = await systemDeptDropList({
  225. deptName: '',
  226. level: 2,
  227. deptType: 1
  228. });
  229. if (data.code == 200) {
  230. data.data.forEach(function(item) {
  231. item.type = false;
  232. })
  233. self.collegeList = data.data;
  234. //检查管理
  235. for (let i = 0; i < data.data.length; i++) {
  236. self.collegeArray.push(data.data[i].deptName)
  237. }
  238. }
  239. },
  240. handleClick(row, doType) {
  241. let self = this;
  242. if (doType == 'add') { //开始检查
  243. uni.navigateTo({
  244. url: '/pages_safetyExamine/views/examineManage/examineAdd?id=' + row.id
  245. });
  246. } else if (doType == 'edit') {
  247. uni.navigateTo({
  248. url: '/pages_safetyExamine/views/examineManage/examineAdd?id=' + row.id
  249. });
  250. } else if (doType == 'detail') {
  251. uni.navigateTo({
  252. url: '/pages_safetyExamine/views/examineManage/examineDetail?id=' + row.id +
  253. '&manageStatus=' + row.manageStatus
  254. });
  255. } else if (doType == 'startInspect') { //开始检查
  256. uni.navigateTo({
  257. url: '/pages_safetyExamine/views/examineManage/examineAdd'
  258. });
  259. } else if (doType == 'download') { //整改报告下载rectifyNotice 整改通知(1整改告知书 2整改通知书)
  260. this.rectifyReport(row.id)
  261. }
  262. },
  263. //整改报告
  264. rectifyReport(id) {
  265. uni.showLoading({
  266. title: '下载中'
  267. });
  268. wx.downloadFile({
  269. url: config.base_url + '/zd-security/checkRectify/genReport/' + id,
  270. header: {
  271. Authorization: uni.getStorageSync('token')
  272. },
  273. success: function(res) {
  274. const fileManager = wx.getFileSystemManager()
  275. const filePath = wx.env.USER_DATA_PATH + '/(整改报告).docx'
  276. fileManager.saveFile({
  277. tempFilePath: res.tempFilePath,
  278. filePath,
  279. success: () => {
  280. uni.hideLoading();
  281. wx.openDocument({
  282. filePath: filePath,
  283. showMenu: true,
  284. fileType: 'docx'
  285. })
  286. },
  287. fail: function(res) {
  288. uni.hideLoading();
  289. uni.showToast({
  290. title: '下载失败',
  291. icon: "none",
  292. mask: true,
  293. duration: 2000
  294. });
  295. }
  296. })
  297. },
  298. fail: function(res) {
  299. uni.hideLoading();
  300. uni.showToast({
  301. title: '下载失败',
  302. icon: "none",
  303. mask: true,
  304. duration: 2000
  305. });
  306. }
  307. })
  308. },
  309. //整改通知书
  310. genNotice(id) {
  311. uni.showLoading({
  312. title: '下载中'
  313. });
  314. wx.downloadFile({
  315. url: config.base_url + '/zd-security/checkManage/getRectifyAdviceNote/' + id,
  316. header: {
  317. Authorization: uni.getStorageSync('token')
  318. },
  319. success: function(res) {
  320. const fileManager = wx.getFileSystemManager()
  321. const filePath = wx.env.USER_DATA_PATH + '/(整改通知书).docx'
  322. fileManager.saveFile({
  323. tempFilePath: res.tempFilePath,
  324. filePath,
  325. success: () => {
  326. uni.hideLoading();
  327. wx.openDocument({
  328. filePath: filePath,
  329. showMenu: true,
  330. fileType: 'docx'
  331. })
  332. },
  333. fail: function(res) {
  334. uni.hideLoading();
  335. uni.showToast({
  336. title: '下载失败',
  337. icon: "none",
  338. mask: true,
  339. duration: 2000
  340. });
  341. }
  342. })
  343. },
  344. fail: function(res) {
  345. uni.hideLoading();
  346. uni.showToast({
  347. title: '下载失败',
  348. icon: "none",
  349. mask: true,
  350. duration: 2000
  351. });
  352. }
  353. })
  354. },
  355. //整改告知书
  356. genReport(id) {
  357. uni.showLoading({
  358. title: '下载中'
  359. });
  360. wx.downloadFile({
  361. url: config.base_url + '/zd-security/checkManage/getRectifyNotification/' + id,
  362. header: {
  363. Authorization: uni.getStorageSync('token')
  364. },
  365. success: function(res) {
  366. const fileManager = wx.getFileSystemManager()
  367. const filePath = wx.env.USER_DATA_PATH + '/整改报告.docx'
  368. fileManager.saveFile({
  369. tempFilePath: res.tempFilePath,
  370. filePath,
  371. success: () => {
  372. uni.hideLoading();
  373. wx.openDocument({
  374. filePath: filePath,
  375. showMenu: true,
  376. fileType: 'docx'
  377. })
  378. },
  379. fail: function(res) {
  380. uni.hideLoading();
  381. uni.showToast({
  382. title: '下载失败',
  383. icon: "none",
  384. mask: true,
  385. duration: 2000
  386. });
  387. }
  388. })
  389. },
  390. fail: function(res) {
  391. uni.hideLoading();
  392. uni.showToast({
  393. title: '下载失败',
  394. icon: "none",
  395. mask: true,
  396. duration: 2000
  397. });
  398. }
  399. })
  400. },
  401. //获取当前日期函数
  402. getNowFormatDate() {
  403. let date = new Date(),
  404. year = date.getFullYear(), //获取完整的年份(4位)
  405. month = date.getMonth() + 1, //获取当前月份(0-11,0代表1月)
  406. strDate = date.getDate() // 获取当前日(1-31)
  407. if (month < 10) month = `0${month}` // 如果月份是个位数,在前面补0
  408. if (strDate < 10) strDate = `0${strDate}` // 如果日是个位数,在前面补0
  409. return `${year}-${month}-${strDate}`
  410. },
  411. //是否可以开始检查
  412. compareTime(date1) {
  413. if (!date1) {
  414. return false
  415. } else {
  416. const oDate1 = new Date(date1);
  417. const oDate2 = new Date(this.currentDate)
  418. if (oDate1.getTime() <= oDate2.getTime()) {
  419. return true; //可以开始
  420. } else {
  421. return false; //不能开始
  422. }
  423. }
  424. },
  425. async getList() {
  426. let self = this;
  427. const {
  428. data
  429. } = await checkManageList(this.getData);
  430. if (data.code == 200) {
  431. //判断计划是否开始
  432. data.data.records.forEach(function(item) {
  433. item.notStarted = self.compareTime(item.cycleStartTime)
  434. })
  435. this.dataList = [...this.dataList, ...data.data.records]
  436. this.total = data.data.total;
  437. }
  438. },
  439. }
  440. }
  441. </script>
  442. <style lang="stylus" scoped>
  443. .examine {
  444. height: 100%;
  445. display flex;
  446. // padding: 0 30rpx;
  447. // box-sizing: border-box;
  448. padding-bottom: 126rpx;
  449. box-sizing: border-box;
  450. .blue_color {
  451. color: #0183FA;
  452. border: 1rpx solid #0183FA;
  453. }
  454. .red_color {
  455. color: #FF4545;
  456. border: 1rpx solid #FF4545;
  457. }
  458. .green_color {
  459. color: #1FA50D;
  460. border: 1rpx solid #1FA50D;
  461. }
  462. .null-img {
  463. display block;
  464. width: 276rpx;
  465. height: 321rpx;
  466. margin: 100rpx 0 0 274rpx;
  467. }
  468. .info-max-box {
  469. flex: 1;
  470. overflow: scroll;
  471. padding: 220rpx 0rpx 0;
  472. box-sizing: border-box;
  473. }
  474. /* 切换按钮 */
  475. .header {
  476. width: 100%;
  477. position: fixed;
  478. top: 0rpx;
  479. z-index: 100;
  480. .tabTitle_tow {
  481. width: 100%;
  482. height: 100rpx;
  483. background: #fff;
  484. display flex;
  485. justify-content: flex-start;
  486. align-items: center;
  487. border-bottom: 1rpx solid #E0E0E0;
  488. .tabTitle_tow_li {
  489. position: relative;
  490. width: 146rpx;
  491. text-align center;
  492. .tabTitle_tow_text {
  493. display: inline-block;
  494. font-size: 30rpx;
  495. font-family: PingFang SC;
  496. font-weight: 500;
  497. color: #333333;
  498. line-height: 46rpx;
  499. position: relative;
  500. &.on {
  501. color: #0183FA;
  502. }
  503. }
  504. .tabTitle_tow_across {
  505. width: 50rpx;
  506. height: 4rpx;
  507. background: #0183FA;
  508. border-radius: 2rpx;
  509. margin-left: 46rpx;
  510. display none;
  511. &.on {
  512. display block;
  513. }
  514. }
  515. }
  516. }
  517. .lab_title {
  518. width: 750rpx;
  519. height: 100rpx;
  520. background: #FFFFFF;
  521. padding: 20rpx 30rpx;
  522. box-sizing: border-box;
  523. display: flex;
  524. justify-content: flex-start;
  525. .lab_title_l {
  526. width: 250rpx;
  527. height: 60rpx;
  528. margin-right: 20rpx;
  529. .lab_title_l_n {
  530. width: 250rpx;
  531. height: 60rpx;
  532. border-radius: 10rpx;
  533. border: 1rpx solid #E0E0E0;
  534. display: flex;
  535. justify-content: flex-start;
  536. align-items: center;
  537. >view {
  538. flex: 1;
  539. line-height: 60rpx;
  540. margin-left: 20rpx;
  541. color: #999999;
  542. font-size: 28rpx;
  543. white-space: nowrap;
  544. overflow: hidden;
  545. text-overflow: ellipsis;
  546. }
  547. >img {
  548. width: 14rpx;
  549. height: 8rpx;
  550. margin-right: 30rpx;
  551. }
  552. }
  553. }
  554. .lab_title_r {
  555. width: 420rpx;
  556. height: 60rpx;
  557. position: relative;
  558. border-radius: 10rpx;
  559. border: 1rpx solid #E0E0E0;
  560. .lab_title_r_btn {
  561. width: 60rpx;
  562. height: 60rpx;
  563. position: absolute;
  564. top: 0rpx;
  565. right: 0rpx;
  566. z-index: 100;
  567. >img {
  568. width: 20rpx;
  569. height: 20rpx;
  570. position: absolute;
  571. top: 20rpx;
  572. left: 24rpx;
  573. }
  574. }
  575. >input {
  576. width: 274rpx;
  577. height: 60rpx;
  578. position: absolute;
  579. top: 0rpx;
  580. left: 60rpx;
  581. }
  582. .clear {
  583. width: 60rpx;
  584. height: 60rpx;
  585. position: absolute;
  586. top: 0rpx;
  587. right: 20rpx;
  588. font-size: 30rpx;
  589. font-family: PingFang SC-Medium, PingFang SC;
  590. font-weight: 400;
  591. color: #0183FA;
  592. line-height: 60rpx;
  593. }
  594. }
  595. }
  596. }
  597. .list_three {
  598. padding: 0 30rpx;
  599. box-sizing: border-box;
  600. .list_three_li {
  601. position: relative;
  602. width: 690rpx;
  603. /* height: 360rpx; */
  604. height: auto;
  605. background: #fff;
  606. border-radius: 10rpx;
  607. overflow: hidden;
  608. margin-bottom: 20rpx;
  609. .list_three_li_t {
  610. width: 100%;
  611. height: 110rpx;
  612. position: relative;
  613. left: 0;
  614. top: 0;
  615. .list_three_li_t_l {
  616. >img {
  617. width: 70rpx;
  618. height: 70rpx;
  619. }
  620. >text {
  621. position: absolute;
  622. left: -15rpx;
  623. top: 76rpx;
  624. display: inline-block;
  625. width: 30rpx;
  626. height: 30rpx;
  627. background: #F5F5F5;
  628. border-radius: 15rpx;
  629. }
  630. }
  631. .list_three_li_t_c {
  632. width: 630rpx;
  633. height: 110rpx;
  634. position: absolute;
  635. left: 30rpx;
  636. top: 0;
  637. font-size: 30rpx;
  638. font-family: PingFang SC-Medium, PingFang SC;
  639. font-weight: 400;
  640. color: #333333;
  641. line-height: 110rpx;
  642. border-bottom: 1rpx dashed #D8D8D8;
  643. overflow: hidden;
  644. text-overflow: ellipsis;
  645. white-space: nowrap;
  646. padding-right: 120rpx;
  647. box-sizing: border-box;
  648. }
  649. .list_three_li_t_c2 {
  650. position: absolute;
  651. right: 20rpx;
  652. top: 38rpx;
  653. width: 120rpx;
  654. height: 40rpx;
  655. font-size: 28rpx;
  656. font-family: PingFang SC-Medium, PingFang SC;
  657. font-weight: 400;
  658. color: #FF5757;
  659. line-height: 40rpx;
  660. border: 1rpx solid #FF5757;
  661. border-radius: 6rpx;
  662. text-align: center;
  663. }
  664. .list_three_li_t_r {
  665. position: absolute;
  666. right: -15rpx;
  667. top: 76rpx;
  668. width: 30rpx;
  669. height: 30rpx;
  670. background: #F5F5F5;
  671. border-radius: 15rpx;
  672. }
  673. }
  674. .list_three_li_m {
  675. // position: absolute;
  676. // top: 110rpx;
  677. // left: 0;
  678. width: 690rpx;
  679. height: 158rpx;
  680. padding-left: 30rpx;
  681. box-sizing: border-box;
  682. .list_three_li_m_t {
  683. font-size: 28rpx;
  684. font-family: PingFang SC-Medium, PingFang SC;
  685. font-weight: 400;
  686. color: #666666;
  687. line-height: 40rpx;
  688. margin-top: 22rpx;
  689. }
  690. .list_three_li_m_b {
  691. margin-top: 26rpx;
  692. >text:nth-of-type(1) {
  693. font-size: 26rpx;
  694. font-family: PingFang SC-Medium, PingFang SC;
  695. font-weight: 400;
  696. line-height: 40rpx;
  697. border-radius: 6rpx;
  698. padding: 0 20rpx;
  699. margin-right: 14rpx;
  700. }
  701. >text:nth-of-type(2) {
  702. font-size: 26rpx;
  703. font-family: PingFang SC-Medium, PingFang SC;
  704. font-weight: 400;
  705. color: #0183FA;
  706. line-height: 40rpx;
  707. padding: 0 8rpx;
  708. border-radius: 6rpx;
  709. background: rgba(1, 131, 250, 0.1);
  710. margin-right: 24rpx;
  711. }
  712. >text:nth-of-type(3) {
  713. display: inline-block;
  714. width: 220rpx;
  715. font-size: 26rpx;
  716. font-family: PingFang SC-Medium, PingFang SC;
  717. font-weight: 400;
  718. color: #333333;
  719. line-height: 26rpx;
  720. overflow: hidden;
  721. text-overflow: ellipsis;
  722. white-space: nowrap;
  723. }
  724. }
  725. }
  726. .list_three_li_b {
  727. height: 80rpx;
  728. width: 100%;
  729. // position: absolute;
  730. // top: 278rpx;
  731. // left: 0;
  732. border-top: 1rpx solid #E0E0E0;
  733. font-size: 28rpx;
  734. font-family: PingFang SC-Medium, PingFang SC;
  735. font-weight: 400;
  736. color: #0183FA;
  737. line-height: 80rpx;
  738. text-align: center;
  739. }
  740. .list_three_li_b_tow {
  741. height: 80rpx;
  742. width: 100%;
  743. // position: absolute;
  744. // top: 278rpx;
  745. // left: 0;
  746. border-top: 1rpx solid #E0E0E0;
  747. font-size: 28rpx;
  748. font-family: PingFang SC-Medium, PingFang SC;
  749. font-weight: 400;
  750. color: #0183FA;
  751. line-height: 80rpx;
  752. display: flex;
  753. justify-content: center;
  754. align-items: center;
  755. >img {
  756. width: 28rpx;
  757. height: 30rpx;
  758. margin-right: 12rpx;
  759. }
  760. }
  761. .list_three_li_b_three {
  762. height: 80rpx;
  763. // position: absolute;
  764. // top: 278rpx;
  765. // left: 0;
  766. display: flex;
  767. justify-content: flex-start;
  768. align-items: center;
  769. width: 100%;
  770. border-top: 1rpx solid #E0E0E0;
  771. >img {
  772. width: 24rpx;
  773. height: 30rpx;
  774. margin-right: 26rpx;
  775. margin-left: 30rpx;
  776. }
  777. >text:nth-of-type(1) {
  778. font-size: 28rpx;
  779. font-family: PingFang SC-Medium, PingFang SC;
  780. font-weight: 400;
  781. color: #333333;
  782. line-height: 28rpx;
  783. }
  784. >text:nth-of-type(2) {
  785. flex: 1;
  786. font-size: 28rpx;
  787. font-family: PingFang SC-Medium, PingFang SC;
  788. font-weight: 400;
  789. color: #0183FA;
  790. line-height: 28rpx;
  791. white-space: nowrap;
  792. overflow: hidden;
  793. text-overflow: ellipsis;
  794. }
  795. .report {
  796. font-size: 28rpx;
  797. font-family: PingFang SC-Medium, PingFang SC;
  798. font-weight: 400;
  799. color: #0183FA;
  800. line-height: 28rpx;
  801. margin-right: 40rpx;
  802. }
  803. }
  804. }
  805. }
  806. .bottom_btn {
  807. position: fixed;
  808. bottom: 26rpx;
  809. left: 30rpx;
  810. font-size: 30rpx;
  811. font-family: PingFang SC-Medium, PingFang SC;
  812. font-weight: 400;
  813. color: #FFFFFF;
  814. line-height: 90rpx;
  815. width: 690rpx;
  816. height: 90rpx;
  817. background: #0183FA;
  818. border-radius: 20rpx;
  819. text-align: center;
  820. }
  821. /* 指纹采集 */
  822. .shade {
  823. height: 100%;
  824. width: 100%;
  825. position: fixed;
  826. display: flex;
  827. flex-direction: column;
  828. z-index: 10;
  829. background: rgba(0, 0, 0, 0.2);
  830. .null-box {
  831. flex: 1;
  832. }
  833. .shade_n {
  834. position: absolute;
  835. bottom: 0;
  836. left: 0;
  837. width: 750rpx;
  838. height: 560rpx;
  839. background: #FFFFFF;
  840. border-radius: 20rpx 20rpx 0rpx 0rpx;
  841. .shade_n_title {
  842. height: 100rpx;
  843. padding: 0 30rpx;
  844. box-sizing: border-box;
  845. display: flex;
  846. justify-content: space-between;
  847. border-bottom: 1rpx solid #E0E0E0;
  848. >text:nth-of-type(1) {
  849. font-size: 30rpx;
  850. font-family: PingFang SC-Medium, PingFang SC;
  851. font-weight: 400;
  852. color: #333333;
  853. line-height: 100rpx;
  854. }
  855. >text:nth-of-type(2) {
  856. font-size: 30rpx;
  857. font-family: PingFang SC-Medium, PingFang SC;
  858. font-weight: 400;
  859. color: #0183FA;
  860. line-height: 100rpx;
  861. }
  862. }
  863. .shade_n_b {
  864. height: 460rpx;
  865. padding: 0 30rpx;
  866. box-sizing: border-box;
  867. overflow-y: auto;
  868. .shade_n_b_li {
  869. display: flex;
  870. justify-content: space-between;
  871. align-items: center;
  872. height: 80rpx;
  873. border-bottom: 1rpx solid #E0E0E0;
  874. >text {
  875. font-size: 28rpx;
  876. font-family: PingFang SC-Medium, PingFang SC;
  877. font-weight: 400;
  878. line-height: 80rpx;
  879. overflow: hidden;
  880. text-overflow: ellipsis;
  881. white-space: nowrap;
  882. }
  883. >img {
  884. width: 24rpx;
  885. height: 16rpx;
  886. margin-right: 14rpx;
  887. }
  888. }
  889. .color_A {
  890. color: #333333;
  891. }
  892. .color_B {
  893. color: #0183FA;
  894. }
  895. }
  896. }
  897. }
  898. }
  899. </style>