220 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			220 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="AppResidentDocument">
 | 
						|
    <div class="areatop">
 | 
						|
      <!-- <div>区域选择</div>
 | 
						|
      <AiAreaPicker v-model="areaId" :areaId="user.areaId" @select="seachObj"></AiAreaPicker>
 | 
						|
      <u-icon name="photo"></u-icon> -->
 | 
						|
      <!-- @select="areaSelect" -->
 | 
						|
      <u-form label-width="auto">
 | 
						|
        <u-form-item label="区域选择" right-icon="arrow-right" class="areaIds">
 | 
						|
          <AiAreaPicker v-model="areaId" :areaId="user.areaId" @select="seachObj" :name.sync="areaName"></AiAreaPicker>
 | 
						|
        </u-form-item>
 | 
						|
      </u-form>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="line"></div>
 | 
						|
 | 
						|
    <u-tabs :list="tabList" :is-scroll="false" :current="currentTabs" height="96" @change="change"></u-tabs>
 | 
						|
 | 
						|
    <div class="seachObjs">
 | 
						|
      <u-search v-model="keyword" :clearabled="true" placeholder="姓名/联系方式/身份证后6位" :show-action="false" bg-color="#F5F5F5" search-icon-color="#E2E8F1" color="#666" height="58" @search="handerSearch" @clear="handerClear"></u-search>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="datas" v-if="datas.length > 0">
 | 
						|
      <div class="datass" v-for="(item, iindex) in datas" :key="iindex" @click="toDetailCard(item)">
 | 
						|
        <div class="left">
 | 
						|
          <img :src="item.photo" alt="" v-if="item.photo" />
 | 
						|
          <img src="./components/img/4.png" alt="" v-else />
 | 
						|
        </div>
 | 
						|
 | 
						|
        <div class="right">
 | 
						|
          <div class="rightTop">{{ item.name }}</div>
 | 
						|
          <div class="rightBottom">
 | 
						|
            <span>{{ item.idNumber.replace(/^(\w{6})\w{8}(.*)$/, '$1****$2') }}</span>
 | 
						|
 | 
						|
            <span>{{ item.phone }}</span>
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <AiEmpty v-else></AiEmpty>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import { mapState } from 'vuex'
 | 
						|
 | 
						|
export default {
 | 
						|
  name: 'AppResidentDocument',
 | 
						|
  appName: '居民档案',
 | 
						|
  components: {},
 | 
						|
  props: {},
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      keyword: '',
 | 
						|
      datas: [],
 | 
						|
      current: 1,
 | 
						|
      size: 10,
 | 
						|
      tabList: [
 | 
						|
        {
 | 
						|
          name: '本地居民',
 | 
						|
        },
 | 
						|
        {
 | 
						|
          name: '流动人员',
 | 
						|
        },
 | 
						|
      ],
 | 
						|
      currentTabs: 0,
 | 
						|
      areaId: '',
 | 
						|
      areaName: ''
 | 
						|
    }
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapState(['user', 'global']),
 | 
						|
  },
 | 
						|
  watch: {},
 | 
						|
  onLoad() {
 | 
						|
    this.areaId = this.user.areaId
 | 
						|
    this.areaName = this.user.areaName
 | 
						|
    this.getList()
 | 
						|
  },
 | 
						|
  onShow() {
 | 
						|
    document.title = '居民列表'
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    getList() {
 | 
						|
      this.$http
 | 
						|
        .post('/app/appresident/list', null, {
 | 
						|
          params: {
 | 
						|
            size: this.size,
 | 
						|
            current: this.current,
 | 
						|
            con: this.keyword,
 | 
						|
            areaId: this.areaId,
 | 
						|
            residentType: this.currentTabs == 0 ? '0' : '1',
 | 
						|
          },
 | 
						|
        })
 | 
						|
        .then((res) => {
 | 
						|
          if (res.code == 0) {
 | 
						|
            this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records
 | 
						|
 | 
						|
            this.pages = res.data.pages
 | 
						|
          }
 | 
						|
        })
 | 
						|
    },
 | 
						|
 | 
						|
    change(index) {
 | 
						|
      this.currentTabs = index
 | 
						|
      this.current = 1
 | 
						|
      this.datas = []
 | 
						|
      this.getList()
 | 
						|
    },
 | 
						|
 | 
						|
    toDetailCard(item) {
 | 
						|
      uni.navigateTo({ url: `./DetailCard?id=${item.id}` })
 | 
						|
    },
 | 
						|
 | 
						|
    seachObj(e) {
 | 
						|
      this.areaId = e
 | 
						|
      this.current = 1
 | 
						|
      this.getList()
 | 
						|
    },
 | 
						|
 | 
						|
    handerSearch(e) {
 | 
						|
      this.keyword = e
 | 
						|
      this.current = 1
 | 
						|
      this.getList()
 | 
						|
    },
 | 
						|
 | 
						|
    handerClear() {
 | 
						|
      this.keyword = ''
 | 
						|
      this.current = 1
 | 
						|
      this.getList()
 | 
						|
    },
 | 
						|
  },
 | 
						|
  onReachBottom() {
 | 
						|
    this.current = this.current + 1
 | 
						|
    this.getList()
 | 
						|
  },
 | 
						|
}
 | 
						|
