214 lines
5.2 KiB
Vue
214 lines
5.2 KiB
Vue
|
<template>
|
|||
|
<view class="team-container">
|
|||
|
<view v-for="item in list" style="padding:0rpx 30rpx;">
|
|||
|
<view style="display: flex;align-items: center;justify-content: space-between;">
|
|||
|
<view>
|
|||
|
<view style="font-size: 28rpx;color: #323232;">{{ item.name }}</view>
|
|||
|
<view style="color: #9C9C9C;font-size: 24rpx;margin-top: 10rpx;">
|
|||
|
<text>身份证</text>
|
|||
|
<text style="margin-left: 10rpx;">{{ item.idnum }}</text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="font-size: 28rpx;">
|
|||
|
<text style="color: #FF4810;" @click="edit(item)">编辑</text>
|
|||
|
<text style="color: #323232;margin-left: 30rpx;" @click="del(item)">删除</text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="height: 1px;background-color: #F0F0F0;width: 100%;margin: 30rpx 0px;"></view>
|
|||
|
</view>
|
|||
|
<view style="padding: 30rpx;">
|
|||
|
<view class="btn_1" @click="show = true">
|
|||
|
<view>
|
|||
|
<u-icon name="plus" color="#BBFC5B" size="15"></u-icon>
|
|||
|
</view>
|
|||
|
<view style="margin-left: 10rpx;">添加报名人</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<u-popup :show="show" :round="20" :closeable="true" mode="bottom" @close="close">
|
|||
|
<view
|
|||
|
style="padding: 26rpx;font-size: 36rpx;font-weight: 400;color: #3D3D3D;text-align: center;font-weight: 600;">
|
|||
|
新增报名人身份信息
|
|||
|
</view>
|
|||
|
<view style="padding: 0rpx 30rpx;">
|
|||
|
<view style="display: flex;align-items: center;justify-content: space-between;padding: 30rpx 0rpx;">
|
|||
|
<view style="font-size: 30rpx;">
|
|||
|
姓名
|
|||
|
</view>
|
|||
|
<view style="width: 75%;">
|
|||
|
<input type="number" placeholder="请填写真实姓名" class="input" v-model="form.name" />
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="height: 1px;background-color: #F0F0F0;width: 100%;margin-top: 20rpx;"></view>
|
|||
|
<view style="display: flex;align-items: center;justify-content: space-between;padding: 30rpx 0rpx;">
|
|||
|
<view style="font-size: 30rpx;">
|
|||
|
身份证号
|
|||
|
</view>
|
|||
|
<view style="width: 75%;">
|
|||
|
<input type="number" placeholder="请填写身份证号" class="input" v-model="form.idnum" />
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="height: 1px;background-color: #F0F0F0;width: 100%;"></view>
|
|||
|
<view style="font-size: 24rpx;color: #9C9C9C;margin-top: 40rpx;">
|
|||
|
<text>你的个人信息我们将严格保密并仅用于投保使用,详情可查看</text>
|
|||
|
<text style="color: #0CA013;" @click="go('/packageB/privacy?type=privacy')">《隐私政策》</text>
|
|||
|
<text>和</text>
|
|||
|
<text style="color: #0CA013;" @click="go('/packageB/privacy?type=user_protocol')">《用户协议》</text>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="margin-top: 40rpx;">
|
|||
|
<view class="btn_1" @click="save">确认</view>
|
|||
|
</view>
|
|||
|
</u-popup>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
show: false,
|
|||
|
form: {
|
|||
|
name: '',
|
|||
|
idnum: ''
|
|||
|
},
|
|||
|
list: []
|
|||
|
}
|
|||
|
},
|
|||
|
onLoad() {
|
|||
|
this.getList()
|
|||
|
},
|
|||
|
methods: {
|
|||
|
edit(item){
|
|||
|
this.form.name=item.name;
|
|||
|
this.form.idnum=item.idnum;
|
|||
|
this.show=true;
|
|||
|
},
|
|||
|
del(item){
|
|||
|
var that=this;
|
|||
|
//确定要删除吗?
|
|||
|
uni.showModal({
|
|||
|
title: '提示',
|
|||
|
content: '确定要删除吗?',
|
|||
|
success: (res) => {
|
|||
|
if (res.confirm) {
|
|||
|
that.delData(item);
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
})
|
|||
|
},
|
|||
|
delData(item){
|
|||
|
uni.$u.http.post('/api/school.newactivity.activity_join/del',{ids:item.id}).then(res=>{
|
|||
|
console.log(res)
|
|||
|
if(res.code==1){
|
|||
|
uni.showToast({
|
|||
|
title: res.msg,
|
|||
|
icon: 'success',
|
|||
|
duration: 2000
|
|||
|
});
|
|||
|
this.getList();
|
|||
|
}else{
|
|||
|
uni.showToast({
|
|||
|
title: res.msg,
|
|||
|
icon: 'none',
|
|||
|
duration: 2000
|
|||
|
});
|
|||
|
}
|
|||
|
})
|
|||
|
},
|
|||
|
getList() {
|
|||
|
uni.$u.http.get('/api/school.newactivity.activity_join/people_list').then(res => {
|
|||
|
console.log(res)
|
|||
|
if (res.code == 1) {
|
|||
|
this.list = res.data.list
|
|||
|
} else {
|
|||
|
this.list = [];
|
|||
|
uni.showToast({
|
|||
|
title: res.msg,
|
|||
|
icon: 'none',
|
|||
|
duration: 2000
|
|||
|
});
|
|||
|
}
|
|||
|
})
|
|||
|
},
|
|||
|
save() {
|
|||
|
if (this.form.name == '') {
|
|||
|
uni.showToast({
|
|||
|
title: '请填写真实姓名',
|
|||
|
icon: 'none',
|
|||
|
duration: 2000
|
|||
|
});
|
|||
|
return;
|
|||
|
}
|
|||
|
if (this.form.idnum == '') {
|
|||
|
uni.showToast({
|
|||
|
title: '请填写身份证号',
|
|||
|
icon: 'none',
|
|||
|
duration: 2000
|
|||
|
});
|
|||
|
return;
|
|||
|
}
|
|||
|
uni.$u.http.post('/api/school.newactivity.activity_join/add', this.form).then(res => {
|
|||
|
console.log(res)
|
|||
|
if (res.code == 1) {
|
|||
|
uni.showToast({
|
|||
|
title: res.msg,
|
|||
|
icon: 'success',
|
|||
|
duration: 2000
|
|||
|
});
|
|||
|
this.getList()
|
|||
|
this.show = false;
|
|||
|
this.form = {
|
|||
|
name: '',
|
|||
|
idnum: ''
|
|||
|
}
|
|||
|
} else {
|
|||
|
uni.showToast({
|
|||
|
title: res.msg,
|
|||
|
icon: 'none',
|
|||
|
duration: 2000
|
|||
|
});
|
|||
|
}
|
|||
|
})
|
|||
|
},
|
|||
|
close() {
|
|||
|
this.show = false
|
|||
|
},
|
|||
|
go(url){
|
|||
|
uni.navigateTo({
|
|||
|
url: url
|
|||
|
})
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style scoped lang="scss">
|
|||
|
.team-container {
|
|||
|
font-family: PingFang SC, PingFang SC;
|
|||
|
padding-top: 20rpx;
|
|||
|
}
|
|||
|
|
|||
|
.btn_1 {
|
|||
|
width: 95%;
|
|||
|
height: 90rpx;
|
|||
|
background: #323232;
|
|||
|
border-radius: 198rpx 198rpx 198rpx 198rpx;
|
|||
|
font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
|
|||
|
font-weight: 400;
|
|||
|
font-size: 32rpx;
|
|||
|
color: #BBFC5B;
|
|||
|
line-height: 90rpx;
|
|||
|
text-align: center;
|
|||
|
margin: 0 auto;
|
|||
|
margin-top: 30rpx;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: center;
|
|||
|
}
|
|||
|
|
|||
|
.input {
|
|||
|
text-align: right;
|
|||
|
}
|
|||
|
</style>
|