233 lines
8.6 KiB
Vue
Raw Normal View History

<!-- 常住人口 -->
<template>
<view class="">
2023-07-29 14:07:45 +08:00
<u--form labelPosition="left" :model="residents" :rules="rules" ref="residentsForm">
<block value="人口">
2023-07-28 17:39:29 +08:00
<block value="人员信息" v-for="(item, index) in residents.family" :key="'user'+index">
2023-07-29 14:07:45 +08:00
<u-form-item label="姓名" required prop="family.name" borderBottom>
2023-07-28 18:03:47 +08:00
<u--input v-model="item.name" placeholder="请输入姓名"></u--input>
</u-form-item>
2023-07-28 18:03:47 +08:00
<picker mode="date" value="1990-01-01" @change="changebirth_time" :data-index="index">
2023-07-29 14:07:45 +08:00
<u-form-item labelWidth="auto" label="出生日期" required prop="family.birth_time" borderBottom>
2023-07-28 18:03:47 +08:00
<u--input :value="item.birth_time" placeholder="请选择出生日期" disabled disabledColor="#fff"></u--input>
<u-icon slot="right" name="arrow-right"></u-icon>
</u-form-item>
</picker>
2023-07-28 18:03:47 +08:00
<picker mode="selector" :range="situationList" @change="changesituation" :data-index="index">
2023-07-29 14:07:45 +08:00
<u-form-item labelWidth="auto" label="就业情况" required prop="family.situation" borderBottom>
2023-07-28 18:03:47 +08:00
<u--input :value="item.situation" placeholder="请选择就业情况" disabled disabledColor="#fff"></u--input>
<u-icon slot="right" name="arrow-right"></u-icon>
</u-form-item>
</picker>
2023-07-29 14:07:45 +08:00
<u-form-item labelWidth="auto" label="技能特长" required prop="family" borderBottom>
2023-07-28 18:03:47 +08:00
<u--input v-model="item.skills" placeholder="请输入技能特长"></u--input>
</u-form-item>
2023-07-28 17:39:29 +08:00
<button type="primary" v-if="residents.family.length>1" class="delete"
@click="removeFamily(index)">删除以上信息</button>
</block>
2023-07-28 17:39:29 +08:00
<button type="primary" class="plus" @click="pushFamily">+</button>
</block>
<block value="婴幼儿信息">
2023-07-29 14:07:45 +08:00
<u-form-item labelWidth="auto" label="是否存在学生、婴幼儿" required prop="child" borderBottom>
2023-07-28 17:39:29 +08:00
<u-radio-group v-model="residents.child" style="margin: 16rpx;">
<u-radio :customStyle="{marginRight: '16px'}"
v-for="(item, index) in [{value:1,label:'是'},{value:0,label:'否'}]" :key="index" :label="item.label"
:name="item.value">
</u-radio>
</u-radio-group>
</u-form-item>
2023-07-28 17:39:29 +08:00
<block value="是" v-if="residents.child>0" v-for="(item,index) in residents.child_arr" :key="'child'+index">
2023-07-29 14:07:45 +08:00
<u-form-item label="年龄" required prop="child_arr.age" borderBottom>
<u--input v-model="item.age" placeholder="请输入年龄" type="number"></u--input>
</u-form-item>
<block v-if="item.age<4">
2023-07-29 14:07:45 +08:00
<u-form-item labelWidth="auto" label="喂养方式" borderBottom>
<u-radio-group v-model="item.wyfs" style="margin: 16rpx;">
<u-radio :customStyle="{marginRight: '16px'}"
v-for="(item, index) in [{value:1,label:'母乳'},{value:0,label:'奶粉'}]" :key="index" :label="item.label"
:name="item.value">
</u-radio>
</u-radio-group>
</u-form-item>
</block>
<block v-else>
2023-07-29 14:07:45 +08:00
<u-form-item label="年级" borderBottom>
<u--input v-model="item.grade" placeholder="请输入年级"></u--input>
</u-form-item>
2023-07-29 14:07:45 +08:00
<u-form-item labelWidth="auto" label="是否补课" borderBottom>
2023-07-28 18:03:47 +08:00
<u-radio-group v-model="item.is_lesson" style="margin: 16rpx;">
<u-radio :customStyle="{marginRight: '16px'}"
v-for="(item, index) in [{value:1,label:'是'},{value:0,label:'否'}]" :key="index" :label="item.label"
:name="item.value">
</u-radio>
</u-radio-group>
</u-form-item>
2023-07-29 14:07:45 +08:00
<u-form-item v-if="item.is_lesson>0" label-width="auto" labelPosition="top" label="补课内容" borderBottom>
2023-07-28 18:05:54 +08:00
<u--textarea v-model="item.lessons" autoHeight placeholder="请输入需要的课程" border="surround"
count></u--textarea>
</u-form-item>
</block>
2023-07-29 14:07:45 +08:00
<u-form-item label-width="auto" labelPosition="top" label="备注" borderBottom>
<u--textarea v-model="item.notes" autoHeight placeholder="请输入备注" border="surround" count></u--textarea>
</u-form-item>
2023-07-28 17:39:29 +08:00
<button type="primary" v-if="residents.child_arr.length>1" class="delete"
@click="removeChildArr(index)">删除以上信息</button>
</block>
2023-07-28 18:03:47 +08:00
<button type="primary" v-if="residents.child>0" class="plus" @click="pushChildArr">+</button>
</block>
2023-07-29 14:07:45 +08:00
</u--form>
</view>
</template>
<script>
export default {
data() {
return {
2023-07-29 14:07:45 +08:00
situationList: ['公务员', '国企事业单位', '民营企业', '自由职业', '其他'],
// 常住人口
residents: {
2023-07-28 17:39:29 +08:00
family: [{
2023-07-28 18:03:47 +08:00
name: '',
birth_time: '',
situation: '', // 工作
skills: '', // 技能
}],
2023-07-28 17:39:29 +08:00
child: '', //是否存在婴幼儿
child_arr: [ //婴幼儿列表
{
age: '',
2023-07-28 18:03:47 +08:00
feeding: '', //喂养方式
grade: '', //年级
2023-07-28 18:03:47 +08:00
is_lesson: '', //是否补课
2023-07-28 18:05:54 +08:00
lessons: '', //课程
2023-07-28 18:03:47 +08:00
notes: '' //备注
}
],
},
rules: {
2023-07-29 14:07:45 +08:00
family: {
validator: (rule, value, callback ) => {
if (Array.isArray(value) && value.length > 0) {
for (let i = 0; i < value.length; i++) {
const item = value[i];
for (const key in item) {
// 检查每个属性值是否为空
if (!item[key]) {
callback(new Error('以上四项基本信息必填'));
return;
}
}
}
// 数组每个属性都不为空,校验通过
callback();
} else {
// 数组为空,校验未通过
callback(new Error('数组不能为空'));
}
},
trigger: ['change', 'blur']
},
child: {
validator: (rule, value, callback )=>{
typeof value==='number'?callback():callback('不能为空')
},
trigger: ['change', 'blur']
},
}
}
},
methods: {
2023-07-29 14:07:45 +08:00
validate() {
return new Promise((resolve, reject) => {
this.$refs.residentsForm.validate().then(res => {
if (res) resolve(true);
else reject(false);
})
})
},
// 选择生日
2023-07-29 14:07:45 +08:00
changebirth_time(e) {
let index = e.currentTarget.dataset.index;
2023-07-28 18:03:47 +08:00
this.residents.family[index].birth_time = e.detail.value;
},
// 选择就业
2023-07-29 14:07:45 +08:00
changesituation(e) {
let index = e.currentTarget.dataset.index;
2023-07-28 18:03:47 +08:00
this.residents.family[index].situation = this.situationList[e.detail.value];
},
// 添加人口
2023-07-28 17:39:29 +08:00
pushFamily() {
this.residents.family.push({
2023-07-29 14:07:45 +08:00
name: '',
birth_time: '',
situation: '', // 工作
skills: '', // 技能
})
},
// 删除人口
2023-07-28 17:39:29 +08:00
removeFamily(index) {
uni.showModal({
confirmColor: '#f56c6c',
content: '确定删除吗?',
success: (res) => {
if (res.confirm) {
2023-07-28 17:39:29 +08:00
this.residents.family.splice(index, 1);
}
}
})
},
// 添加婴幼儿
2023-07-28 17:39:29 +08:00
pushChildArr() {
this.residents.child_arr.push({
2023-07-29 14:07:45 +08:00
age: '',
feeding: '', //喂养方式
grade: '', //年级
is_lesson: '', //是否补课
lessons: '', //课程
notes: '' //备注
})
},
// 删除婴幼儿
2023-07-28 17:39:29 +08:00
removeChildArr(index) {
uni.showModal({
confirmColor: '#f56c6c',
content: '确定删除吗?',
success: (res) => {
if (res.confirm) {
2023-07-28 17:39:29 +08:00
this.residents.child_arr.splice(index, 1);
}
}
})
},
2023-07-29 14:07:45 +08:00
},
}
</script>
<style lang="scss">
.delete {
margin: 22rpx 0;
// margin-bottom: 40rpx;
width: 100%;
height: 54rpx;
line-height: 54rpx;
background: #f56c6c;
border-radius: 14rpx;
font-size: 28rpx;
color: #fff;
text-align: center;
}
.plus {
margin: 22rpx 0;
// margin-bottom: 40rpx;
width: 100%;
height: 54rpx;
line-height: 54rpx;
background: $theme-oa-color;
border-radius: 14rpx;
color: #fff;
text-align: center;
}
</style>