You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
552 lines
14 KiB
552 lines
14 KiB
4 years ago
|
<template>
|
||
|
<div>
|
||
|
<div class="resi-container">
|
||
|
<el-card class="resi-card">
|
||
|
<el-row class="resi-row-box" :class="openSearch && 'resi-row-more'">
|
||
|
<el-row class="resi-row" :gutter="20">
|
||
|
<el-col :span="8">
|
||
|
<div class="resi-cell">
|
||
|
<div class="resi-cell-label">组织名称</div>
|
||
|
<div class="resi-cell-value" :class="'resi-cell-value-radio'">
|
||
|
<el-input
|
||
|
v-model="fmData.societyName"
|
||
|
class="resi-cell-input"
|
||
|
size="small"
|
||
|
clearable
|
||
|
placeholder="请输入"
|
||
|
>
|
||
|
</el-input>
|
||
|
</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
|
||
|
<el-col :span="8">
|
||
|
<div class="resi-cell">
|
||
|
<div class="resi-cell-label">负责人</div>
|
||
|
<div class="resi-cell-value" :class="'resi-cell-value-radio'">
|
||
|
<el-input
|
||
|
v-model="fmData.personInCharge"
|
||
|
class="resi-cell-input"
|
||
|
size="small"
|
||
|
clearable
|
||
|
placeholder="请输入"
|
||
|
>
|
||
|
</el-input>
|
||
|
</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
|
||
|
<el-col :span="8">
|
||
|
<div class="resi-cell">
|
||
|
<div class="resi-cell-label">联系电话</div>
|
||
|
<div class="resi-cell-value" :class="'resi-cell-value-radio'">
|
||
|
<el-input
|
||
|
v-model="fmData.mobile"
|
||
|
class="resi-cell-input"
|
||
|
size="small"
|
||
|
clearable
|
||
|
placeholder="请输入"
|
||
|
>
|
||
|
</el-input>
|
||
|
</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
<el-row>
|
||
|
<el-col :span="12">
|
||
|
<div class="resi-cell">
|
||
|
<div class="resi-cell-label">服务时间</div>
|
||
|
<div class="resi-cell-value" :class="'resi-cell-value-radio'">
|
||
|
<el-date-picker
|
||
|
v-model="fmData.serviceTime"
|
||
|
type="daterange"
|
||
|
range-separator="至"
|
||
|
start-placeholder="开始日期"
|
||
|
end-placeholder="结束日期"
|
||
|
value-format="yyyy-MM-dd"
|
||
|
>
|
||
|
</el-date-picker>
|
||
|
</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
</el-row>
|
||
|
<el-row class="resi-search">
|
||
|
<el-col :span="24">
|
||
|
<el-button type="primary" size="small" @click="handleSearch"
|
||
|
>查询</el-button
|
||
|
>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
</el-card>
|
||
|
</div>
|
||
|
|
||
|
<el-card class="resi-card-table">
|
||
|
<div class="resi-row-btn">
|
||
|
<el-button type="success" size="small" @click="handleAdd"
|
||
|
>新增</el-button
|
||
|
>
|
||
|
<el-button @click="handleRu" type="warning" size="small"
|
||
|
>excel导入</el-button
|
||
|
>
|
||
|
<el-button @click="handleChu" type="danger" size="small"
|
||
|
>excel导出</el-button
|
||
|
>
|
||
|
</div>
|
||
|
<el-table
|
||
|
:data="tableData"
|
||
|
border
|
||
|
style="width: 100%"
|
||
|
class="resi-table"
|
||
|
:max-height="maxTableHeight"
|
||
|
>
|
||
|
<el-table-column label="序号" type="index" align="center" width="50" />
|
||
|
<el-table-column prop="societyName" label="社会组织名称">
|
||
|
</el-table-column>
|
||
|
<el-table-column prop="serviceMatters" label="服务事项">
|
||
|
</el-table-column>
|
||
|
<el-table-column prop="personInCharge" label="负责人">
|
||
|
</el-table-column>
|
||
|
<el-table-column prop="mobile" label="负责人电话"> </el-table-column>
|
||
|
<el-table-column prop="serviceTime" label="服务时间"> </el-table-column>
|
||
|
<el-table-column fixed="right" label="操作" align="center" width="120">
|
||
|
<template slot-scope="scope">
|
||
|
<el-button
|
||
|
@click="handleWatch(scope.row, scope.$index)"
|
||
|
type="text"
|
||
|
size="small"
|
||
|
>查看</el-button
|
||
|
>
|
||
|
|
||
|
<el-button
|
||
|
@click="handleEdit(scope.row)"
|
||
|
type="text"
|
||
|
size="small"
|
||
|
style="margin-right: 10px; color: #00a7a9"
|
||
|
>编辑</el-button
|
||
|
>
|
||
|
|
||
|
<el-popconfirm
|
||
|
title="删除之后无法回复,确认删除?"
|
||
|
@onConfirm="handleDel(scope.row, scope.$index)"
|
||
|
@confirm="handleDel(scope.row, scope.$index)"
|
||
|
>
|
||
|
<el-button
|
||
|
slot="reference"
|
||
|
type="text"
|
||
|
size="small"
|
||
|
style="color: #d51010"
|
||
|
>删除</el-button
|
||
|
>
|
||
|
</el-popconfirm>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
</el-table>
|
||
|
<div>
|
||
|
<el-pagination
|
||
|
@size-change="handleSizeChange"
|
||
|
@current-change="handleCurrentChange"
|
||
|
:current-page.sync="pageNo"
|
||
|
:page-sizes="[20, 50, 100, 200]"
|
||
|
:page-size="parseInt(pageSize)"
|
||
|
layout="sizes, prev, pager, next"
|
||
|
:total="total"
|
||
|
>
|
||
|
</el-pagination>
|
||
|
</div>
|
||
|
</el-card>
|
||
|
|
||
|
<!-- 修改弹出框 -->
|
||
|
<el-dialog
|
||
|
:visible.sync="formShow"
|
||
|
:close-on-click-modal="false"
|
||
|
:close-on-press-escape="false"
|
||
|
:title="formTitle"
|
||
|
width="850px"
|
||
|
top="5vh"
|
||
|
@closed="handleClose"
|
||
|
>
|
||
|
<edit-form
|
||
|
ref="ref_form"
|
||
|
@dialogCancle="handleClose"
|
||
|
@dialogOk="handleEditSuccess"
|
||
|
></edit-form>
|
||
|
</el-dialog>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { requestPost } from "@/js/dai/request";
|
||
|
import nextTick from "dai-js/tools/nextTick";
|
||
|
import { mapGetters } from "vuex";
|
||
|
import editForm from "./cpts/edit";
|
||
|
|
||
|
export default {
|
||
|
components: { editForm },
|
||
|
data() {
|
||
|
return {
|
||
|
openSearch: false,
|
||
|
|
||
|
formShow: false,
|
||
|
formTitle: "",
|
||
|
formShow: false,
|
||
|
|
||
|
pageNo: 1,
|
||
|
pageSize: window.localStorage.getItem("pageSize") || 20,
|
||
|
total: 1,
|
||
|
|
||
|
tableData: [
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
{
|
||
|
societyName: "亿联科技",
|
||
|
personInCharge: "嘻嘻",
|
||
|
serviceMatters: "1111111111111",
|
||
|
mobile: "13512345678",
|
||
|
serviceTime: "2001-1-1至2022-2-2",
|
||
|
},
|
||
|
],
|
||
|
|
||
|
fmData: {
|
||
|
societyName: "",
|
||
|
personInCharge: "",
|
||
|
mobile: "",
|
||
|
serviceStartTime: "",
|
||
|
serviceEndTime: "",
|
||
|
serviceTime: "",
|
||
|
},
|
||
|
};
|
||
|
},
|
||
|
computed: {
|
||
|
maxTableHeight() {
|
||
|
return this.clientHeight - 450;
|
||
|
},
|
||
|
...mapGetters(["clientHeight"]),
|
||
|
},
|
||
|
watch: {
|
||
|
"fmData.serviceTime": function (val) {
|
||
|
if (Array.isArray(val) && val.length == 2) {
|
||
|
this.fmData.serviceStartTime = val[0];
|
||
|
this.fmData.serviceEndTime = val[1];
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
mounted() {
|
||
|
this.getTableData();
|
||
|
},
|
||
|
methods: {
|
||
|
handleSizeChange(val) {
|
||
|
console.log(`每页 ${val} 条`);
|
||
|
this.pageSize = val;
|
||
|
window.localStorage.setItem("pageSize", val);
|
||
|
this.getTableData();
|
||
|
},
|
||
|
handleCurrentChange(val) {
|
||
|
console.log(`当前页: ${val}`);
|
||
|
this.pageNo = val;
|
||
|
this.getTableData();
|
||
|
},
|
||
|
|
||
|
handleClose() {
|
||
|
this.formShow = false;
|
||
|
},
|
||
|
handleSearch(val) {
|
||
|
console.log(this.fmData);
|
||
|
this.pageNo = 1;
|
||
|
this.getTableData();
|
||
|
},
|
||
|
|
||
|
handleAdd() {
|
||
|
this.formShow = true;
|
||
|
},
|
||
|
handleRu() {},
|
||
|
handleChu() {},
|
||
|
handleWatch(rowData, rowIndex) {
|
||
|
console.log(rowData, rowIndex);
|
||
|
this.formShow = true;
|
||
|
},
|
||
|
handleEdit(rowData, rowIndex) {
|
||
|
this.formShow = true;
|
||
|
},
|
||
|
handleEditSuccess() {
|
||
|
this.handleClose();
|
||
|
this.getTableData();
|
||
|
},
|
||
|
|
||
|
async handleDel(rowData, rowIndex) {
|
||
|
console.log(rowData, rowIndex);
|
||
|
const url = "/heart/societyorg/del";
|
||
|
const { tableData } = this;
|
||
|
|
||
|
const { data, code, msg } = await requestPost(url, {
|
||
|
societyId: tableData[rowIndex].societyId,
|
||
|
});
|
||
|
|
||
|
if (code === 0) {
|
||
|
this.$message.success("删除成功!");
|
||
|
this.getTableData();
|
||
|
} else {
|
||
|
this.$message.success("操作失败!");
|
||
|
}
|
||
|
},
|
||
|
|
||
|
async getTableData() {
|
||
|
const url = "/heart/societyorg/getlist";
|
||
|
const { pageSize, pageNo, fmData } = this;
|
||
|
const { data, code, msg } = await requestPost(url, {
|
||
|
pageSize,
|
||
|
pageNo,
|
||
|
...fmData,
|
||
|
});
|
||
|
if (code === 0) {
|
||
|
console.log("列表请求成功!!!!!!!!!!!!!!");
|
||
|
this.total = data.total;
|
||
|
this.tableData = data.list.map((item) => {
|
||
|
item.serviceTime = item.serviceStartTime + "至" + item.serviceEndTime;
|
||
|
return item;
|
||
|
});
|
||
|
} else {
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.tabs-other-info {
|
||
|
.el-tabs__item {
|
||
|
// width: 50px;
|
||
|
height: 20px;
|
||
|
box-sizing: border-box;
|
||
|
margin-right: 7px;
|
||
|
padding: 0 10px !important;
|
||
|
font-size: 8px;
|
||
|
font-weight: 500;
|
||
|
color: #666666;
|
||
|
line-height: 20px;
|
||
|
background: #ebecf1;
|
||
|
border-radius: 2px;
|
||
|
}
|
||
|
.el-tabs__nav-wrap::after,
|
||
|
.el-tabs__active-bar {
|
||
|
display: none;
|
||
|
}
|
||
|
.el-tabs__nav-next,
|
||
|
.el-tabs__nav-prev {
|
||
|
line-height: 20px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.resi-card-table {
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
.resi-row-btn {
|
||
|
margin-bottom: 13px;
|
||
|
}
|
||
|
.resi-other {
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
.resi-other-title {
|
||
|
width: 100px;
|
||
|
box-sizing: border-box;
|
||
|
margin-bottom: 10px;
|
||
|
// padding: 6px 12px 0 0;
|
||
|
font-size: 16px;
|
||
|
font-weight: 500;
|
||
|
color: #333;
|
||
|
text-align: center;
|
||
|
}
|
||
|
.tabs-other-info {
|
||
|
// padding-left: 60px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.resi-btns {
|
||
|
margin-top: 20px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.resi-container .resi-card {
|
||
|
position: relative;
|
||
|
overflow: visible;
|
||
|
}
|
||
|
.resi-down {
|
||
|
position: absolute;
|
||
|
left: 50%;
|
||
|
bottom: -10px;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
width: 46px;
|
||
|
height: 12px;
|
||
|
box-sizing: border-box;
|
||
|
margin-left: -23rpx;
|
||
|
cursor: pointer;
|
||
|
background: #ffffff;
|
||
|
border-radius: 0 0 10px 10px;
|
||
|
img {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
.resi-row-box {
|
||
|
height: 104px;
|
||
|
overflow: hidden;
|
||
|
transition: height 0.5s;
|
||
|
}
|
||
|
.resi-row-more {
|
||
|
height: max-content;
|
||
|
transition: height 0.5s;
|
||
|
}
|
||
|
.resi-row {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
.resi-search {
|
||
|
.el-col {
|
||
|
text-align: right;
|
||
|
}
|
||
|
}
|
||
|
.resi-cell {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
.resi-cell-label {
|
||
|
width: 70px;
|
||
|
box-sizing: border-box;
|
||
|
margin-right: 15px;
|
||
|
text-align: right;
|
||
|
// line-height: 32;
|
||
|
}
|
||
|
.resi-cell-value-radio {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
min-height: 32px;
|
||
|
}
|
||
|
.resi-cell-input {
|
||
|
width: 180px;
|
||
|
}
|
||
|
.resi-cell-select {
|
||
|
width: 180px;
|
||
|
box-sizing: border-box;
|
||
|
margin-right: 10px;
|
||
|
&-middle {
|
||
|
width: 130px;
|
||
|
}
|
||
|
&-small {
|
||
|
width: 88px;
|
||
|
}
|
||
|
}
|
||
|
.resi-cell-select:last-child {
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
}
|
||
|
</style>
|