examineList.vue 22 KB

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