Files
dvcp_v2_webapp/packages/2.0.5/AppGridMember/components/list.vue

199 lines
4.8 KiB
Vue
Raw Normal View History

2021-12-14 18:36:19 +08:00
<template>
<ai-list class="list">
<template slot="title">
<ai-title title="网格员管理" :isShowBottomBorder="true"></ai-title>
</template>
<template slot="content">
2022-01-13 10:11:04 +08:00
<ai-search-bar bottomBorder>
2021-12-14 18:36:19 +08:00
<template slot="left">
<el-date-picker
v-model="searchObj.selectionDate"
type="date"
@change="(page.current = 1), getList()"
value-format="yyyy-MM-dd"
size="small"
2022-01-13 10:11:04 +08:00
placeholder="选用时间">
2021-12-14 18:36:19 +08:00
</el-date-picker>
</template>
<template slot="right">
<el-input
v-model="searchObj.name"
size="small"
2022-01-21 11:31:00 +08:00
placeholder="网格员/责任网格"
2021-12-14 18:36:19 +08:00
@keyup.enter.native="(page.current = 1), getList()"
clearable
2022-01-18 15:26:24 +08:00
@clear="(searchObj.name = '', page.current = 1), getList()"
2022-01-18 15:28:20 +08:00
suffix-icon="iconfont iconSearch" />
2021-12-14 18:36:19 +08:00
</template>
</ai-search-bar>
2022-01-13 10:11:04 +08:00
<ai-search-bar style="padding: 16px 0 0">
2021-12-14 18:36:19 +08:00
<template slot="left">
<el-button
icon="iconfont iconAdd"
type="primary"
size="small"
@click="add('')"
>添加</el-button
>
<el-button
icon="iconfont iconDelete"
@click="deleteById(ids.join(','))"
:disabled="!Boolean(ids.length)"
>删除</el-button
>
</template>
</ai-search-bar>
<ai-table
:tableData="tableData"
:col-configs="colConfigs"
:total="page.total"
ref="aitableex"
:current.sync="page.current"
:size.sync="page.size"
@selection-change="(v) => (ids = v.map((e) => e.id))"
2022-01-13 10:11:04 +08:00
@getList="getList()">
2022-01-13 10:22:12 +08:00
<el-table-column label="操作" slot="options" align="center" fixed="right" width="170">
2022-01-13 10:11:04 +08:00
<template slot-scope="{ row }">
<div class="table-options">
2022-01-13 14:56:41 +08:00
<el-button type="text" @click="toFamily(row.id)">责任家庭</el-button>
2022-01-13 10:11:04 +08:00
<el-button type="text" @click="add(row.id)">查看</el-button>
<el-button type="text" @click="deleteById(row.id)">删除</el-button>
</div>
2021-12-14 18:36:19 +08:00
</template>
</el-table-column>
</ai-table>
</template>
</ai-list>
</template>
<script>
export default {
name: "list",
label: "网格员管理",
props: {
instance: Function,
dict: Object,
permissions: Function,
},
data() {
return {
searchObj: {
name: "",
selectionDate: "",
},
page: {
current: 1,
size: 10,
total: 0,
},
goAdd: false,
tableData: [],
fileList: [],
ids: [],
detail: {},
};
},
created() {
this.dict.load("sex", "girdMemberType", "politicsStatus", "education");
this.getList();
},
computed: {
colConfigs() {
let _ = this;
return [
{
type: "selection",
},
{
prop: "name",
label: "网格员姓名",
},
{
prop: "girdInfoListStr",
2022-01-13 17:50:29 +08:00
align: "center",
2021-12-14 18:36:19 +08:00
label: "责任网格",
},
{
prop: "phone",
2022-01-13 17:50:29 +08:00
align: "center",
2021-12-14 18:36:19 +08:00
label: "联系电话",
},
{
prop: "selectionDate",
align: "center",
label: "选用时间",
},
];
},
},
methods: {
getList() {
this.instance
.post("/app/appgirdmemberinfo/list", null, {
params: {
...this.searchObj,
...this.page,
},
})
.then((res) => {
if (res.code == 0) {
this.tableData = res.data.records;
this.page.total = res.data.total;
}
});
},
deleteById(ids) {
ids &&
this.$confirm("是否要删除该网格员?", {
type: "error",
})
.then(() => {
this.instance
.post("/app/appgirdmemberinfo/delete", null, {
params: { ids },
})
.then((res) => {
if (res?.code == 0) {
this.$message.success("删除成功!");
this.getList();
}
});
})
.catch(() => {});
},
add(id) {
this.$emit('change', {
type: 'Add',
params: {
id: id || ''
}
})
},
2022-01-13 14:56:41 +08:00
toFamily (id) {
this.$emit('change', {
type: 'Family',
params: {
id
}
})
},
2021-12-14 18:36:19 +08:00
handleSelectionChange(val) {
this.ids = [];
val.map((e) => {
this.ids.push(e.id);
});
},
resetSearch() {
Object.keys(this.searchObj).map((e) => {
this.searchObj[e] = "";
});
this.getList();
},
},
};
</script>
<style lang="scss" scoped>
</style>