| | |
| | | </view> |
| | | </view> |
| | | <view v-else class="px-31"> |
| | | <view class="mt-38 br-19 bgColor3 shadow2 oh pb-31" v-for="(item,index) in list" :key="item.idNumber"> |
| | | <view class="mt-38 br-19 bgColor3 shadow2 oh pb-31" v-for="(item,index) in list" :key="item.id"> |
| | | <view class="pt-21 px-31 flex a-center j-between font-bold"> |
| | | <view class="flex a-center"> |
| | | <view class="fs-31 lh-38 mr-23">{{item.name}}</view> |
| | |
| | | <view class="font-bold max-w1 txt-aligin-r">{{item.partyOrganization}}</view> |
| | | </view> |
| | | <view class="flex wrap mt-19"> |
| | | <image :src="item.avatar" class="w-142 h-142 mr-12 shrink0 br-19 mb-12" /> |
| | | <image @tap="viewImage(item.avatar)" :src="item.avatar" |
| | | class="w-142 h-142 mr-12 shrink0 br-19 mb-12" /> |
| | | </view> |
| | | </view> |
| | | <view class="mt-37 border1"> |
| | |
| | | 申请时间:{{ item.createTime | formatTime }} |
| | | </view> |
| | | <view class="flex a-center j-center fs-23 mt-29 txt-center"> |
| | | <view @click.stop="auditPopup(item.idNumber,2)" |
| | | <view @click.stop="auditPopup(item.id,2)" |
| | | class="h-58 lh-58 bgColor5 w-192 br-29 color10 border2"> |
| | | 拒绝 |
| | | </view> |
| | | <view @click.stop="auditPopup(item.idNumber,1)" class="ml-38 h-58 lh-58 bgColor6 w-192 br-29 color8"> |
| | | <view @click.stop="auditPopup(item.id,1)" class="ml-38 h-58 lh-58 bgColor6 w-192 br-29 color8"> |
| | | 通过 |
| | | </view> |
| | | </view> |
| | |
| | | this.clickAgain = true |
| | | audit(this.form).then(res => { |
| | | uni.showToast({ |
| | | icon: 'none', |
| | | icon: 'success', |
| | | title: this.form.result == 1 ? '当前党员信息审核已通过。' : '当前党员信息审核已拒绝。', |
| | | mask: true, |
| | | }) |
| | | this.searchParams.pageNum = 1 |
| | | this.list = [] |
| | | setTimeout(() => { |
| | | this.searchParams.pageNum = 1 |
| | | this.list = [] |
| | | this.fetchList() |
| | | this.closePopup() |
| | | }, 1500) |
| | |
| | | this.clickAgain = false |
| | | }) |
| | | }, |
| | | viewImage(item) { |
| | | uni.previewImage({ |
| | | urls: [item] |
| | | }) |
| | | }, |
| | | } |
| | | } |
| | | </script> |