2022-01-25 16:31:39 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="add">
|
2022-01-26 16:47:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="btn" @click="submit">保存</div>
|
2022-01-25 16:31:39 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-01-26 16:47:49 +08:00
|
|
|
import {mapState} from 'vuex'
|
|
|
|
|
|
2022-01-25 16:31:39 +08:00
|
|
|
export default {
|
2022-01-26 16:47:49 +08:00
|
|
|
name: 'Add',
|
2022-01-25 16:31:39 +08:00
|
|
|
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2022-01-26 16:47:49 +08:00
|
|
|
value: '',
|
|
|
|
|
forms: {
|
|
|
|
|
type: '',
|
|
|
|
|
areaId: '',
|
|
|
|
|
selectIndex: '',
|
|
|
|
|
files: []
|
|
|
|
|
},
|
|
|
|
|
selectType: false,
|
|
|
|
|
marriageType: false,
|
|
|
|
|
healthType: false,
|
|
|
|
|
disableRank: false,
|
2022-01-25 16:31:39 +08:00
|
|
|
selectShow: false,
|
2022-01-26 16:47:49 +08:00
|
|
|
list: [],
|
|
|
|
|
marriageList: [],
|
|
|
|
|
healthList: [],
|
|
|
|
|
disableList: [],
|
|
|
|
|
rankList: [
|
|
|
|
|
{
|
|
|
|
|
text: '一级',
|
|
|
|
|
value: 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: '二级',
|
|
|
|
|
value: 1
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: '三级',
|
|
|
|
|
value: 2
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: '综合',
|
|
|
|
|
value: 2
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
|
2022-01-25 16:31:39 +08:00
|
|
|
}
|
|
|
|
|
},
|
2022-01-26 16:47:49 +08:00
|
|
|
onLoad() {},
|
|
|
|
|
|
2022-01-25 16:31:39 +08:00
|
|
|
onShow() {
|
|
|
|
|
document.title = '新增人员'
|
|
|
|
|
},
|
2022-01-26 16:47:49 +08:00
|
|
|
methods: {}
|
2022-01-25 16:31:39 +08:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.add {
|
2022-01-26 16:47:49 +08:00
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
.btn {
|
2022-01-25 16:31:39 +08:00
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 112px;
|
|
|
|
|
line-height: 112px;
|
2022-01-26 16:47:49 +08:00
|
|
|
background: #1365dd;
|
2022-01-25 16:31:39 +08:00
|
|
|
text-align: center;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
font-weight: 500;
|
2022-01-26 16:47:49 +08:00
|
|
|
color: #ffffff;
|
|
|
|
|
z-index: 9999;
|
2022-01-25 16:31:39 +08:00
|
|
|
}
|
|
|
|
|
}
|
2022-01-26 16:47:49 +08:00
|
|
|
</style>
|