123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- <template>
- <view class="car">
- <view class="cartop">
- <view class="topa flexc">
- <image :src="reset" class="resetimg" @click="getReset"></image>
- <picker range-key='dictLabel' :range="rymmList" @change='bindDateChangea'>
- <view class="chekt flexc">
- <view class="over">{{rymm|| "选择身份"}}</view>
- <image :src="up"></image>
- </view>
- </picker>
- <view class="search flexc">
- <image :src="search"></image>
- <!-- confirm-type="search" @confirm="getConfirm" -->
- <input placeholder="请输入人员姓名进行搜索" v-model="text"/>
- <view class="btn" @click="getConfirm">搜索</view>
- </view>
- </view>
- </view>
- <!-- 列表 -->
- <view class="carlists">
- <box-list :datainfo="list" :rymmList="rymmList" :wtdt="wtdt" type='people' @getDelFn="getDelFn" @getDetail="getDetail"></box-list>
- </view>
- <block v-if="checkPermi(['wuYe:residentInfo:add'])">
- <view style="height: 100rpx;"></view>
- <view class="rfbtn" @click="getAddFn">添加人员</view>
- </block>
- <loading></loading>
- </view>
- </template>
- <script>
- import config from '@/config'
- const baseUrl = config.baseUrl
- import boxList from "@/mine/components/box/list.vue"
- import {getDictionaryFn} from "@/api/system/user.js"
- import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
- import {houseInfoList} from "@/api/work/work.js"
- import {residentInfoList,residentInfoDel} from "@/api/work/people.js"
- export default{
- components:{boxList},
- data(){
- return{
- reset:require('@/mine/static/reset.png'),
- search:require('@/mine/static/search.png'),
- up:require('@/mine/static/up.png'),
- sfxx:"",
- text:'',
- rymm:'',
- rymmid:"",
- rymmList:[],
- list:[],
- pageSize: 10,
- pageNum: 1,
- reachflag: true,
- wtdt:'',
- houseId:'',
- }
- },
- onUnload() {
- uni.$off('residentInfoList')
- },
- onLoad: function(e) {
- uni.$on('residentInfoList',(res)=>{
- this.getrefreshData()
- })
- if(e.id){
- this.houseId=e.id;
- }
- this.init()
- this.getDataFn()
- },
- // 上拉触底加载更多触发事件
- onReachBottom() {
- if (this.reachflag) {
- this.pageNum++
- this.getDataFn()
- }
- },
- methods:{
- checkPermi, checkRole,
- init(){
- //人员面貌
- getDictionaryFn('affiliation_personnel').then(res=>{
- if(res.code==200){
- this.rymmList = res.data.map(v => {
- return {
- dictLabel: v.dictLabel,
- dictValue: v.dictValue
- }
- })
- }
- })
- },
- getAddFn(){
- this.$tab.navigateTo("/health/pages/health/add")
- },
- getDetail(id){
- this.$tab.navigateTo("/health/pages/health/add?id="+id)
- },
- getConfirm(){
- this.getrefreshData()
- },
- getReset(){
- this.rymm='';
- this.text='';
- this.getrefreshData()
- },
- getrefreshData(){
- this.pageNum=1;
- this.list=[];
- this.reachflag=true;
- this.getDataFn()
- },
- getTabFn(val){
- this.tabval=val
- },
- bindDateChangea(e){
- var val=e.detail.value;
- this.rymm=this.rymmList[val].dictLabel;
- this.rymmid=this.rymmList[val].dictValue;
- this.getrefreshData()
- },
- getDelFn(id){
- var that=this;
- residentInfoDel(id).then(res=>{
- if(res.code==200){
- that.$toast("删除成功")
- setTimeout(function(){
- that.getrefreshData()
- },1500)
- }
- })
- },
- getDataFn(){
- var params={
- pageSize:this.pageSize,
- pageNum: this.pageNum,
- }
- if(this.houseId){
- params.houseId=this.houseId
- }
- if(this.text){
- params.residentName=this.text
- }
- if(this.rymm){
- params.residentAppearance=this.rymmid
- }
- houseInfoList(params).then(res=>{
- if(res.code==200){
- if (res.rows.length < this.pageSize) {
- this.reachflag = false
- this.wtdt = '到底了~';
- } else {
- var num = parseInt(res.rows.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(res.rows))
- newArr.forEach(ite=>{
- var newArr=ite.residentInfoList;
- if(ite.residentInfoList){
- newArr.forEach(itea=>{
- itea.right=0
- })
- }
- ite.zhanflag=false;
- })
- if (this.pageNum == 1) {
- this.list = newArr;
- } else {
- this.list = this.list.concat(newArr)
- }
- }else{
- this.$toast(res.msg)
- }
- })
-
- },
- }
- }
- </script>
- <style>
- page{background: #F3F3F0;}
- </style>
- <style lang="scss" scoped>
- .car{padding-top: 140rpx;}
- .cartop{position: fixed;left: 0;right: 0;top: 0;background-color: #ffffff;z-index: 2;
- .topa{padding: 20rpx 20rpx 32rpx;
- .resetimg{width: 36rpx;height: 36rpx;margin-right: 24rpx;flex: 0 0 auto;}
- .chekt{width: 150rpx;overflow: hidden;
- view{font-weight: 500;font-size: 26rpx;color: #272727;flex: 1;}
- image{width: 24rpx;height: 16rpx;margin-left: 18rpx;flex: 0 0 auto;}
- }
- .search{flex: 1;margin-left: 16rpx;height: 64rpx;background: #EEEEEE;border-radius: 32rpx;border: 2rpx solid #E6E6E6;padding-left: 24rpx;box-sizing: border-box;
- image{width: 32rpx;height: 34rpx;margin-right: 22rpx;flex: 0 0 auto;}
- input{flex: 1;font-size: 26rpx;color: #272727;}
- .btn{width: 100rpx;height: 64rpx;background: #3565ED;border-radius: 32rpx;flex: 0 0 auto;font-weight: bold;text-align: center;line-height: 64rpx;
- font-size: 26rpx;
- color: #FFFFFF;}
- }
- }
- }
- .carlists{padding: 0 18rpx;}
- </style>
|