zouling 3 месяцев назад
Родитель
Сommit
2b16a73f78

+ 1 - 1
property_ui/api/work/index.js

@@ -1,5 +1,5 @@
 import request from '@/utils/request'
-//身份证识别
+//统计
 export function getCount(data) {
   return request({
     'url': '/wuYe/statistics/num/app',

+ 19 - 4
property_ui/api/work/manage.js

@@ -125,6 +125,14 @@ export function partyNewsDet(data) {
     method: 'get',
   })
 }
+// 党建资讯党员-数量wuYe:residentInfo:count
+export function partyNewsCount(data) {
+  return request({
+    url: '/wuYe/residentInfo/count',
+    method: 'get',
+	'data':data
+  })
+}
 // 社区资讯-新增wuYe:news:add
 export function newsAdd(data) {
   return request({
@@ -163,15 +171,22 @@ export function newsDet(data) {
     method: 'get',
   })
 }
-// 社区资讯-详情wuYe:news:getCommentInteraction
+// 获取未读互动数量wuYe:news:getCommentInteractionCount
+export function getCommentInteractionCount(data) {
+  return request({
+    url: '/wuYe/news/getCommentInteractionCount',
+    method: 'post',
+    'data': data
+  })
+}
+// 获取未读互动列表wuYe:news:getCommentInteraction
 export function getCommentInteraction(data) {
   return request({
     url: '/wuYe/news/getCommentInteraction',
     method: 'post',
-	'data':data
+    'data': data
   })
 }
-
 // 员工培训手册-新增wuYe:manual:add
 export function manualAdd(data) {
   return request({
@@ -210,7 +225,7 @@ export function manualDet(data) {
     method: 'get',
   })
 }
-//获取已读人员名单wuYe:getRead:add
+//获取已读人员名单wuYe:manual:getRead
 export function manualgetRead(data) {
   return request({
     url: '/wuYe/manual/getRead',

+ 4 - 4
property_ui/manage/components/car/list.vue

@@ -330,9 +330,9 @@
 							<view class="flexcj">
 								<view class="watopcomb">{{ite.publishTime}}</view>
 								<!-- 管理员 -->
-								<view class="f12 cofe fw5" @click.stop="getReadlist" v-if="checkPermi(['wuYe:getRead:add'])">已读名单</view>
+								<view class="f12 cofe fw5" @click.stop="getReadlist(ite.manualId)" v-if="checkPermi(['wuYe:manual:getRead'])">已读名单</view>
 								<!-- 员工 -->
-								<view class="f12 co27 fw5" >进度:{{ite.progress||0}}%</view>
+								<view class="f12 co27 fw5" v-else>进度:{{ite.progress||0}}%</view>
 							</view>
 					</view>
 					<view class="wabtn" @click.stop="getDetail(ite.manualId)">
@@ -361,7 +361,7 @@
 						<view class="flexcj">
 							<view class="num">{{ite.duration}}</view>
 							<!-- 管理员 -->
-							<view class="f12 cofe fw5" @click.stop="getReadlist">已读名单</view>
+							<view class="f12 cofe fw5" @click.stop="getReadlist(ite.manualId)">已读名单</view>
 							<!-- 员工 -->
 							<view class="f12 co27 fw5">进度:{{ite.progress||0}}%</view>
 						</view>
@@ -377,7 +377,7 @@
 				<image class="head" :src="man" v-if="ite.sex==1"></image>
 				<image class="head" :src="woman" v-else></image>
 				<view class="flex1">
-					<view class="tit">{{ite.searchValue}}</view>
+					<view class="tit">{{ite.name}}</view>
 					<view class="time"><text>阅读时间 |</text> {{ite.time}}</view>
 				</view>
 			</view>

+ 11 - 2
property_ui/manage/pages/community/newsdj.vue

@@ -2,7 +2,7 @@
 	<view class="car">
 		<view class="cartop">
 			<view class="toptit">
-				<image :src="djtop"></image>本社区党员共<text>367</text>人
+				<image :src="djtop"></image>本社区党员共<text>{{count}}</text>人
 			</view>
 			<view class="tabtop flexc">
 				<view class="tabt" :class="tabval==ite.dictValue?'act':''" v-for="(ite,idx) in wzlxList" :key="idx" @click="getTabFn(ite.dictValue)">{{ite.dictLabel}}</view>
@@ -27,7 +27,7 @@
 	import carList from "@/manage/components/car/list.vue"
 	import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
 	import {getDictionaryFn} from "@/api/system/user.js"
-	import {partyNewsList,partyNewsDel} from "@/api/work/manage.js"
+	import {partyNewsList,partyNewsDel,partyNewsCount} from "@/api/work/manage.js"
 	export default{
 		components:{carList},
 		data(){
@@ -43,6 +43,7 @@
 				tabval:'',
 				wzlxList:[],
 				baseUrl:config.baseUrl,
+				count:'',
 			}
 		},
 		onUnload() {
@@ -80,6 +81,14 @@
 						}
 					}
 				})
+				var params={
+					residentAppearance:"2"
+				}
+				partyNewsCount(params).then(res=>{
+					if(res.code==200){
+						this.count=res.data;
+					}
+				})
 			},
 			getAddFn(){
 				this.$tab.navigateTo("/manage/pages/community/newsadddj")

+ 12 - 2
property_ui/manage/pages/community/newssq.vue

@@ -4,7 +4,7 @@
 			<view class="tabtop flexc">
 				<view class="tabt" :class="tabval==ite.dictValue?'act':''" v-for="(ite,idx) in wzlxList" :key="idx" @click="getTabFn(ite.dictValue)">{{ite.dictLabel}}</view>
 				<view class="numbox">
-					未读互动<text>27</text>
+					未读互动<text>{{hdcount}}</text>
 				</view>
 			</view>
 		</view>
@@ -23,7 +23,7 @@
 	import carList from "@/manage/components/car/list.vue"
 	import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
 	import {getDictionaryFn} from "@/api/system/user.js"
-	import {newsList,newsDel} from "@/api/work/manage.js"
+	import {newsList,newsDel,getCommentInteractionCount} from "@/api/work/manage.js"
 	export default{
 		components:{carList},
 		data(){
@@ -37,6 +37,7 @@
 				wtdt:'',
 				tabval:'',
 				wzlxList:[],
+				hdcount:0,
 			}
 		},
 		onUnload() {
@@ -47,6 +48,7 @@
 				this.getrefreshData()
 			})
 			this.init()
+			this.getCommentInteractionCount()
 		},
 		// 上拉触底加载更多触发事件
 		onReachBottom() {
@@ -57,6 +59,14 @@
 		},
 		methods:{
 			checkPermi, checkRole,
+			getCommentInteractionCount(){
+				var params={}
+				getCommentInteractionCount(params).then(res=>{
+					if(res.code==200){
+						this.hdcount=res.data
+					}
+				})
+			},
 			init(){
 				// 社区资讯类型
 				getDictionaryFn('community_typ').then(res=>{

+ 5 - 3
property_ui/manage/pages/community/newsyg.vue

@@ -84,12 +84,14 @@
 			calculateStayDuration() {
 			    const currentTime = Date.now();
 				var time=Math.floor((currentTime - this.pageLoadTime) / 1000); // 转换为秒
-				var staffTime=Math.ceil(time/60);//向上取整,转换成分钟
+				// var staffTime=Math.ceil(time/60);//向上取整,转换成分钟
+				var staffTime=Math.round(time/60);//四舍五入转换成分钟
 				var params={
 					staffTime:staffTime,
 				}
 				staffTrainTime(params).then(res=>{
 				})
+				
 			},
 			init(){
 				// 发布类型
@@ -133,8 +135,8 @@
 			getAddvideoFn(){
 				this.$tab.navigateTo("/manage/pages/community/newsaddvideo")
 			},
-			getReadlist(){
-				this.$tab.navigateTo("/manage/pages/community/readlist")
+			getReadlist(e){
+				this.$tab.navigateTo("/manage/pages/community/readlist?id="+e)
 			},
 			getCount(){
 				this.$tab.navigateTo("/manage/pages/community/readcount")

+ 10 - 73
property_ui/manage/pages/community/newsygdetail.vue

@@ -12,74 +12,6 @@
 				</view>
 			</view>
 		</view>
-		<view class="ndbox mb12 plr15 comment-section" style="display:none">
-			<view class="pltit">评论<text>(31)</text></view>
-			<!-- 评论列表 -->
-			<view class="pllist flex">
-				<image :src="head" class="head"></image>
-				<view class="flex1 overh">
-					<view class="flext mb14 ">
-						<view class="plname flex1 over">床前明月光</view>
-						<view class="plrbtn flexc flex0">
-							<!-- <image :src="niconb" class="imga"></image> -->
-							<image :src="nicond"></image>
-							<view>点赞</view>
-						</view>
-						<view class="plrbtn flexc flex0">
-							<image :src="nicone" class="imgb"></image>
-							<view>回复</view>
-						</view>
-					</view>
-					<view class="infotxt mb15">支持!去看一下优惠政策!<view class="infotime">12-3</view></view>
-				</view>
-			</view>
-			<view class="pllist flex">
-				<image :src="head" class="head"></image>
-				<view class="flex1 overh">
-					<view class="flext mb14 ">
-						<view class="plname flex1 over">疑是地上霜</view>
-						<view class="plrbtn flexc flex0">
-							<image :src="niconb" class="imga"></image>
-							<!-- <image :src="nicond"></image> -->
-							<view>点赞</view>
-						</view>
-						<view class="plrbtn flexc flex0">
-							<image :src="nicone" class="imgb"></image>
-							<view>回复</view>
-						</view>
-					</view>
-					<view class="infotxt mb15">提前缴一年的物业费,可以免一个月吗?<view class="infotime">12-3</view></view>
-					<!-- 二级回复 -->
-					<view class="pllist flex">
-						<image :src="head" class="head"></image>
-						<view class="flex1 overh">
-							<view class="flext mb14 ">
-								<view class="plname flex1 over">幸福小区物业</view>
-								<view class="plrbtn flexc flex0">
-									<image :src="niconb" class="imga"></image>
-									<!-- <image :src="nicond"></image> -->
-									<view>点赞</view>
-								</view>
-								<view class="plrbtn flexc flex0">
-									<image :src="nicone" class="imgb"></image>
-									<view>回复</view>
-								</view>
-							</view>
-							<view class="infotxt mb15">尊敬的业主朋友,您的建议我司已收到,将在内 部讨论后于物业公告中告知结果,谢谢您的宝贵 建议!<view class="infotime">12-3</view></view>
-						</view>
-					</view>
-				</view>
-			</view>
-			<view style="height:100rpx"></view>
-			<view class="pjfbtn">
-				<view class="flexc pjfbox">
-					<uni-easyinput type="textarea" autoHeight v-model="text" :inputBorder='false' placeholder="发表我的评论…" />
-					<view class="btns">发送</view>
-				</view>
-			</view>
-		</view>
-		<!-- 评论 -->
-		
 	<loading></loading>	
 	</view>
 </template>
@@ -153,7 +85,8 @@
 			calculateStayDuration() {
 			    const currentTime = Date.now();
 				var time=Math.floor((currentTime - this.pageLoadTime) / 1000); // 转换为秒
-				var staffTime=Math.ceil(time/60);//向上取整,转换成分钟
+				// var staffTime=Math.ceil(time/60);//向上取整,转换成分钟
+				var staffTime=Math.round(time/60);//四舍五入,转换成分钟
 				var params={
 					staffTime:staffTime,
 				}
@@ -165,7 +98,9 @@
 				}
 				manualPut(paramsput).then(res=>{
 					if(res.code==200){
-						
+						if(this.putflag){
+							uni.$emit('newsygList')
+						}
 					}
 				})
 			},
@@ -200,12 +135,14 @@
 					if(height<Number(windowHeight)){
 						this.progress=100;
 						this.scrollflag=false;
+						this.datainfo.progress=	100;
+						this.putflag=true;
 					}
 				}).exec();
 				 // 获取评论模块高度
-				query.select('.comment-section').boundingClientRect(data => {
-				    this.commentHeight = data.height;
-				}).exec();
+				// query.select('.comment-section').boundingClientRect(data => {
+				//     this.commentHeight = data.height;
+				// }).exec();
 				
 			},
 			getDetailFn(){

+ 12 - 31
property_ui/manage/pages/community/readlist.vue

@@ -53,9 +53,11 @@
 				tabval:'0',
 				tablist:[{tit:'全部',val:0},{tit:'待回复',val:1},{tit:'已回复',val:2},{tit:'已完成',val:2}],
 				total:0,
+				manualId:"",
 			}
 		},
-		onLoad: function() {
+		onLoad: function(e) {
+			this.manualId=e.id;
 			this.getDataFn()
 		},
 		// 上拉触底加载更多触发事件
@@ -90,47 +92,26 @@
 			bindDateChangea(e){
 				var val=e.detail.value;
 				this.cxrq=val;
+				this.getrefreshData()
 			},
 			getDataFn(){
 				var params={
-					pageSize:this.pageSize,
-					pageNum: this.pageNum,
+					// pageSize:this.pageSize,
+					// pageNum: this.pageNum,
+					manualId:this.manualId
 				}
 				if(this.cxrq){
-					params.createTime=this.cxrq
+					params.createTime=this.cxrq+' 00:00:00'
 				}
 				if(this.text){
-					params.searchValue=this.text
+					params.author=this.text
 				}
 				manualgetRead(params).then(res=>{
 					if(res.code==200){
-						if(res.total){
-							this.total=res.total;
-						}
-						var data=res.data;
-						if (data.length < this.pageSize) {
-							this.reachflag = false
-							this.wtdt = '到底了~';
-						} else {
-							var num = parseInt(data.length) + parseInt(this.pageSize) * parseInt(this.pageNum -	1)
-							if (num < res.total) {
-								this.reachflag = true
-								this.wtdt = ''
-							} else {
-								this.reachflag = false
-								this.wtdt = '到底了~';
-							}
-						}
-						var newArr=JSON.parse(JSON.stringify(data))
-						// newArr.forEach(ite=>{
-						// 	ite.right=0;
-						// })
-						// // console.log(newArr,555)
-						if (this.pageNum == 1) {
-							this.list = newArr;
-						} else {
-							this.list = this.list.concat(newArr)
+						if(res.data){
+							this.total=res.data.length;
 						}
+						this.list = res.data;
 					}else{
 						this.$toast(res.msg)
 					}

+ 1 - 1
property_ui/mine/pages/news/index.vue

@@ -15,7 +15,7 @@
 		data(){
 			return{
 				hrimg:require('@/static/logo.png'),
-				list:[{tit:"11"}],
+				list:[],
 				pageSize: 10,
 				pageNum: 1,
 				reachflag: true,

+ 1 - 1
property_ui/mine/pages/news/sh.vue

@@ -16,7 +16,7 @@
 		data(){
 			return{
 				hrimg:require('@/static/logo.png'),
-				list:[{tit:"11"}],
+				list:[],
 				pageSize: 10,
 				pageNum: 1,
 				reachflag: true,

+ 8 - 1
property_ui/service/components/car/list.vue

@@ -57,7 +57,8 @@
 							<!-- <view class="txt coa" v-if="ite.type==3">已完成</view>
 							<view class="txt co28" v-if="ite.type==2">处理中</view> -->
 						</view>
-						<view class="walist"><view class="tit">小区名称</view>:{{ite.communityName}}</view>
+						<!-- <view class="walist"><view class="tit">小区名称</view>:{{ite.communityName}}</view> -->
+						<view class="walist"><view class="tit">项目</view>:{{kaType(ite.maintenanceCategory,bxlbList)}}</view>
 						<view class="walist"><view class="tit">报修门户</view>:{{ite.houseAddress}}</view>
 						<view class="walist"><view class="tit">报修时间</view>:{{ite.repairTime}}</view>
 						<view class="walist" v-if="ite.type==3"><view class="tit" >完成时间</view>:{{ite.completionTime}}</view>
@@ -145,6 +146,12 @@
 				default () {
 					return []
 				}
+			},
+			bxlbList:{
+				type:Array,
+				default () {
+					return []
+				}
 			}
 		},
 		data(){

+ 3 - 4
property_ui/service/components/popup/popup.vue

@@ -18,7 +18,7 @@
 					<view class="asslist" :class="peoval==ite.staffId?'act':''" v-for="(ite,idx) in peolist" :key="idx" @click="getChose(ite.staffId,ite)">
 						<image :src="headbg" v-if="peoval==ite.staffId"></image>
 						<view class="altit">{{ite.staffName}}</view>
-						<view class="altxt " :class="{'cof6':ite.status==0,'co28':ite.status==1,}">{{kaType(ite.status,vxsztList)}}</view>
+						<view class="altxt " :class="{'cof6':ite.status==2,'co28':ite.status==1,}">{{kaType(ite.status,vxsztList)}}</view>
 						<!-- <view class="altxt co28" v-if="ite.status==1">空闲中</view> -->
 					</view>
 				</view>
@@ -188,7 +188,6 @@
 					value: 1
 				}],
 				peoval:0,
-				// peolist:[{name:'王安安',val:"0",type:0},{name:'刘柠溪',val:"1",type:1},{name:'王合一',val:"2",type:0},],
 				text:'',//文本框
 				peoinfo:'',
 				phofile:[],
@@ -210,7 +209,7 @@
 				// this.filelist=[];
 				// this.shtext='';
 				// this.isty='2';
-				// this.phofile=[];
+				this.phofile=[];
 			}
 		},
 		methods:{
@@ -255,7 +254,7 @@
 				this.peoval=val;
 				this.peoinfo=JSON.parse(JSON.stringify(ite))
 			},
-			getPreviewImage(arr,idx){
+			getPreview(idx,arr){
 				var newArr=[];
 				arr.forEach(ite=>{
 					var ds=this.baseUrl+ite

+ 1 - 1
property_ui/service/pages/service/patrollist.vue

@@ -40,7 +40,7 @@
 				day:require('@/service/static/service/day.png'),
 				cxrq:"",
 				text:'',
-				list:[{tit:'皖A IC520',type:1},{tit:'晋E KD783',type:2},],
+				list:[],
 				pageSize: 10,
 				pageNum: 1,
 				reachflag: true,

+ 1 - 1
property_ui/service/pages/service/patrolrecord.vue

@@ -36,7 +36,7 @@
 				day:require('@/service/static/service/day.png'),
 				cxrq:"",
 				text:'',
-				list:[{tit:'皖A IC520',type:1},{tit:'晋E KD783',type:2},],
+				list:[],
 				pageSize: 10,
 				pageNum: 1,
 				reachflag: true,

+ 14 - 2
property_ui/service/pages/service/warranty.vue

@@ -21,7 +21,7 @@
 		</view>
 		<!-- 列表 -->
 		<view class="carlists">
-			<car-list :datainfo="list" :bxztList="bxztList"  :wtdt="wtdt" type='warranty' @getDetail="getDetail" @getDelFn="getDelFn"></car-list>
+			<car-list :datainfo="list" :bxlbList="bxlbList" :bxztList="bxztList"  :wtdt="wtdt" type='warranty' @getDetail="getDetail" @getDelFn="getDelFn"></car-list>
 		</view>
 		<loading></loading>
 	</view>
@@ -43,7 +43,7 @@
 				up:require('@/car/static/car/up.png'),
 				cxrq:"",
 				text:'',
-				list:[{tit:'皖A IC520',type:1},{tit:'晋E KD783',type:2},],
+				list:[],
 				pageSize: 10,
 				pageNum: 1,
 				reachflag: true,
@@ -51,6 +51,7 @@
 				tabval:'-1',
 				tablist:[{tit:'全部报修',val:-1}],
 				bxztList:[],
+				bxlbList:[],
 			}
 		},
 		onUnload() {
@@ -89,6 +90,17 @@
 						})
 					}
 				})
+				// 报修状态
+				getDictionaryFn('baoxiutype').then(res=>{
+					if(res.code==200){
+						this.bxlbList = res.data.map(v => {
+							return {
+								dictLabel: v.dictLabel,
+								dictValue: v.dictValue
+							}
+						})
+					}
+				})
 			},
 			getDelFn(data){
 				var that=this;

+ 3 - 1
property_ui/service/pages/service/warrantydetail.vue

@@ -49,7 +49,8 @@
 					<view>基础信息</view>
 					<view class="flex1"></view>
 				</view>
-				<view class="walist watxt"><view class="wtit">小区名称</view><view class="wtxt">{{datainfo.communityName}}</view></view>
+				<!-- <view class="walist watxt"><view class="wtit">小区名称</view><view class="wtxt">{{datainfo.communityName}}</view></view> -->
+				<view class="walist watxt"><view class="wtit">项目</view><view class="wtxt">{{kaType(datainfo.maintenanceCategory,bxlbList)}}</view></view>
 				<view class="walist watxt"><view class="wtit">报修门户</view><view class="wtxt">{{datainfo.houseAddress}}</view></view>
 				<view class="walist watxt"><view class="wtit">报修时间</view><view class="wtxt">{{datainfo.repairTime}}</view></view>
 				<view class="walist watxt"><view class="wtit">联系方式</view><view class="wtxt">{{datainfo.phoneNumber}}</view></view>
@@ -230,6 +231,7 @@
 				}else if(type=='assigncheck'){
 					var params={};
 					params.repairId=this.id;
+					params.staffId=this.datainfo.staffId;
 					if(this.repairStatus==2){//上门拍照
 						params.repairStatus=3;
 						params.visitPhoto=ite.imgurl;

+ 2 - 2
property_ui/store/modules/user.js

@@ -134,12 +134,12 @@ const user = {
       })
     },
 
-    // 获取用户信息
+    // 获取用户信息require("@/static/images/profile.jpg")
     GetInfo({ commit, state }) {
       return new Promise((resolve, reject) => {
         getInfo().then(res => {
           const user = res.user
-          const avatar = (user == null || user.avatar == "" || user.avatar == null) ? require("@/static/images/profile.jpg") :  user.avatar
+          const avatar = (user == null || user.avatar == "" || user.avatar == null) ? '' :  user.avatar
           const username = (user == null || user.userName == "" || user.userName == null) ? "" : user.userName
 		  const nickName = (user == null || user.nickName == "" || user.nickName == null) ? "" : user.nickName
 		  const userId = (user == null || user.userId == "" || user.userId == null) ? "" : user.userId

+ 1 - 98
property_ui/work/components/car/list.vue

@@ -123,104 +123,7 @@
 				</view>
 			</view>
 		</block>
-		<!-- 党建资讯 -->
-		<block v-if="type=='newsdj'">
-			<view class="newlists" v-for="(ite,idx) in datainfo" :key="idx" @click="getDetail" 
-			>
-				<view class="tit">潜山:多举措建优非公党建工作指导员队伍</view>
-				<view class="txt overtwo">如何不断激发非公企业和社会组织党建工作新活力?潜山市委社 会工作部发挥考核的指挥棒作用,“三点发力”推动党建工作部…</view>
-				<view class="stabox flexc">
-					<view class="time flex1">2024-11-18 08:16:54</view>
-					<view class="btns">
-						<!-- <image :src="star" class="imga"></image>42 -->
-						<image :src="stara" class="imga"></image>42
-					</view>
-					<view class="btns">
-						<image :src="eye" class="imgb"></image>1361
-					</view>
-				</view>
-
-			</view>
-			<!-- checkPermi(['system:menuFood:remove'])&& -->
-		</block>
-		<!-- 社区资讯 -->
-		<block v-if="type=='newssq'">
-			<view class="walists" v-for="(ite,idx) in datainfo" :key="idx" @click="getDetail">
-				<view class="watop watopcom">
-					<view class="watit">
-						<view class="tit">物业服务费缴费公告<text class="cir"></text></view>
-					</view>
-					<view class="watopcoma overtwo">尊敬的各位业主:为更好地提供优质小区环境,保障小区 公共区域设施设备正常的运行,现收取2024年度物业…</view>
-					<view class="watopcomb">2024-11-18 08:16:54</view>
-				</view>
-				<view class="wabtn">
-					<view>查看详情</view>
-					<image :src="rimg"></image>
-				</view>
-			</view>
-		</block>
-		<!-- 员工图文 -->
-		<block v-if="type=='ystv'">
-			<view class="walists" v-for="(ite,idx) in datainfo" :key="idx" @click="getDetail">
-				<view class="watop watopcom" style="padding-bottom: 22rpx !important;">
-					<view class="watit">
-						<view class="tit">1.3 业务流程与工作规范</view>
-					</view>
-					<view class="watopcoma overtwo">业主入住与退房流程、维修报修流程、安全防范措施与应
-急处理、公共区域维护与清洁、物业费收缴与开支管理…</view>
-						
-						<view class="flexcj">
-							<view class="watopcomb">2024-11-18 08:16:54</view>
-							<!-- 管理员 -->
-							<view class="f12 cofe fw5" @click="getReadlist">已读名单</view>
-							<!-- 员工 -->
-							<view class="f12 co27 fw5" >进度:100%</view>
-						</view>
-					
-				</view>
-			</view>
-		</block>
-		<!-- 员工视频 -->
-		<block v-if="type=='ygsp'">
-			<view class="videolists flex" v-for="(ite,idx) in datainfo" :key="idx" @click="getDetail">
-				<view class="flex0 mr12">
-					<video class="videos" id="myVideo" src="https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/2minute-demo.mp4"
-					      @error="videoErrorCallback" :danmu-list="danmuList" enable-danmu danmu-btn controls></video>
-				</view>
-				<view class="flex1 over	titbox">
-					<view class="tit over">1.3 业务流程与工作规范</view>
-					<view class="flexcj">
-						<view class="num">03:41</view>
-						<!-- 管理员 -->
-						<view class="f12 cofe fw5" @click="getReadlist">已读名单</view>
-						<!-- 员工 -->
-						<view class="f12 co27 fw5" >进度:100%</view>
-					</view>
-					<view class="time">2024-11-18 08:16:54</view>
-				</view>
-			</view>
-		</block>
-		<!-- 阅读名单 -->
-		<block v-if="type=='readlist'" >
-			<view class="readlist" v-for="(ite,idx) in datainfo" :key="idx" @click="getDetail">
-				<image class="head" :src="man" v-if="ite.sex==1"></image>
-				<image class="head" :src="woman" v-else></image>
-				<view class="flex1">
-					<view class="tit">袁玥</view>
-					<view class="time"><text>阅读时间 |</text> 2024-12-01   18:37:56</view>
-				</view>
-			</view>
-		</block>
-		<block v-if="type=='readcount'" >
-			<view class="readlist" v-for="(ite,idx) in datainfo" :key="idx" @click="getDetail">
-				<image class="head" :src="man" v-if="ite.sex==1"></image>
-				<image class="head" :src="woman" v-else></image>
-				<view class="flex1">
-					<view class="tit">袁玥</view>
-					<view class="time"><text>阅读总时长 |</text> 8小时54分31秒</view>
-				</view>
-			</view>
-		</block>
+		
 		<view class="shax">{{wtdt}}</view>
 	</block>