123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002 |
- <!-- 安全检查-发起巡查计划 -->
- <template>
- <view class="examine">
- <scroll-view scroll-y @scrolltolower="scrollGet" class="info-max-box">
- <view class="basics">
- <view class="title">
- <view class="title_t">计划标题11</view>
- <textarea class="title_b" type="text" v-model="form.title" maxlength="200" placeholder="请输入检查计划标题" placeholder-style="color:#999999;font-size:30rpx;"></textarea>
- </view>
- <view class="type">
- <view class="type_l">检查组织</view>
- <input class="type_r" type="text" v-model="form.checkTypeName" placeholder="" disabled maxlength="20">
- </view>
- <view class="period">
- <view class="period_l">计划周期</view>
- <view class="period_r">
- <picker mode="date" @change="startChange(form,$event)">
- <input class="picker-text" disabled type="text" v-model="form.cycleStartTime" placeholder="开始时间">
- </picker>
- <view>至</view>
- <picker mode="date" @change="endChange(form,$event)">
- <input class="picker-text2" disabled type="text" v-model="form.cycleEndTime" placeholder="结束时间">
- </picker>
- </view>
- </view>
- <view class="tiem_quick">
- <view @click="tiemQuick(index)" :class="item.type?'tiem_quick_a':'tiem_quick_b'" v-for="(item,index) in tiemQuickList" :key="index">{{item.name}}</view>
- </view>
- <view class="scope">
- <view class="scope_l">检查范围</view>
- <picker @change="scopeChange" :value="scopeIndex" :range="scopeArray" class="scope_r">
- <view class="scope_r_n">
- <view>{{form.checkRange?(form.checkRange==1?'全校':(form.checkRange==2?'学院':'实验室')):'选择检查范围'}}</view>
- <img src="@/pages_safetyExamine/images/icon_06.png">
- </view>
- </picker>
- </view>
- <view class="scope_btn" v-if="scopeIndex==1 || scopeIndex==2" @click="collegeOrLab()">{{scopeIndex==1?'选择学院':'选择实验室'}}</view>
- <view class="scope_text" v-if="scopeIndex==0 || scopeIndex==1">已选择<text>{{form.collegeNum}}</text>个学院,共<text>{{form.subjectNum}}</text>间实验室</view>
- <view class="scope_text" v-if="scopeIndex==2">已选择<text>{{form.subjectNum}}</text>间实验室</view>
- <view class="scope">
- <view class="scope_l">检查类型</view>
- <picker @change="categoryChange" :value="categoryIndex" :range="categoryArray" class="scope_r">
- <view class="scope_r_n">
- <view>{{form.checkCategory==1?'综合检查':(form.checkCategory==2?'专项检查':'请选择检查类型')}}</view>
- <img src="@/pages_safetyExamine/images/icon_06.png">
- </view>
- </picker>
- </view>
- <view class="content" v-if="form.checkCategory==2">
- <view class="content_l">检查内容</view>
- <view class="content_r">
- <view class="content_r_l" @click="clickContent()">选择检查内容</view>
- <view class="content_r_r">已选择<text>{{form.hazardNum}}</text>种</view>
- </view>
- </view>
- <view class="title">
- <view class="title_t">检查要求</view>
- <textarea class="title_b" type="text" v-model="form.checkDemand" maxlength="100" placeholder="请输入检查要求" placeholder-style="color:#999999;font-size:30rpx;"></textarea>
- </view>
- </view>
- <view class="patrol_group" v-if="form.checkType==1">
- <view class="patrol">
- <view class="patrol_l">巡查组</view>
- <view class="patrol_r_n" @click="patrolChange">
- <view>{{form.checkGroupName?form.checkGroupName:'请选择巡查组'}}</view>
- <img src="@/pages_safetyExamine/images/icon_06.png">
- </view>
- </view>
- <view class="list">
- <view class="list_title"><img src="@/pages_safetyExamine/images/icon_jcjh_cy.png">成员</view>
- <view class="list_header"><text>工号</text><text>姓名</text></view>
- <view class="list_li" v-for="(item,index) in form.checkMemberDtoList" :key="index"><text>{{item.jobNum}}</text><text>{{item.name}}</text></view>
- <view class="list_bottom" v-if="form.checkMemberDtoList.length==0">无数据</view>
- </view>
- </view>
- </scroll-view>
- <view class="bottom_btn" @click="submitForm()">保存</view>
- <!-- 选择学院-->
- <view class="shade" v-if="dialogVisible">
- <view class="null-box" @click="dialogClose()"></view>
- <view class="shade_n">
- <view class="shade_n_title"><text>选择学院</text><text @click="collegeConfirm">确定</text></view>
- <view class="shade_n_b">
- <view class="shade_n_b_li" v-for="(item,index) in collegeList" :key="index" @click="collegeSelete(index)">
- <text :class="item.type?'color_B':'color_A'">{{item.deptName}}</text>
- <img v-if="item.type" src="@/pages_safetyExamine/images/icon_xzwt_xz.png">
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { config } from '@/api/request/config.js'
- import { checkPlanAdd,conditionCollegeInfo,getAllSubNum,isSCollege} from '@/api/apiDemo/index.js'
- export default {
- name: "rectifyList",
- components: {
- },
- data() {
- return {
- pageType:0,
- //列表请求参数
- getData:{
- pageNum:1,
- pageSize:20,
- },
- form:{
- title:'',
- checkType:'1',//1校院巡查 2实验室自查
- checkTypeName:'校院巡查',//1校院巡查 2实验室自查
- cycleStartTime:'',
- cycleEndTime:'',
- checkRange:'',//检查范围 1全校 2学院 3实验室
- checkLevel:'',//巡查组层级
- seleteListMember:[],//临时存储选中巡查组
- checkMemberDtoList:[],//巡查组成员
- collegeIds:'',//学院id组
- collegeNum:0,//学院数量
- subIds:'',//实验室id组
- subjectNum:0,//实验室数量
- hazardNum:0,//检查设备数量
- checkDemand:'',//检查要求
- tiemQuickList:[],
- scopeIndex:'',//0 全校 1学院 2实验室
- seleteListLab:[],
- seleteListDevice:[],
- groupDataType:'',//巡查组状态 院级/校级
- checkCategory:'',//检查类型 1综合检查 2专项检查
- },
- tiemQuickList:[{name:'本月',type:false},{name:'本季度',type:false},{name:'全年',type:false}],
- scopeIndex:0,
- scopeArray:['全校','学院','实验室'],
- categoryIndex:0,
- categoryArray:['综合检查','专项检查'],
- dialogVisible:false,
- collegeList:[]
- }
- },
- onLoad(option) {
- if(option.pageType){
- if(option.pageType==1){//校院巡查
- this.form.checkType=option.pageType;
- this.form.checkTypeName='校院巡查';
- uni.setNavigationBarTitle({
- title:'发起巡查计划'
- })
- }else if(option.pageType==2){//实验室自查
- this.form.checkType=option.pageType;
- this.form.checkTypeName='实验室自查';
- uni.setNavigationBarTitle({
- title:'发起自查计划'
- })
- }
- }
- },
- onShow(form) {
- if(form){
- this.form=JSON.parse(decodeURIComponent(form));
- this.tiemQuickList=this.form.tiemQuickList//时间快捷
- this.scopeIndex=this.form.scopeIndex//检查范围
- }
- },
- mounted(){
- this.isSCollege();
- },
- methods: {
- //滚动事件
- scrollGet(){
- },
- //顶部tab点击
- tabClick(index) {
- this.curTab = index;
- },
- //开始时间选中事件
- startChange(form,e){
- if(new Date(e.target.value).getTime()>new Date(form.cycleEndTime).getTime()){
- uni.showToast({
- title: '结束时间不能小于开始时间',
- icon:"none",
- mask:true,
- duration: 2000
- });
- }else{
- form.cycleStartTime=e.target.value
- this.tiemQuickList.forEach(function(item){
- item.type=false;
- })
- }
- },
- //结束时间选中事件
- endChange(form,e){
- if(new Date(form.cycleStartTime).getTime()>new Date(e.target.value).getTime()){
- uni.showToast({
- title: '结束时间不能小于开始时间',
- icon:"none",
- mask:true,
- duration: 2000
- });
- }else{
- form.cycleEndTime=e.target.value
- this.tiemQuickList.forEach(function(item){
- item.type=false;
- })
- }
- },
- //检查周期快捷
- tiemQuick(index){
- this.tiemQuickList[index].type = !this.tiemQuickList[index].type
- let _this = this;
- if (_this.tiemQuickList[index].type == true) {
- _this.tiemQuickList.forEach(function(item2) {
- if (item2.name == _this.tiemQuickList[index].name) {
- item2.type = true
- } else {
- item2.type = false
- }
- })
- //快捷本月-本季度-全年
- _this.timeSlotChange(_this.tiemQuickList[index].name)
- }else{
- console.log('取消选中')
- _this.form.cycleStartTime='';
- _this.form.cycleEndTime='';
- }
- },
- //查询当前用户是否是院级
- async isSCollege(){
- let _this = this;
- const {data} = await isSCollege();
- if(data.code == 200){
- if(data.data.userFlg){
- // 院级
- this.$set(this,'scopeArray',['学院','实验室']);
- this.form.groupDataType=2;
- }else{
- // 校级
- this.$set(this,'scopeArray',['全校','学院','实验室']);
- this.form.groupDataType=0;
- }
- }
- },
- //检查类型
- categoryChange(e){
- let _this=this;
- if(e.target.value==0){
- this.form.checkCategory=1
- }else if(e.target.value==1){
- this.form.checkCategory=2
- }
- },
- //检查内容
- clickContent(){
- if(!this.form.collegeNum && !this.form.subjectNum){
- uni.showToast({
- title: '请先选择检查范围',
- icon:"none",
- mask:true,
- duration: 2000
- });
- return;
- }
- this.form.tiemQuickList=this.tiemQuickList//检查周期快捷存储
- this.form.scopeIndex=this.scopeIndex//检查范围
- uni.navigateTo({
- url: '/pages_safetyExamine/views/patrolPlan/patrolPlanAddContent?form='+encodeURIComponent(JSON.stringify(this.form))+'&pageType=1'
- });
- },
- //检查范围
- scopeChange(e){
- let _this=this;
- if(this.scopeArray[e.target.value]=='全校'){
- _this.scopeIndex=0;
- _this.form.checkRange=1;
- }else if(this.scopeArray[e.target.value]=='学院'){
- _this.scopeIndex=1;
- _this.form.checkRange=2;
- }else if(this.scopeArray[e.target.value]=='实验室'){
- _this.scopeIndex=2;
- _this.form.checkRange=3;
- }
- if(this.form.subjectNum>0){
- uni.showModal({
- content: '重新选择会删除现有选择的实验室,是否重选?',
- cancelColor:"#999",
- confirmColor:"#0183FA",
- success: function (res) {
- if (res.confirm) {
- _this.form.collegeIds ='';
- _this.form.collegeNum =0;
- _this.form.subIds ='';
- _this.form.subjectNum =0;
- if(_this.scopeIndex==0){//全校
- _this.getAllSubNum();
- }else if(_this.scopeIndex==1){//选择学院
- _this.conditionCollegeInfo();
- }else if(_this.scopeIndex==2){
- console.log('选择实验室')
- }
- } else if (res.cancel) {
- }
- }
- });
- }else{
- if(_this.scopeIndex==0){//全校
- _this.getAllSubNum();
- }else if(_this.scopeIndex==1){//选择学院
- _this.conditionCollegeInfo();
- }else if(_this.scopeIndex==2){
- console.log('选择实验室')
- }
- }
- },
- timeSlotChange (val) {
- let _this=this;
- let cycleStartTime, cycleEndTime;
- let now = new Date(); //当前日期
- let nowDayOfWeek = now.getDay(); //今天本周的第几天
- let nowDay = now.getDate(); //当前日
- let nowMonth = now.getMonth(); //当前月
- let nowYear = now.getFullYear(); //当前年
- let jd=Math.ceil((nowMonth + 1) / 3)
- switch (val) {
- case "本周":
- cycleStartTime = new Date(nowYear, nowMonth, nowDay - nowDayOfWeek)
- cycleEndTime = new Date(nowYear, nowMonth, nowDay + 6 - nowDayOfWeek)
- break;
- case "本月":
- cycleStartTime = new Date(nowYear, nowMonth, 1)
- cycleEndTime = new Date(nowYear, nowMonth + 1, 0)
- break;
- case "本季度":
- cycleStartTime = new Date(nowYear, (jd-1)*3, 1)
- cycleEndTime = new Date(nowYear, jd*3, 0)
- break
- case "全年":
- cycleStartTime = new Date(nowYear, 0, 1)
- cycleEndTime = new Date(nowYear, 11, 31)
- break
- }
- _this.form.cycleStartTime=_this.formatDateTime(cycleStartTime)
- _this.form.cycleEndTime=_this.formatDateTime(cycleEndTime)
- },
- // 中国标准时间 转换成 年月日
- formatDateTime (date) {
- var y = date.getFullYear();
- var m = date.getMonth() + 1;
- m = m < 10 ? ('0' + m) : m;
- var d = date.getDate();
- d = d < 10 ? ('0' + d) : d;
- var h = date.getHours();
- var minute = date.getMinutes();
- minute = minute < 10 ? ('0' + minute) : minute;
- // return y + '-' + m + '-' + d+' '+h+':'+minute;
- return y + '-' + m + '-' + d
- },
- //巡查组
- patrolChange(){
- this.form.tiemQuickList=this.tiemQuickList//检查周期快捷存储
- this.form.scopeIndex=this.scopeIndex//检查范围
- uni.navigateTo({
- url: '/pages_safetyExamine/views/patrolPlan/patrolPlanAddMember?form='+encodeURIComponent(JSON.stringify(this.form))+'&pageType=1'
- });
- },
- //选择学院或者实验室
- collegeOrLab(){
- if(this.scopeIndex==1){//学院
- this.dialogVisible=true;
- }else if(this.scopeIndex==2){//实验室
- this.form.tiemQuickList=this.tiemQuickList//检查周期快捷存储
- this.form.scopeIndex=this.scopeIndex//检查范围
- uni.navigateTo({
- url: '/pages_safetyExamine/views/patrolPlan/patrolPlanAddLab?form='+encodeURIComponent(JSON.stringify(this.form))+'&pageType=1'
- });
- }
- },
- //选择学院弹窗关闭
- dialogClose(){
- this.dialogVisible=false;
- },
- //选择学院确定
- collegeConfirm(){
- let _this=this;
- this.dialogVisible=false;
- let list=[];
- let collegeIds=[];
- let subjectNum=0;
- _this.collegeList.forEach(function(item){
- if(item.type==true){
- list.push(item)
- collegeIds.push(item.deptId);
- subjectNum+=item.subNum;
- }
- })
- _this.form.collegeIds=collegeIds.join(',');
- _this.form.subjectNum=subjectNum;
- _this.form.collegeNum=list.length;
- },
- //学院选择
- collegeSelete(index){
- this.collegeList[index].type = !this.collegeList[index].type
- },
- //查询学院列表
- async conditionCollegeInfo(){
- let _this = this;
- const {data} = await conditionCollegeInfo();
- if(data.code == 200){
- data.data.forEach(function(item){
- item.type=false;
- })
- _this.collegeList=data.data;
- }
- },
- //查询全校学院和实验室数量
- async getAllSubNum(){
- let _this = this;
- const {data} = await getAllSubNum();
- if(data.code == 200){
- this.form.collegeNum=data.data.collegeCount
- this.form.subjectNum=data.data.subCount
- }
- },
- handleClick(doType){
- let self=this;
- if( doType=='subBtn'){//
- }
- },
- //巡查计划-添加
- async submitForm(){
- let _this = this;
- if(!_this.form.title){
- uni.showToast({
- title: '请输入计划标题',
- icon:"none",
- mask:true,
- duration: 2000
- });
- return;
- }
- if(!_this.form.cycleStartTime || !_this.form.cycleEndTime){
- uni.showToast({
- title: '请选择计划周期',
- icon:"none",
- mask:true,
- duration: 2000
- });
- return;
- }
- if(!_this.form.checkRange){
- uni.showToast({
- title: '请选择检查范围',
- icon:"none",
- mask:true,
- duration: 2000
- });
- return;
- }
- if(_this.form.checkRange==2 && _this.form.subjectNum==0){
- uni.showToast({
- title: '请选择学院',
- icon:"none",
- mask:true,
- duration: 2000
- });
- return;
- }
- if(_this.form.checkRange==3 && _this.form.subjectNum==0){
- uni.showToast({
- title: '请选择实验室',
- icon:"none",
- mask:true,
- duration: 2000
- });
- return;
- }
- if( _this.form.checkType==1 &&_this.form.checkMemberDtoList.length<=0){
- uni.showToast({
- title: '请选择巡查组',
- icon:"none",
- mask:true,
- duration: 2000
- });
- return;
- }
- console.log(_this.form.checkCategory)
- console.log(_this.form.hazardNum)
- if( _this.form.checkCategory==2 && _this.form.hazardNum==0){
- uni.showToast({
- title: '请选择检查内容!',
- icon:"none",
- mask:true,
- duration: 2000
- });
- return;
- }
- // const {data} = await checkPlanAdd(_this.form);
- // if(data.code == 200){
- // uni.showToast({
- // title: '提交成功',
- // icon:"none",
- // mask:true,
- // duration: 2000
- // });
- // uni.redirectTo({
- // url: '/pages_safetyExamine/patrolPlan/patrolPlanList?pageType='+this.form.checkType
- // });
- // }
- },
- }
- }
- </script>
- <style lang="stylus" scoped>
- .examine{
- height:100%;
- display flex;
- // padding: 0 30rpx;
- // box-sizing: border-box;
- padding-bottom: 126rpx;
- box-sizing: border-box;
- .info-max-box{
- flex: 1;
- overflow: scroll;
- padding: 0 30rpx;
- box-sizing: border-box;
- }
- .basics{
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin-top: 20rpx;
- padding: 60rpx 26rpx 32rpx;
- box-sizing: border-box;
- .title{
- .title_t{
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 42rpx;
- margin-bottom: 12rpx;
- }
- .title_b{
- width: 636rpx;
- height: 150rpx;
- border-radius: 10rpx;
- opacity: 1;
- border: 1rpx solid #E0E0E0;
- padding: 26rpx 23rpx;
- box-sizing: border-box;
- }
- }
- .type{
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-top: 20rpx;
- .type_l{
- width: 146rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 42rpx;
- text-align: left;
- }
- .type_r{
- width: 490rpx;
- height: 80rpx;
- border-radius: 10rpx;
- padding-left:22rpx;
- box-sizing: border-box;
- background: #F5F5F5;
- }
- }
- .period{
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-top: 26rpx;
- .period_l{
- width: 146rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 42rpx;
- text-align: left;
- }
- .period_r{
- width: 490rpx;
- height: 80rpx;
- border-radius: 10rpx;
- border: 1rpx solid #E0E0E0;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .picker-text{
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #999999;
- line-height: 80rpx;
- width: 230rpx;
- text-align: center;
- }
- .picker-text2{
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #999999;
- line-height: 80rpx;
- width: 230rpx;
- text-align: center;
- }
- }
- }
- .tiem_quick{
- margin-left: 146rpx;
- display: flex;
- justify-content: flex-start;
- margin-top: 20rpx;
- >view{
- width: 130rpx;
- height: 80rpx;
- opacity: 1;
- border: 1rpx solid #E0E0E0;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- line-height: 80rpx;
- text-align: center;
- }
- >view:nth-of-type(1){
- border-radius: 10rpx 0rpx 0rpx 10rpx;
- }
- >view:nth-of-type(3){
- border-radius: 0rpx 10rpx 10rpx 0rpx;
- }
- .tiem_quick_a{
- background: #0183FA;
- color: #FFFFFF;
- }
- .tiem_quick_b{
- background: #F5F5F5;
- color: #333333;
- }
- }
- .scope{
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-top: 26rpx;
- .scope_l{
- width: 146rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 42rpx;
- text-align: left;
- }
- .scope_r{
- flex: 1;
- .scope_r_n{
- width: 490rpx;
- height: 80rpx;
- border-radius: 10rpx;
- border: 1rpx solid #E0E0E0;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- >view{
- flex:1;
- line-height:80rpx;
- margin-left:20rpx;
- color: #999999;
- font-size:28rpx;
- }
- >img{
- width: 14rpx;
- height: 8rpx;
- margin-right: 30rpx;
- }
- }
- }
- }
- .content{
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-top: 26rpx;
- .content_l{
- width: 146rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 42rpx;
- text-align: left;
- }
- .content_r{
- flex: 1;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .content_r_l{
- width: 220rpx;
- height: 80rpx;
- background: #0183FA;
- border-radius: 10rpx 10rpx 10rpx 10rpx;
- text-align: center;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 80rpx;
- margin-right: 26rpx;
- }
- .content_r_r{
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 42rpx;
- >text{
- color: #0183FA;
- }
- }
- }
- }
- .scope_btn{
- display: inline-block;
- background: #0183FA;
- border-radius: 10rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 80rpx;
- text-align: center;
- padding: 0 16rpx;
- box-sizing: border-box;
- margin-top: 40rpx;
- margin-left: 146rpx;
- }
- .scope_text{
- margin-left: 146rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- margin-top: 32rpx;
- line-height: 42rpx;
- >text{
- color: #0183FA;
- }
- }
- }
- .patrol_group{
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin-top: 20rpx;
- padding: 40rpx 30rpx 64rpx;
- box-sizing: border-box;
- .patrol{
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-top: 26rpx;
- .patrol_l{
- width: 146rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 42rpx;
- text-align: left;
- }
- .patrol_r_n{
- width: 490rpx;
- height: 80rpx;
- border-radius: 10rpx;
- border: 1rpx solid #E0E0E0;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- >view{
- flex:1;
- line-height:80rpx;
- margin-left:20rpx;
- color: #999999;
- font-size:28rpx;
- }
- >img{
- width: 14rpx;
- height: 8rpx;
- margin-right: 30rpx;
- }
- }
- }
- .list{
- margin-top: 42rpx;
- .list_title{
- display: flex;
- justify-content: flex-start;
- align-items: center;
- height: 80rpx;
- background: #F5F5F5;
- border-radius: 10rpx 10rpx 0rpx 0rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 80rpx;
- >img{
- width: 30rpx;
- height: 30rpx;
- margin: 0 20rpx;
- }
- }
- .list_header{
- display: flex;
- justify-content: flex-start;
- >text{
- flex: 1;
- height: 80rpx;
- background: #F5F5F5;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 80rpx;
- text-align: center;
- border: 1rpx solid #E0E0E0;
- }
- >text:nth-of-type(1){
- border-right: none;
- }
- }
- .list_li{
- display: flex;
- justify-content: flex-start;
- >text{
- flex: 1;
- height: 80rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 80rpx;
- text-align: center;
- border: 1rpx solid #E0E0E0;
- }
- >text:nth-of-type(1){
- border-right: none;
- border-top: none;
- }
- >text:nth-of-type(2){
- border-top: none;
- }
- }
- .list_bottom{
- flex: 1;
- height: 80rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #999999;
- line-height: 80rpx;
- text-align: center;
- border: 1rpx solid #E0E0E0;
- border-top: none;
- }
- }
- }
- .bottom_btn{
- position: fixed;
- bottom: 26rpx;
- left: 30rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 90rpx;
- width: 690rpx;
- height: 90rpx;
- background: #0183FA;
- border-radius: 20rpx;
- text-align: center;
- }
- /* 指纹采集 */
- .shade {
- height: 100%;
- width: 100%;
- position: fixed;
- display: flex;
- flex-direction: column;
- z-index: 10;
- background: rgba(0, 0, 0, 0.2);
- .null-box {
- flex: 1;
- }
- .shade_n {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 750rpx;
- height: 560rpx;
- background: #FFFFFF;
- border-radius: 20rpx 20rpx 0rpx 0rpx;
- .shade_n_title{
- height: 100rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- justify-content:space-between;
- border-bottom: 1rpx solid #E0E0E0;
- >text:nth-of-type(1){
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 100rpx;
- }
- >text:nth-of-type(2){
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- color: #0183FA;
- line-height: 100rpx;
- }
- }
- .shade_n_b{
- height: 460rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- overflow-y: auto;
- .shade_n_b_li{
- display: flex;
- justify-content:space-between;
- align-items: center;
- height: 80rpx;
- border-bottom: 1rpx solid #E0E0E0;
- >text{
- font-size: 28rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 400;
- line-height: 80rpx;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- >img{
- width: 24rpx;
- height: 16rpx;
- margin-right: 14rpx;
- }
- }
- .color_A{
- color: #333333;
- }
- .color_B{
- color: #0183FA;
- }
- }
- }
- }
- }
- </style>
|