</script>
 | 
						|
 | 
						|
<style scoped lang="scss">
 | 
						|
.AppResidentDocument {
 | 
						|
  height: 100%;
 | 
						|
  background: #fff;
 | 
						|
  .areatop {
 | 
						|
    display: flex;
 | 
						|
    justify-content: space-between;
 | 
						|
    align-items: center;
 | 
						|
    padding: 0 32px;
 | 
						|
  }
 | 
						|
 | 
						|
  .line {
 | 
						|
    height: 16px;
 | 
						|
    background: #f5f5f5;
 | 
						|
  }
 | 
						|
  .seachObjs {
 | 
						|
    border-bottom: 2px solid #f5f5f5;
 | 
						|
    border-top: 2px solid #f5f5f5;
 | 
						|
    padding: 20px 32px;
 | 
						|
  }
 | 
						|
  ::v-deep .u-form {
 | 
						|
    width: 100%;
 | 
						|
    .areaIds {
 | 
						|
      .u-form-item__body {
 | 
						|
        .u-form-item--right {
 | 
						|
          .u-form-item--right__content {
 | 
						|
            display: flex;
 | 
						|
            align-items: center;
 | 
						|
            .u-form-item--right__content__slot {
 | 
						|
              .AiAreaPicker {
 | 
						|
                width: 100%;
 | 
						|
                display: flex;
 | 
						|
                justify-content: flex-end;
 | 
						|
                .areaSelector {
 | 
						|
                  .location {
 | 
						|
                    opacity: 0;
 | 
						|
                  }
 | 
						|
                }
 | 
						|
              }
 | 
						|
            }
 | 
						|
            .u-form-item--right__content__icon {
 | 
						|
              margin-bottom: 8px;
 | 
						|
            }
 | 
						|
          }
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
  .datas {
 | 
						|
    .datass {
 | 
						|
      display: flex;
 | 
						|
      padding: 24px 32px;
 | 
						|
      .left {
 | 
						|
        img {
 | 
						|
          width: 80px;
 | 
						|
          height: 80px;
 | 
						|
          border-radius: 50%;
 | 
						|
        }
 | 
						|
      }
 | 
						|
      .right {
 | 
						|
        display: flex;
 | 
						|
        flex-direction: column;
 | 
						|
        margin-left: 32px;
 | 
						|
        width: 100%;
 | 
						|
        .rightTop {
 | 
						|
          font-size: 32px;
 | 
						|
          font-weight: 500;
 | 
						|
          color: #333333;
 | 
						|
        }
 | 
						|
        .rightBottom {
 | 
						|
          display: flex;
 | 
						|
          justify-content: space-between;
 | 
						|
          margin-top: 8px;
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |