| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- <template>
- <view class="common_page adffc" :style="{'height':h+'px', 'padding-top':mt+'px'}">
- <cus-header title="报名信息" bgColor="#FFFFFF"></cus-header>
- <view class="add">
- <view class="btn adfacjc" @click="handleAdd">
- <image src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/10/09/af9133fd-e15e-454d-9152-e4629fd0ce28.png"></image>
- <text>添加</text>
- </view>
- </view>
- <template v-if="list.length">
- <view class="list">
- <up-list @scrolltolower="scrolltolower" style="height: 100%;">
- <up-list-item v-for="(item, index) in list" :key="index">
- <view class="box adfacjb">
- <view class="box-left adfac" @click="handleEdit(item,index)">
- <view class="box-left-edit">
- <image src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/10/09/7799f9f2-1dca-4af3-980b-7f6def10e22f.png"></image>
- </view>
- <view class="box-left-info">
- <view class="box-left-info-top adfac">
- <view class="name">{{item.name||''}}</view>
- <image class="sex" v-if="item.gender==1" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/09/12/b6d1fcb3-55ba-4104-b8cd-756b963a4da8.png"></image>
- <image class="sex" v-else-if="item.gender==0" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/09/12/a1899fd0-c468-48d9-b554-2f17b75a4157.png"></image>
- <view class="age" :class="{'women':item.gender==1,'man':item.gender==0}">{{item.age}}岁</view>
- </view>
- <view class="box-left-info-bottom">
- 身份证 {{item.idCardCopy}}
- </view>
- </view>
- </view>
- <view class="box-right" @click="handleSelect(item,index)">
- <image v-if="item.select" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/09/12/87b5b244-d14f-43cd-991b-4ac9f48d909e.png"></image>
- <image v-else src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/09/12/b8a5cabd-57f8-4ad7-9677-f6372423c50a.png"></image>
- </view>
- </view>
- </up-list-item>
- </up-list>
- </view>
- <view class="confirm" @click="confirmSelect">确定,已选择{{selectNum}}人</view>
- </template>
- <view class="dataEmpty" v-else>
- <page-empty text="暂无可选成员,请添加"></page-empty>
- </view>
- </view>
- </template>
- <script setup name="">
- import CusHeader from '@/components/CusHeader/index.vue'
- import PageEmpty from '@/components/pageEmpty/index.vue'
- import { ref, onMounted, getCurrentInstance } from 'vue'
- const { proxy } = getCurrentInstance()
-
- const queryParams = ref({
- page:1,
- limit:-1,
- userId:''
- })
- const list = ref([])
- const selectNum = ref(0)
-
- const getMemberList = () => {
- proxy.$api.get('/core/family/member/page',queryParams.value).then(({data:res})=>{
- if(res.code!==0) return proxy.$showToast(res.msg)
- list.value = [...list.value,...res.data.list]
- list.value.forEach(l=>{
- l.age = getAge(l.idCard)
- l.select = false;
- l.idCardCopy = l.idCard.replace(/^(\d{6})(\d{8})(\d{3}[\dX])$/i,'$1********$3')
- })
- })
- }
-
- const isValid = (idCard) => {
- // 正则表达式校验18位身份证号码(最后一位可以是数字或X/x)
- const regex = /^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/;
- return typeof idCard === 'string' && regex.test(idCard);
- }
-
- const getAge = (idCard) => {
- if (!isValid(idCard)) return 0
-
- // 从身份证的第7位开始,截取8位作为出生日期字符串 (YYYYMMDD)
- const birthDateStr = idCard.substring(6, 14);
- const birthYear = parseInt(birthDateStr.substring(0, 4), 10);
- const birthMonth = parseInt(birthDateStr.substring(4, 6), 10);
- const birthDay = parseInt(birthDateStr.substring(6, 8), 10);
-
- const today = new Date();
- const currentYear = today.getFullYear();
- const currentMonth = today.getMonth() + 1; // getMonth() 返回 0-11
- const currentDay = today.getDate();
-
- // 计算周岁
- let age = currentYear - birthYear;
-
- // 如果当前月份小于出生月份,或者月份相同但日期小于出生日期,说明今年的生日还没过
- if (currentMonth < birthMonth || (currentMonth === birthMonth && currentDay < birthDay)) {
- age--;
- }
-
- return age < 0 ? 0 : age;
- }
-
- const handleAdd = () => {
- uni.navigateTo({
- url:'/pagesHome/applyMemberVindicate'
- })
- }
-
- const handleEdit = (item,index) => {
- uni.navigateTo({
- url:'/pagesHome/applyMemberVindicate?id='+item.id
- })
- }
-
- const handleSelect = (item,index) => {
- list.value[index].select = !list.value[index].select;
- selectNum.value = list.value.filter(l=>l.select).length;
- }
-
- const confirmSelect = () => {
- if(list.value.filter(l=>l.select).length===0) return proxy.$showToast('请至少选择一位人员')
- let selectList = list.value.filter(l=>l.select);
- proxy.getOpenerEventChannel().emit('selectMembers',selectList);
- uni.navigateBack();
- }
-
- onMounted(()=>{
- try{
- queryParams.value.userId = JSON.parse(uni.getStorageSync('userInfo')).id;
- getMemberList()
- }catch(e){
- }
- })
- </script>
- <style scoped lang="scss">
- .common_page{
- padding-bottom: 60rpx;
- .add{
- margin-top: 20rpx;
- background: #FFFFFF;
- border-radius: 20rpx 20rpx 0 0;
- padding: 30rpx 24rpx 20rpx;
- .btn{
- width: 100%;
- background: rgba(112,207,82,0.08);
- border-radius: 24rpx;
- border: 1rpx dotted #70CF52;
- padding: 21rpx 0;
- image{
- width: 36rpx;
- height: 36rpx;
- }
- text{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 28rpx;
- color: #70CF52;
- line-height: 40rpx;
- margin-left: 18rpx;
- letter-spacing: 2rpx;
- }
- }
- }
-
- .list{
- flex: 1;
- overflow: auto;
- background: #FFFFFF;
- border-radius: 0 0 20rpx 20rpx;
- padding: 0 24rpx;
- .box{
- padding: 37rpx 0;
- box-shadow: inset 0rpx -1rpx 0rpx 0rpx #F2F2F2;
- &-left{
- width: calc(100% - 76rpx);
- &-edit{
- width: 36rpx;
- height: 36rpx;
- image{
- width: 100%;
- height: 100%;
- }
- }
- &-info{
- width: calc(100% - 36rpx);
- padding-left: 20rpx;
- box-sizing: border-box;
- &-top{
- .name{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #151B29;
- line-height: 32rpx;
- }
- .sex{
- width: 44rpx;
- height: 32rpx;
- margin-left: 16rpx;
- }
- .age{
- border-radius: 13rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 20rpx;
- line-height: 24rpx;
- padding: 4rpx 10rpx;
- margin-left: 13rpx;
- &.women{
- background: rgba(244,101,122,0.14);
- color: #F4657A;
- }
- &.man{
- background: rgba(5,169,254,0.12);
- color: #05A9FE;
- }
- }
- }
- &-bottom{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #989998;
- line-height: 24rpx;
- margin-top: 23rpx;
- }
- }
- }
-
- &-right{
- width: 36rpx;
- height: 36rpx;
- image{
- width: 100%;
- height: 100%;
- }
- }
- }
- }
-
- .confirm{
- padding: 0 40rpx;
- margin: 40rpx 0 64rpx;
- display: inline-block;
- height: 90rpx;
- background: #B7F358;
- border-radius: 45rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #151B29;
- line-height: 90rpx;
- text-align: center;
- letter-spacing: 2rpx;
- }
-
- .empty{
- margin-top: 300rpx;
- text-align: center;
- font-size: 32rpx;
- color: #666666;
- }
- }
- </style>
|