发展党员

This commit is contained in:
liuye
2022-10-13 17:58:16 +08:00
parent a2207a781f
commit f9f2812344
4 changed files with 75 additions and 324 deletions

View File

@@ -361,80 +361,6 @@
</template>
</el-table-column>
</ai-table>
<ai-table
v-if="activeName === '工作信息'"
:border="true"
:tableData="form.workInfoList"
:isShowPagination="false"
:col-configs="colConfigs2"
:stripe="false"
@getList="() => {}"
>
<el-table-column label="工作时间" slot="date" align="center">
<template slot-scope="{ row }">
<span v-if="row.starTime && row.endTime"
>{{ row.starTime.split(" ")[0] }}
{{ row.endTime.split(" ")[0] }}</span
>
</template>
</el-table-column>
<el-table-column
slot="options"
width="120px"
fixed="right"
label="操作"
align="center"
>
<template slot-scope="{ row, $index }">
<div class="table-options">
<el-button type="text" @click="editJob(row, $index)"
>编辑
</el-button
>
<el-button
type="text"
@click="remove($index, 'workInfoList')"
>删除
</el-button
>
</div>
</template>
</el-table-column>
</ai-table>
<ai-table
v-if="activeName === '违纪信息'"
:border="true"
:tableData="form.disciplinaryInfoList"
:isShowPagination="false"
:col-configs="colConfigs3"
:stripe="false"
@getList="() => {}"
>
<el-table-column
slot="options"
width="120px"
fixed="right"
label="操作"
align="center"
>
<template slot-scope="{ row, $index }">
<div class="table-options">
<el-button
type="text"
@click="editDisciplinary(row, $index)"
>编辑
</el-button
>
<el-button
type="text"
@click="remove($index, 'disciplinaryInfoList')"
>删除
</el-button
>
</div>
</template>
</el-table-column>
</ai-table>
</template>
</ai-card>
<ai-card title="发展对象的确定和考察">
@@ -562,13 +488,6 @@
</el-form-item>
</template>
</ai-card>
</el-form>
<ai-dialog
:visible.sync="isShowStarForm"
@@ -836,13 +755,13 @@ export default {
colConfigs1: [
{
prop: "starTime",
label: "职位",
label: "姓名",
align: "center",
formart: (v) => (v ? v.split(" ")[0] : "-"),
},
{
prop: "starTime",
label: "姓名",
label: "职位",
align: "center",
formart: (v) => (v ? v.split(" ")[0] : "-"),
},