党员管理
This commit is contained in:
@@ -347,6 +347,7 @@
|
|||||||
v-model="form.flowStatus"
|
v-model="form.flowStatus"
|
||||||
placeholder="请选择流动情况"
|
placeholder="请选择流动情况"
|
||||||
:selectList="dict.getDict('flowStatus')"
|
:selectList="dict.getDict('flowStatus')"
|
||||||
|
@change="flowStatusChange"
|
||||||
></ai-select>
|
></ai-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item
|
<el-form-item
|
||||||
@@ -386,7 +387,7 @@
|
|||||||
placeholder="选择日期"
|
placeholder="选择日期"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
format="yyyy-MM-dd"
|
format="yyyy-MM-dd"
|
||||||
:value-format="'yyyy-MM-dd' + ' 00:00:00'"
|
:value-format="'yyyy-MM-dd'"
|
||||||
>
|
>
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -427,7 +428,7 @@
|
|||||||
placeholder="选择日期"
|
placeholder="选择日期"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
format="yyyy-MM-dd"
|
format="yyyy-MM-dd"
|
||||||
:value-format="'yyyy-MM-dd' + ' 00:00:00'"
|
:value-format="'yyyy-MM-dd'"
|
||||||
>
|
>
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -450,7 +451,7 @@
|
|||||||
placeholder="选择日期"
|
placeholder="选择日期"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
format="yyyy-MM-dd"
|
format="yyyy-MM-dd"
|
||||||
:value-format="'yyyy-MM-dd' + ' 00:00:00'"
|
:value-format="'yyyy-MM-dd'"
|
||||||
></el-date-picker>
|
></el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
@@ -895,6 +896,13 @@ export default {
|
|||||||
this.getInfo();
|
this.getInfo();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
flowStatusChange() {
|
||||||
|
this.form.flowOrgId = ''
|
||||||
|
this.form.flowTime = ''
|
||||||
|
this.form.outFlow = ''
|
||||||
|
this.form.inTime = ''
|
||||||
|
this.form.lossTime = ''
|
||||||
|
},
|
||||||
initOrg() {
|
initOrg() {
|
||||||
let {oid: partyOrgId, oname: partyOrgName} = this.$route.query;
|
let {oid: partyOrgId, oname: partyOrgName} = this.$route.query;
|
||||||
this.form.partyOrgId = partyOrgId;
|
this.form.partyOrgId = partyOrgId;
|
||||||
|
|||||||
@@ -95,10 +95,10 @@
|
|||||||
</el-tabs>
|
</el-tabs>
|
||||||
<div class="add-btn">
|
<div class="add-btn">
|
||||||
<span></span>
|
<span></span>
|
||||||
<div @click="addForm(activeName)">
|
<!-- <div @click="addForm(activeName)">
|
||||||
<i class="iconfont iconAdd"></i>
|
<i class="iconfont iconAdd"></i>
|
||||||
<span>添加{{ activeName }}</span>
|
<span>添加{{ activeName }}</span>
|
||||||
</div>
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
<ai-table
|
<ai-table
|
||||||
v-if="activeName === '五星党员'"
|
v-if="activeName === '五星党员'"
|
||||||
@@ -317,6 +317,9 @@ export default {
|
|||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res?.data) {
|
if (res?.data) {
|
||||||
this.info = res.data
|
this.info = res.data
|
||||||
|
if(this.info.birthday) {
|
||||||
|
this.info.birthday = this.info.birthday.substring(0, 10)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user