843 lines
25 KiB
Vue
843 lines
25 KiB
Vue
<template>
|
||
<view class="container">
|
||
<view class="banner-box">
|
||
<!-- <image v-if="currentTabIndex == 0" src="/static/imgs/visitor.png" mode=""></image> -->
|
||
<image v-if="currentTabIndex == 1" src="/static/imgs/visitor.png" mode=""></image>
|
||
<image v-if="currentTabIndex == 2" src="/static/imgs/visitor.png" mode=""></image>
|
||
</view>
|
||
<view class="main">
|
||
<view class="tab-box">
|
||
<!-- <view class="tab-item" :class="currentTabIndex == 0 ? 'active' : ''" @click="currentTabIndex = 0">邀请来访</view> -->
|
||
<view class="tab-item" :class="currentTabIndex == 1 ? 'active' : ''" @click="currentTabIndex = 1">未审批</view>
|
||
<view class="tab-item" :class="currentTabIndex == 2 ? 'active' : ''" @click="currentTabIndex = 2">已审批</view>
|
||
</view>
|
||
<view v-if="currentTabIndex == 1" style="height: 80upx;background: white;padding-left: 10upx;line-height: 68upx;border-bottom: 2upx solid #eee;">
|
||
<radio-group @change="checkRadioChange" style="width: 80%;float: left;"><!-- @change="checkRadioChange" -->
|
||
<label class="radio" style="margin-right: 10upx;font-size: 26upx;" v-for="(item, index) in items" :key="item.value" >
|
||
<radio :value="item.value" :checked="item.checked" style="transform:scale(0.9)" color="#00c277"/>
|
||
{{item.name}}
|
||
<!-- <view>
|
||
<radio :value="item.value" :checked="index === current" />
|
||
</view>
|
||
<view>{{item.name}}</view> -->
|
||
</label>
|
||
</radio-group>
|
||
<!-- <view style="float: right;width: 20%;height: 30upx;"><button @click="getCheckBoxList()" style="height: 60upx;margin-top: 8upx;background: #00c277;color: white;" class="mini-btn" type="warn" size="mini">审批</button></view> -->
|
||
</view>
|
||
|
||
<!-- 未审批列表 -->
|
||
<view class="list-box" v-if="currentTabIndex == 1">
|
||
<view
|
||
class="list-item"
|
||
v-for="(item, index) in list"
|
||
:key="index"
|
||
|
||
>
|
||
<view style="position: relative;" class="title">
|
||
<text class="line"></text>
|
||
<text class="text">{{item.visitor_name}}</text>
|
||
<checkbox @click="checkBox($event, item)" name="checkbox" :checked="item.checkValue" :value="item.detail_id+''" :color="item.checkValue?'#00c277':'white'" style="transform:scale(0.8); position: absolute;top: 16upx;" />
|
||
<text class="status2" v-if="item.current_status.charAt(item.current_status.length-1)==0">未审批</text>
|
||
<text class="status2" v-if="item.current_status.charAt(item.current_status.length-1)==1">已同意</text>
|
||
<text class="status2" v-if="item.current_status.charAt(item.current_status.length-1)==2">已拒绝</text>
|
||
<text class="status2" v-if="item.current_status.charAt(item.current_status.length-1)==3">已删除</text>
|
||
<text class="status2" v-if="item.current_status.charAt(item.current_status.length-1)==4">已取消</text>
|
||
</view>
|
||
<view class="content" @click="toDetail('/pages/visitorAppointment2/visitorAppointment2?id=' + item.detail_id + '&role=2&userId=' + userId)">
|
||
<view class="info-item">
|
||
<view class="fl-text">申请人:</view>
|
||
<view class="fr-text">{{ item.visitor_name }}</view>
|
||
</view>
|
||
<view class="info-item">
|
||
<view class="fl-text">访客单位:</view>
|
||
<view class="fr-text">{{ item.orgName }}</view>
|
||
</view>
|
||
<view class="info-item">
|
||
<view class="fl-text">来访类型:</view>
|
||
<view class="fr-text">{{ appointmentTypeList[item.appointmentType] }}</view>
|
||
</view>
|
||
<view class="info-item">
|
||
<view class="fl-text">来访事由:</view>
|
||
<view class="fr-text">{{ item.visit_reason }}</view>
|
||
</view>
|
||
<view class="info-item">
|
||
<view class="fl-text">来访时间:</view>
|
||
<view class="fr-text">{{ item.visit_start_time }}</view>
|
||
</view>
|
||
|
||
<!-- <view class="info-item">
|
||
<view class="fl-text">申请时间:</view>
|
||
<view class="fr-text">{{ item.apply_time }}</view>
|
||
</view> -->
|
||
<!-- <view class="comment-btn" @click.stop="del(item.detail_id,1,index)">删除</view> -->
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 已审批列表 -->
|
||
<view class="list-box" v-if="currentTabIndex == 2">
|
||
<view class="list-item" v-for="(item, index) in list" :key="index"
|
||
@click="toDetail('/pages/visitorAppointment2/visitorAppointment2?id=' + item.detail_id + '&role=2&userId=' + userId)">
|
||
<view class="title">
|
||
<text class="line"></text>
|
||
<text class="text">{{item.visitor_name}}</text>
|
||
<text class="status2" v-if="userLevel==0">{{stateList[item.first_status]}}</text>
|
||
<text class="status2" v-if="userLevel==1">{{stateList[item.second_status]}}</text>
|
||
<text class="status2" v-if="userLevel==2">{{stateList[item.third_status]}}</text>
|
||
<text class="status2" v-if="userLevel==8">{{stateList[item.current_status.charAt(item.current_status.length-1)]}}</text>
|
||
</view>
|
||
<view class="content">
|
||
<view class="info-item">
|
||
<view class="fl-text">申请人:</view>
|
||
<view class="fr-text">{{ item.visitor_name }}</view>
|
||
</view>
|
||
<view class="info-item">
|
||
<view class="fl-text">访客单位:</view>
|
||
<view class="fr-text">{{ item.orgName }}</view>
|
||
</view>
|
||
<view class="info-item">
|
||
<view class="fl-text">来访类型:</view>
|
||
<view class="fr-text">{{ appointmentTypeList[item.appointmentType] }}</view>
|
||
</view>
|
||
<view class="info-item">
|
||
<view class="fl-text">来访事由:</view>
|
||
<view class="fr-text">{{ item.visit_reason }}</view>
|
||
</view>
|
||
<view class="info-item">
|
||
<view class="fl-text">来访时间:</view>
|
||
<view class="fr-text">{{ item.visit_start_time }}</view>
|
||
</view>
|
||
<!-- <view class="comment-btn" @click.stop="del(item.detail_id,2,index)">删除</view> -->
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<content-none v-if="currentTabIndex != 0 && list.length == 0" :padTop="20"></content-none>
|
||
</view>
|
||
<load-more v-show="currentTabIndex == 1 || currentTabIndex == 2" :loadingType="2" :contentText="contentText"></load-more>
|
||
<view v-if="checkedListId.length>0" style="position: fixed;bottom:0upx;height: 50upx;width: 100%;z-index: 9999;"><!-- uni-popup ref="butPopup" type="bottom" -->
|
||
<view v-if="userLevel=='0' && appointmentTypeForPopup!='1' ">
|
||
<view class="footer-btn footer-btn-two batchBtn" >
|
||
<view class="btn btn-col btn1" @click="submit(1)">拒绝</view>
|
||
<view class="btn btn-col1 btn2" @click="circulation()">同意</view>
|
||
</view>
|
||
</view>
|
||
<view v-if="userLevel=='0'&& appointmentTypeForPopup=='1' " >
|
||
<view class="footer-btn footer-btn-two batchBtn" >
|
||
<view class="btn btn-col btn1" @click="submit(1)">拒绝</view>
|
||
<view class="btn btn-col1 btn2" @click="submit(2)">同意</view>
|
||
</view>
|
||
</view>
|
||
<view v-if="userLevel=='1'">
|
||
<view class="footer-btn footer-btn-two batchBtn" >
|
||
<view class="btn btn-col btn3" @click="submit(1)">拒绝</view>
|
||
<view class="btn btn-col1 btn4" @click="submit(2)">同意</view>
|
||
<view class="btn btn-col1 btn5" @click="circulation()">流转</view>
|
||
</view>
|
||
</view>
|
||
<view v-if="userLevel=='2'">
|
||
<view class="footer-btn footer-btn-two" ><!-- v-if="third_status==0" -->
|
||
<view class="btn btn-col" @click="submit(1)">拒绝</view>
|
||
<view class="btn btn-col1" @click="submit(2)">同意</view>
|
||
</view>
|
||
</view>
|
||
<view v-if="userLevel=='8'">
|
||
<view class="footer-btn footer-btn-two" >
|
||
<view class="btn btn-col" @click="submit(1)">拒绝</view>
|
||
<view class="btn btn-col1" @click="submit(2)">同意</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<uni-popup ref="popup" type="center" style="">
|
||
<view style="background: white;width: 80%;height: 840upx;width: 600upx;position: relative;border-radius: 10upx;padding: 14upx;">
|
||
<view class="tab_rig visitorshow-box" ><!-- uinfo.orgName -->
|
||
<xfl-select
|
||
:list="finalList"
|
||
:clearable="true"
|
||
:listShow="showList"
|
||
:isCanInput="true"
|
||
:focusShowList = "true"
|
||
:style_Container="' font-size: 28upx;border-radius:10upx;border:1px solid #e5e5e5;width:95%'"
|
||
:placeholder = "'请输入姓名、手机号、部门搜索'"
|
||
@change="changeSel"
|
||
@input="inputSel"
|
||
@clear="clearSel"
|
||
|
||
:selectHideType="'hideAll'"
|
||
>
|
||
</xfl-select>
|
||
</view>
|
||
<view class="footer-btn footer-btn-two" style="position: absolute;margin-bottom: 20upx;">
|
||
<view class="btn btn-col" style="width:40%;margin-left:7%;margin-right: 6%;border-radius: 10upx;" @click="closeCirculation()">取消</view>
|
||
<view class="btn btn-col1" style="width:40%;border-radius: 10upx" @click="submitCirculation()">确定</view>
|
||
</view>
|
||
</view>
|
||
</uni-popup>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import uniCalendar from '@/components/uni-calendar/uni-calendar.vue';
|
||
import { invite, getMyVisitorList, greenVisitorInfo,getApplyInfo,getCirculationList,submitCirculation ,updateVisitorInfoBatch,submitCirculationBatch } from '@/common/api.js';
|
||
import { callbackRequest, alertTip, getStorage } from '@/common/util.js';
|
||
import loadMore from '@/components/loadMore.vue';
|
||
import datetimePicker from '@/components/dateTime.vue';
|
||
import contentNone from '@/components/contentNone.vue';
|
||
import UniPopup from "@/components/uni-popup/uni-popup.vue"
|
||
import xflSelect from '../../components/xfl-select/xfl-select1.vue'
|
||
export default {
|
||
data() {
|
||
return {
|
||
userId: getStorage('userInfo').userId,
|
||
currentTabIndex:0,
|
||
page: 1,
|
||
pageSize: 5,
|
||
list:[],
|
||
list1: [
|
||
// {visitorName:"刘晓明",visitTime:"2020-01-05 09:30",applyer:"李晓蓝",applyTime:"2019-12-10 08:30"},
|
||
// {visitorName:"刘晓明",visitTime:"2020-01-06 09:30",applyer:"张三丰",applyTime:"2019-12-20 08:30"},
|
||
// {visitorName:"刘晓明",visitTime:"2020-01-07 09:30",applyer:"李晓龙",applyTime:"2019-12-30 08:30"},
|
||
// {visitorName:"刘晓明",visitTime:"2020-01-08 09:30",applyer:"孙瑞",applyTime:"2019-12-25 08:30"},
|
||
// {visitorName:"刘晓明",visitTime:"2020-01-09 09:30",applyer:"刘晓明",applyTime:"2019-12-30 08:30"},
|
||
],
|
||
list2: [
|
||
// {visitorName:"刘晓明",visitTime:"2020-01-05 09:30",applyer:"李晓蓝",applyTime:"2019-12-10 08:30"},
|
||
// {visitorName:"刘晓明",visitTime:"2020-01-06 09:30",applyer:"张三丰",applyTime:"2019-12-20 08:30"},
|
||
// {visitorName:"刘晓明",visitTime:"2020-01-07 09:30",applyer:"李晓龙",applyTime:"2019-12-30 08:30"},
|
||
// {visitorName:"刘晓明",visitTime:"2020-01-08 09:30",applyer:"孙瑞",applyTime:"2019-12-25 08:30"},
|
||
// {visitorName:"刘晓明",visitTime:"2020-01-09 09:30",applyer:"刘晓明",applyTime:"2019-12-30 08:30"},
|
||
],
|
||
stateList: ['待审核', '已通过','已拒绝','待本人确认','已取消','','已流转'],
|
||
loadingType: 2, //0-loading前;1-loading中;2-没有更多了
|
||
contentText: {
|
||
contentdown: '上拉加载更多',
|
||
contentrefresh: '正在加载...',
|
||
contentnomore: '没有更多数据了'
|
||
},
|
||
appointmentTypeList:['普通访客','参会人员'],
|
||
userLevel:getStorage('userInfo').userLevel,
|
||
items: [
|
||
{
|
||
value: '0',
|
||
name: '普通访客',
|
||
checked:false
|
||
},
|
||
{
|
||
value: '1',
|
||
name: '参会人员',
|
||
checked:false
|
||
},
|
||
{
|
||
value: '2',
|
||
name: '取消选择',
|
||
checked:false
|
||
},
|
||
],
|
||
appointmentType:"0",
|
||
appointmentTypeForPopup:"",
|
||
circulationList: [],
|
||
finalList: [],
|
||
showList:true,
|
||
circulationId:"",
|
||
objList:[],
|
||
paramsDataList:[],
|
||
checkedListId:[],
|
||
};
|
||
},
|
||
components: {
|
||
loadMore,
|
||
contentNone,
|
||
UniPopup,
|
||
xflSelect
|
||
},
|
||
watch: {
|
||
currentTabIndex: function(newVal, oldVal) {
|
||
this.currentTabIndex = newVal;
|
||
if (this.currentTabIndex) {
|
||
this.page = 1;
|
||
this.loadingType = 0;
|
||
this.getMyList();
|
||
}
|
||
}
|
||
|
||
},
|
||
onLoad(options) {
|
||
// 审批授权 与 邀约记录 共用一个页面
|
||
// 根据 页面传值 type 区分,显示默认页面
|
||
if(!options.openId&&options.openId!=undefined&&options.openId!='undefined'){
|
||
this.iOpenidGetUserInfo(options.openId);
|
||
}
|
||
if (options.type == 2) {
|
||
this.currentTabIndex = 2;
|
||
}else{
|
||
this.currentTabIndex = 1;
|
||
}
|
||
this.getCirculationList();
|
||
},
|
||
methods: {
|
||
iOpenidGetUserInfo(x) {
|
||
let data = {
|
||
method: iOpenidGetUserInfo,
|
||
data: {
|
||
wxOpenId: x,
|
||
headportrait: ''
|
||
}
|
||
};
|
||
callbackRequest(data).then(res => {
|
||
if (res.data.returnCode == 1) {
|
||
// this.userInfo = res.data.returnData;
|
||
// this.role = res.data.returnData.role;
|
||
// this.userInfo.userId = res.data.returnData.id;
|
||
// this.userInfo.headportrait = this.currentUser.headimgurl;
|
||
// this.userInfo.telnumber = res.data.returnData.mobile==null?"":res.data.returnData.mobile;
|
||
// this.userInfo.username = res.data.returnData.realName==null?"":res.data.returnData.realName;
|
||
// this.userInfo.userName = res.data.returnData.realName==null?"":res.data.returnData.realName;
|
||
// this.userInfo.deptName = res.data.returnData.departmentName==null?"":res.data.returnData.departmentName;
|
||
// this.userInfo.orgName = res.data.returnData.orgName==null?"":res.data.returnData.orgName;
|
||
this.userId = this.userInfo.userId;
|
||
//setStorage('userInfo', this.userInfo);
|
||
}
|
||
//console.log(res);
|
||
});
|
||
},
|
||
getMyList(newVal) {
|
||
this.list = [];
|
||
let params = {
|
||
method: getMyVisitorList,
|
||
data: { userId: this.userId, type: '03', flag: 1, tabType: this.currentTabIndex, pageSize: this.pageSize, page: this.page ,userLevel:this.userLevel}
|
||
};
|
||
// console.log("--", params.data);
|
||
callbackRequest(params).then(res => {
|
||
if (res.data.returnCode == 1) {
|
||
let result = res.data.returnData||[];
|
||
// console.log("999--",result);
|
||
for(var i=0;i<result.length;i++){
|
||
result[i].checkValue = false;
|
||
}
|
||
if (this.page == 1) {
|
||
this.list = result;
|
||
} else {
|
||
if (result.length > 0) {
|
||
this.list = [...this.list, ...result];
|
||
this.loadingType = 0;
|
||
} else {
|
||
this.loadingType = 2;
|
||
}
|
||
}
|
||
}
|
||
});
|
||
},
|
||
|
||
toDetail(url) {
|
||
uni.navigateTo({
|
||
url
|
||
});
|
||
},
|
||
checkBox(e, item) {
|
||
debugger;
|
||
e.stopPropagation();
|
||
e.preventDefault();
|
||
let that = this;
|
||
let box = (item.checkValue = !item.checkValue);
|
||
// for(var i=0;i<that.list.length;i++){
|
||
// if(item.detail_id == that.list[i].detail_id){
|
||
// that.list[i].checkValue = item.checkValue;
|
||
// }
|
||
// }
|
||
var arr=[];
|
||
if(that.checkedListId.length>0&&that.checkedListId[0].appointmentType!=item.appointmentType){
|
||
alertTip("请选择来访类型相同的数据进行审批!");
|
||
that.$set(item,'checkValue',false);
|
||
|
||
//item.checkValue=false;
|
||
var index = 0;
|
||
for(var i=0;i<that.list.length;i++){
|
||
if(item.detail_id == that.list[i].detail_id){
|
||
index = i;
|
||
}
|
||
}
|
||
that.$set(that.list, index, item);
|
||
}else{
|
||
that.appointmentTypeForPopup = item.appointmentType;
|
||
}
|
||
if(item.checkValue){
|
||
that.checkedListId.push(item);
|
||
|
||
}else{
|
||
for(var i=0;i<that.checkedListId.length;i++){
|
||
if(item.detail_id != that.checkedListId[i].detail_id){
|
||
arr.push(that.checkedListId[i]);
|
||
}
|
||
}
|
||
that.checkedListId = arr;
|
||
}
|
||
},
|
||
checkRadio(e, item){
|
||
let that = this;
|
||
let box = (item.checked = !item.checked);
|
||
},
|
||
getCheckBoxList(){
|
||
let that = this;
|
||
//{userId:this.userId,applyId:this.id,applyType:type,userLevel:this.userLevel,appointmentType:this.appointmentType,}//分三种情况
|
||
//id=' + item.detail_id + '&role=2&userId=' + userId
|
||
// onLoad(options){
|
||
// this.id = options.id;
|
||
// this.role = options.role;
|
||
// this.userId = options.userId;
|
||
// this.reFresh(this.userId,this.id,"02");//必须是‘02’
|
||
// this.getCirculationList();
|
||
// },
|
||
var checkedList = [];
|
||
for(var i=0;i<that.list.length;i++){
|
||
if(that.list[i].checkValue){
|
||
checkedList.push(that.list[i]);
|
||
}
|
||
}
|
||
|
||
// if(checkedList.length==0){
|
||
// alertTip("请选择来访类型相同的数据进行审批!");
|
||
// return;
|
||
// }else{
|
||
// var apType = checkedList[0].appointmentType;
|
||
// if(checkedList.length>1){
|
||
// for(var i=1;i<checkedList.length;i++){
|
||
// if(apType != checkedList[i].appointmentType){
|
||
// alertTip("请选择来访类型相同的数据进行审批!");
|
||
// return;
|
||
// }
|
||
// }
|
||
// }
|
||
// that.appointmentTypeForPopup = apType;
|
||
//流转数据格式data:{id:this.circulationId,applyId:this.applyId,userLevel:this.userLevel}
|
||
var objList = [];
|
||
var paramsDataList = [];
|
||
for(var i=0;i<checkedList.length;i++){
|
||
if(checkedList[i].checkValue){
|
||
var obj = {userId:this.userId,applyId:"",applyType:"",userLevel:this.userLevel,appointmentType:"",};//分三种情况
|
||
obj.applyId = checkedList[i].detail_id;
|
||
obj.appointmentType = checkedList[i].appointmentType;
|
||
objList.push(obj);
|
||
var paramsData = {};
|
||
paramsData.id = this.circulationId;
|
||
paramsData.applyId =checkedList[i].id;
|
||
paramsData.userLevel=this.userLevel;
|
||
paramsDataList.push(paramsData);
|
||
}
|
||
}
|
||
that.objList = objList;
|
||
that.paramsDataList = paramsDataList;
|
||
//this.openButPopup();
|
||
|
||
// }
|
||
},
|
||
submit(type){
|
||
this.getCheckBoxList();
|
||
let objList = this.objList;
|
||
for(var i=0;i<objList.length;i++){
|
||
objList[i].applyType = type;
|
||
}
|
||
let params = {
|
||
"method": updateVisitorInfoBatch,// 申请的审批
|
||
"data": {list:objList}//分三种情况
|
||
};
|
||
var self = this;
|
||
var content="是否确认拒绝";
|
||
if(type==2){
|
||
content="是否确认同意";
|
||
}
|
||
uni.showModal({
|
||
title: '提示',
|
||
content: content,
|
||
success: function(res){
|
||
if (res.confirm) {
|
||
callbackRequest(params)
|
||
.then(res =>{
|
||
const url = '/pages/invite2/invite2?type=1';
|
||
alertTip(res.data.returnMsg);
|
||
setTimeout(function() {
|
||
uni.redirectTo({
|
||
url
|
||
});
|
||
}, 10);
|
||
})
|
||
}
|
||
}
|
||
})
|
||
|
||
},
|
||
submitCirculation(){
|
||
if(this.circulationId==""){
|
||
alertTip("请选择流转人员");
|
||
return
|
||
}
|
||
let paramsDataList = [];
|
||
for(var i=0;i<this.paramsDataList.length;i++){
|
||
this.paramsDataList[i].id = this.circulationId;
|
||
paramsDataList.push(this.paramsDataList[i]);
|
||
}
|
||
let params={
|
||
method:submitCirculationBatch,
|
||
data:{list:paramsDataList}
|
||
}
|
||
callbackRequest(params)
|
||
.then(res =>{
|
||
const url = '/pages/invite2/invite2?type=1';
|
||
alertTip(res.data.returnMsg);
|
||
setTimeout(function() {
|
||
uni.redirectTo({
|
||
url
|
||
});
|
||
}, 10);
|
||
})
|
||
},
|
||
getCirculationList(){
|
||
let params = {
|
||
"method": getCirculationList,
|
||
"data": {userLevel:this.userLevel,deptName:getStorage("userInfo").deptName}
|
||
};
|
||
callbackRequest(params)
|
||
.then(res =>{
|
||
var resList = [];
|
||
resList = res.data.returnData;
|
||
var list = [];
|
||
for(var i=0;i<resList.length;i++){
|
||
var listObj = resList[i];
|
||
var obj={};
|
||
obj.value = listObj.real_name+"/"+listObj.mobile+"/"+listObj.department_name;
|
||
obj.id = listObj.id;
|
||
list.push(obj);
|
||
}
|
||
this.circulationList = list;
|
||
this.finalList = list;
|
||
})
|
||
},
|
||
inputSel(e){
|
||
this.circulationId="";
|
||
if(e.detail.value == ""){
|
||
this.finalList = this.list;
|
||
this.showList = true;
|
||
return
|
||
}
|
||
var finalList = [];
|
||
for (var i = 0; i < this.list.length; i++) {
|
||
let ite = this.list[i].value;
|
||
// 包含某一字符串
|
||
if(ite.indexOf(e.detail.value) !== -1){
|
||
finalList = finalList.concat(ite);
|
||
}
|
||
}
|
||
this.finalList = finalList;
|
||
this.showList = true;
|
||
},
|
||
changeSel(newVal){
|
||
//console.log(newVal);
|
||
this.circulationId = newVal.orignItem.id;
|
||
//this.uinfo.orgName = newVal.newVal;
|
||
},
|
||
clearSel(){
|
||
this.circulationId="";
|
||
this.finalList = this.list;
|
||
this.showList = true;
|
||
},
|
||
openButPopup(){
|
||
this.$refs.butPopup.open()
|
||
},
|
||
closeButPopup(){
|
||
this.$refs.butPopup.close()
|
||
},
|
||
circulation(){
|
||
this.getCheckBoxList();
|
||
this.$refs.popup.open();
|
||
//this.closeButPopup();
|
||
},
|
||
closeCirculation(){
|
||
this.$refs.popup.close()
|
||
},
|
||
checkRadioChange: function (e) {
|
||
let that = this;
|
||
var values = e.detail.value;
|
||
that.appointmentTypeForPopup = values==2?"":values
|
||
for(var i=0;i<that.list.length;i++){
|
||
if(values == that.list[i].appointmentType ){
|
||
that.list[i].checkValue = true;
|
||
}else{
|
||
that.list[i].checkValue = false;
|
||
}
|
||
}
|
||
var arr=[];
|
||
for(var i=0;i<that.list.length;i++){
|
||
if(that.list[i].checkValue){
|
||
arr.push(that.list[i]);
|
||
}
|
||
}
|
||
that.checkedListId = arr;
|
||
}
|
||
},
|
||
onReachBottom() {
|
||
// if (this.loadingType !== 0 ) {
|
||
// return;
|
||
// }
|
||
// this.loadingType = 1;
|
||
// this.page = this.page + 1;
|
||
// this.getMyList();
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
@import '@/static/css/common.scss';
|
||
page {
|
||
// background: #f8f8f8;
|
||
}
|
||
|
||
|
||
.batchBtn{
|
||
position: absolute;height: 140upx; background: white;padding-top: 30upx;
|
||
.btn1{
|
||
width:40%;margin-left:7%;margin-right: 6%;border-radius: 10upx;
|
||
}
|
||
.btn2{
|
||
width:40%;border-radius: 10upx;
|
||
}
|
||
.btn3{
|
||
width: 28%;margin-left: 4%;border-radius: 10upx;
|
||
}
|
||
.btn4{
|
||
width: 28%;margin-left: 4%;border-radius: 10upx;
|
||
}
|
||
.btn5{
|
||
width: 28%;margin-left: 4%;border-radius: 10upx;
|
||
background: #348CF2;
|
||
}
|
||
}
|
||
.container {
|
||
position: relative;
|
||
overflow: hidden;
|
||
background: #f8f8f8;
|
||
min-height: 100vh;
|
||
.banner-box {
|
||
width: 100%;
|
||
height: 240upx;
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
image {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
}
|
||
.main {
|
||
margin: 172upx 40upx 0;
|
||
position: relative;
|
||
z-index: 10;
|
||
.tab-box {
|
||
overflow: hidden;
|
||
border-radius: 10upx 10upx 0 0;
|
||
background: rgba(132, 149, 167, 0.8);
|
||
height: 70upx;
|
||
.tab-item {
|
||
float: left;
|
||
height: 70upx;
|
||
width: 50%;
|
||
font-size: 30upx;
|
||
color: #e5f6ff;
|
||
text-align: center;
|
||
line-height: 70upx;
|
||
}
|
||
.active {
|
||
background: #fff;
|
||
color: #333;
|
||
border-radius: 10upx 10upx 0 0;
|
||
font-weight: bold;
|
||
}
|
||
}
|
||
.form-box {
|
||
padding: 20upx 30upx 0upx;
|
||
margin-bottom: 20upx;
|
||
background: #fff;
|
||
.form-item {
|
||
overflow: hidden;
|
||
border-bottom: 1px solid #eee;
|
||
padding: 30upx 0;
|
||
.label {
|
||
float: left;
|
||
width: 150upx;
|
||
font-size: 28upx;
|
||
color: #333;
|
||
font-weight: bold;
|
||
line-height: 50upx;
|
||
}
|
||
.ipt-box {
|
||
margin-left: 160upx;
|
||
input {
|
||
width: 100%;
|
||
height: 50upx;
|
||
line-height: 50upx;
|
||
font-size: 26upx;
|
||
color: #666;
|
||
}
|
||
.pic {
|
||
width: 60upx;
|
||
height: 60upx;
|
||
line-height: 80upx;
|
||
}
|
||
}
|
||
.select {
|
||
.arrow {
|
||
float: right;
|
||
width: 16upx;
|
||
height: 29upx;
|
||
margin-top: 10upx;
|
||
}
|
||
input {
|
||
width: 70%;
|
||
}
|
||
}
|
||
.jian {
|
||
width: 50upx;
|
||
height: 50upx;
|
||
margin-left: 280upx;
|
||
}
|
||
.select {
|
||
.arrow {
|
||
float: right;
|
||
width: 16upx;
|
||
height: 29upx;
|
||
margin-top: 10upx;
|
||
}
|
||
|
||
.picker {
|
||
height: 50upx;
|
||
line-height: 50upx;
|
||
font-size: 26upx;
|
||
color: #666;
|
||
}
|
||
}
|
||
}
|
||
.sure-btn {
|
||
width: 100%;
|
||
height: 80upx;
|
||
font-size: 28upx;
|
||
color: #fff;
|
||
text-align: center;
|
||
line-height: 80upx;
|
||
border-radius: 8upx;
|
||
background: #0066cc;
|
||
background: linear-gradient(to right, #ffc200, #ff9000); /*设置按钮为渐变颜色*/
|
||
margin-top: 50upx;
|
||
}
|
||
}
|
||
.list-box {
|
||
.list-item {
|
||
background: #fff;
|
||
margin-bottom: 10upx;
|
||
.title {
|
||
border-bottom: 1px solid #eee;
|
||
padding: 20upx 10upx;
|
||
overflow: hidden;
|
||
line-height: 40upx;
|
||
.line {
|
||
display: inline-block;
|
||
width: 10upx;
|
||
height: 32upx;
|
||
background: $assistColor;
|
||
margin-top: 4upx;
|
||
}
|
||
.text {
|
||
display: inline-block;
|
||
font-size: 28upx;
|
||
color: #444;
|
||
font-weight: bold;
|
||
margin-left: 10upx;
|
||
vertical-align: top;
|
||
}
|
||
.status {
|
||
font-size: 26upx;
|
||
color: $assistColor;
|
||
float: right;
|
||
}
|
||
.status1 {
|
||
font-size: 26upx;
|
||
color: #00c277;
|
||
float: right;
|
||
}
|
||
.status2 {
|
||
font-size: 26upx;
|
||
color: red;
|
||
float: right;
|
||
}
|
||
}
|
||
.content {
|
||
padding: 10upx 20upx;
|
||
// padding:10upx 10upx 60upx 10upx;
|
||
.info-item {
|
||
overflow: hidden;
|
||
padding-bottom: 10upx;
|
||
.fl-text {
|
||
float: left;
|
||
font-size: 26upx;
|
||
color: #444;
|
||
font-weight: bold;
|
||
line-height: 40upx;
|
||
}
|
||
.fr-text {
|
||
float: right;
|
||
font-size: 26upx;
|
||
color: #666;
|
||
line-height: 40upx;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
.comment-btn {
|
||
float: right;
|
||
font-size: 24upx;
|
||
border-radius: 10upx;
|
||
color: #fff;
|
||
line-height: 50upx;
|
||
text-align: center;
|
||
min-width: 140upx;
|
||
background-color: #00c277;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
#addbtn {
|
||
height: 120upx;
|
||
background-color: #ffffff;
|
||
padding: 30upx;
|
||
border-radius: 30upx;
|
||
color: #333333;
|
||
border-bottom: 0.033333rem solid #eee;
|
||
align-items: center;
|
||
position: relative;
|
||
margin-top: 20upx;
|
||
}
|
||
.addbtn view text:nth-child(1) {
|
||
font-size: 32upx;
|
||
margin-left: 220upx;
|
||
color: #00c277;
|
||
}
|
||
.addbtn view text:nth-child(2) {
|
||
font-size: 32upx;
|
||
margin-left: 180upx;
|
||
color: #00c277;
|
||
}
|
||
.tips {
|
||
font-size: 22upx;
|
||
// margin-left: 80upx;
|
||
margin-top: 20upx;
|
||
}
|
||
uni-radio .uni-radio-input {
|
||
-webkit-appearance: none;
|
||
appearance: none;
|
||
margin-right: 5px;
|
||
outline: 0;
|
||
border: 1px solid #d1d1d1;
|
||
background-color: #fff;
|
||
border-radius: 50%;
|
||
width: 18px!important;
|
||
height: 18px!important;
|
||
position: relative;
|
||
}
|
||
</style>
|