当前届次

This commit is contained in:
shijingjing
2022-10-14 11:36:06 +08:00
parent 54f1356756
commit edc371ed30
4 changed files with 174 additions and 10 deletions

View File

@@ -1,7 +1,11 @@
<template>
<ai-list class="List">
<template slot="title">
<ai-title title="组织换届" isShowBottomBorder/>
<template slot="title" class="title">
<ai-title title="组织换届" isShowBottomBorder>
<template slot="rightBtn">
<el-button size="small" type="primary" icon="iconfont iconAdd" @click="toAdd('')" >换届设置</el-button>
</template>
</ai-title>
</template>
<template #left>
<ai-tree-menu title="组织目录" searchPlaceholder="请输入组织名称" @search="onSearch">
@@ -29,6 +33,7 @@
import {mapState} from 'vuex'
import moment from './moment.vue'
import history from './history.vue'
import Template from '../../../../../packages/work/AppAskForm/components/Template.vue'
export default {
@@ -73,10 +78,12 @@ export default {
},
components: {
moment,
history
history,
Template
},
computed: {
...mapState(['user']),
orgTree() {
return this.$refs.tree?.$refs?.partyTree
},
@@ -94,6 +101,7 @@ export default {
created() {
// this.dict.load('disciplinary', 'partyType', 'sex', 'nation', 'education', 'partyStatus', 'partyPosition', 'flowStatus', 'auditStatus')
// this.getList()
console.log(this.user);
},
methods: {
showNeighbourSetting(id) {
@@ -160,10 +168,24 @@ export default {
<style lang="scss" scoped>
.List {
position: relative;
.party-table__btns {
display: flex;
align-items: center;
}
.set_btn {
position: absolute;
right: 20px;
top: 8px;
}
// .add_btn {
// position: absolute;
// right: 38px;
// top: 78px;
// }
::v-deep .audit-0 {
color: #FF8822 !important;

View File

@@ -0,0 +1,20 @@
<template>
<section class="addChange">
新增
</section>
</template>
<script>
export default {
name: "addChange",
props: {
instance: Function,
permissions: Function,
dict: Object,
},
}
</script>
<style lang="scss" scope>
.addChange {}
</style>

View File

@@ -1,13 +1,22 @@
<template>
<div>历史届次</div>
<section class="history">
历史届次hhh
</section>
</template>
<script>
export default {
name: "history",
props: {
instance: Function,
permissions: Function,
dict: Object,
},
}
</script>
<style>
<style lang="scss" scope>
.history {
}
</style>

View File

@@ -1,13 +1,126 @@
<template>
<div>当前届次</div>
<section class="moment">
<ai-detail>
<template slot="content">
<ai-bar title="总体概况">
<template slot="right">
<el-button size="small" type="text" icon="iconfont iconEdit" @click="toEdit('')" >修改</el-button>
</template>
</ai-bar>
<ai-wrapper>
<ai-info-item label="本届换届时间" :value="111" />
<ai-info-item label="换届类型" :value="111" />
<ai-info-item label="下届换届时间" :value="111" />
<ai-info-item label="当前届次" :value="111" />
</ai-wrapper>
<ai-bar title="本届任职">
<template slot="right">
<el-button size="small" type="text" icon="iconfont iconAdd" @click="toAdd('')" >添加任职人员</el-button>
</template>
</ai-bar>
<ai-table
class="detail-table__table"
:tableData="tableData"
:col-configs="colConfigs"
:total="totalJob"
:current.sync="current"
:size.sync="size"
@getList="getJobList">
<el-table-column slot="options" label="操作" align="center">
<template slot-scope="{ row }">
<el-button type="text" @click="jobEdit(row.id)">编辑</el-button>
<el-button type="text" @click="jobDelete(row.id)">删除</el-button>
</template>
</el-table-column>
</ai-table>
<ai-bar title="本届候选人">
<template slot="right">
<el-button size="small" type="text" icon="iconfont iconAdd" @click="toAdd('')" >添加候选人</el-button>
</template>
</ai-bar>
<ai-table
class="detail-table__table"
:tableData="tableData"
:col-configs="colConfigs"
:total="totalJob"
:current.sync="current"
:size.sync="size"
@getList="getJobList">
<el-table-column slot="options" label="操作" align="center">
<template slot-scope="{ row }">
<el-button type="text" @click="jobEdit(row.id)">编辑</el-button>
<el-button type="text" @click="jobDelete(row.id)">删除</el-button>
</template>
</el-table-column>
</ai-table>
</template>
</ai-detail>
</section>
</template>
<script>
export default {
name: "moment",
props: {
instance: Function,
permissions: Function,
dict: Object,
selected: Object
},
data() {
return {
isEdit: false,
tableData: [],
totalJob: 0,
current: 1,
size: 10,
}
},
computed: {
colConfigs() {
return [
{prop: 'content', label: '职位'},
{prop: 'content', label: '姓名'},
{slot: 'options'},
]
}
},
methods: {
jobEdit() {},
jobDelete() {},
getJobList() {},
toEdit() {
this.$emit('change', {
type: 'addChange',
params: {
id: id || ''
}
})
},
}
}
</script>
<style>
<style lang="scss" scope>
.moment {
::v-deep .ai-detail .ai-detail__content .ai-detail__content--wrapper {
padding-top: 0;
background-color: blue;
// ::v-deep .aibar {
// height: 40px;
// }
}
ai-detail {
::v-deep .ai-detail__content {
background-color: #FFF;
}
}
}
</style>