优秀党员追加
This commit is contained in:
@@ -1,14 +1,6 @@
|
||||
<template>
|
||||
<ai-detail class="party">
|
||||
<template slot="title">
|
||||
<ai-title
|
||||
:title="isEdit ? '编辑党员' : '添加党员'"
|
||||
isShowBack
|
||||
isShowBottomBorder
|
||||
@onBackClick="cancel(false)"
|
||||
>
|
||||
</ai-title>
|
||||
</template>
|
||||
<ai-title slot="title" :title="isEdit ? '编辑党员' : '添加党员'" isShowBack isShowBottomBorder @onBackClick="cancel"/>
|
||||
<template slot="content">
|
||||
<el-form
|
||||
ref="form"
|
||||
@@ -153,13 +145,13 @@
|
||||
</div>
|
||||
</template>
|
||||
</ai-card>
|
||||
<!-- <ai-card title="审核状态" v-if="isEdit">-->
|
||||
<!-- <template #content>-->
|
||||
<!-- <el-form-item label="审核状态" style="width: 100%">-->
|
||||
<!-- <span :class="'audit-' + form.auditStatus" v-text="dict.getLabel('auditStatus', form.auditStatus)"/>-->
|
||||
<!-- </el-form-item>-->
|
||||
<!-- </template>-->
|
||||
<!-- </ai-card>-->
|
||||
<!-- <ai-card title="审核状态" v-if="isEdit">-->
|
||||
<!-- <template #content>-->
|
||||
<!-- <el-form-item label="审核状态" style="width: 100%">-->
|
||||
<!-- <span :class="'audit-' + form.auditStatus" v-text="dict.getLabel('auditStatus', form.auditStatus)"/>-->
|
||||
<!-- </el-form-item>-->
|
||||
<!-- </template>-->
|
||||
<!-- </ai-card>-->
|
||||
<ai-card title="联络信息">
|
||||
<div class="ai-form" slot="content">
|
||||
<el-form-item label="联系方式" prop="phone">
|
||||
@@ -319,6 +311,9 @@
|
||||
:maxLength="20"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="优秀党员" prop="isOutstandingParty">
|
||||
<ai-select v-model="form.isOutstandingParty" :selectList="dict.getDict('yesOrNo')"/>
|
||||
</el-form-item>
|
||||
</div>
|
||||
</ai-card>
|
||||
<ai-card title="流动信息">
|
||||
@@ -825,6 +820,7 @@ export default {
|
||||
lossTime: "",
|
||||
inTime: "",
|
||||
education: "",
|
||||
isOutstandingParty: "0"
|
||||
},
|
||||
isShowStarForm: false,
|
||||
isShowJobForm: false,
|
||||
|
||||
@@ -86,12 +86,10 @@
|
||||
<el-input
|
||||
v-model="search.con"
|
||||
size="small"
|
||||
v-throttle="() => {search.current = 1, getList()}"
|
||||
placeholder="请输入姓名或身份证"
|
||||
clearable
|
||||
@clear="search.current = 1, search.con = '', getList()"
|
||||
suffix-icon="iconfont iconSearch">
|
||||
</el-input>
|
||||
@change="search.current=1,getList()"
|
||||
suffix-icon="iconfont iconSearch"/>
|
||||
</template>
|
||||
</ai-search-bar>
|
||||
<ai-search-bar>
|
||||
@@ -106,16 +104,16 @@
|
||||
</template>
|
||||
</ai-search-bar>
|
||||
<ai-table
|
||||
:dict="dict"
|
||||
:tableData="tableData"
|
||||
:col-configs="colConfigs"
|
||||
:total="total"
|
||||
v-loading="loading"
|
||||
style="margin-top: 6px;"
|
||||
:current.sync="search.current"
|
||||
:size.sync="search.size"
|
||||
@handleSelectionChange="handleSelectionChange"
|
||||
@getList="getList">
|
||||
:dict="dict"
|
||||
:tableData="tableData"
|
||||
:col-configs="colConfigs"
|
||||
:total="total"
|
||||
v-loading="loading"
|
||||
style="margin-top: 6px;"
|
||||
:current.sync="search.current"
|
||||
:size.sync="search.size"
|
||||
@handleSelectionChange="handleSelectionChange"
|
||||
@getList="getList">
|
||||
<el-table-column slot="options" width="160px" fixed="right" label="操作" align="center">
|
||||
<template slot-scope="{ row }">
|
||||
<div class="table-options">
|
||||
@@ -211,7 +209,7 @@ export default {
|
||||
this.getList(e.id)
|
||||
},
|
||||
|
||||
onSearch (v) {
|
||||
onSearch(v) {
|
||||
this.orgTree.filter(v)
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user