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.
house/fount/modules/fangwupingjia/list.vue

813 lines
34 KiB

<template>
<!-- 主内容区域 -->
<div class="main-content">
<!-- 列表页显示区域 -->
<div v-if="showFlag">
<!-- -->
<el-form :inline="true" :model="searchForm" class="form-content">
<!-- 搜索框布局行 -->
<el-row :gutter="20" class="slt" :style="{justifyContent:contents.searchBoxPosition=='1'?'flex-start':contents.searchBoxPosition=='2'?'center':'flex-end'}">
<!-- 房屋名称搜索框 -->
<el-form-item :label="contents.inputTitle == 1 ? '房屋名称' : ''">
<!-- 前缀图标搜索框 -->
<el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 1" prefix-icon="el-icon-search" v-model="searchForm.fangwumingcheng" placeholder="房屋名称" clearable></el-input>
<!-- 后缀图标搜索框 -->
<el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 2" suffix-icon="el-icon-search" v-model="searchForm.fangwumingcheng" placeholder="房屋名称" clearable></el-input>
<!-- 无图标搜索框 -->
<el-input v-if="contents.inputIcon == 0" v-model="searchForm.fangwumingcheng" placeholder="房屋名称" clearable></el-input>
</el-form-item>
<!-- 评分搜索框 -->
<el-form-item :label="contents.inputTitle == 1 ? '评分' : ''">
<!-- 前缀图标搜索框 -->
<el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 1" prefix-icon="el-icon-search" v-model="searchForm.pingfen" placeholder="评分" clearable></el-input>
<!-- 后缀图标搜索框 -->
<el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 2" suffix-icon="el-icon-search" v-model="searchForm.pingfen" placeholder="评分" clearable></el-input>
<!-- 无图标搜索框 -->
<el-input v-if="contents.inputIcon == 0" v-model="searchForm.pingfen" placeholder="评分" clearable></el-input>
</el-form-item>
<!-- 房主账号搜索框 -->
<el-form-item :label="contents.inputTitle == 1 ? '房主账号' : ''">
<!-- 前缀图标搜索框 -->
<el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 1" prefix-icon="el-icon-search" v-model="searchForm.fangzhuzhanghao" placeholder="房主账号" clearable></el-input>
<!-- 后缀图标搜索框 -->
<el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 2" suffix-icon="el-icon-search" v-model="searchForm.fangzhuzhanghao" placeholder="房主账号" clearable></el-input>
<!-- 无图标搜索框 -->
<el-input v-if="contents.inputIcon == 0" v-model="searchForm.fangzhuzhanghao" placeholder="房主账号" clearable></el-input>
</el-form-item>
<!-- 用户名搜索框 -->
<el-form-item :label="contents.inputTitle == 1 ? '用户名' : ''">
<!-- 前缀图标搜索框 -->
<el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 1" prefix-icon="el-icon-search" v-model="searchForm.yonghuming" placeholder="用户名" clearable></el-input>
<!-- 后缀图标搜索框 -->
<el-input v-if="contents.inputIcon == 1 && contents.inputIconPosition == 2" suffix-icon="el-icon-search" v-model="searchForm.yonghuming" placeholder="用户名" clearable></el-input>
<!-- 无图标搜索框 -->
<el-input v-if="contents.inputIcon == 0" v-model="searchForm.yonghuming" placeholder="用户名" clearable></el-input>
</el-form-item>
<!-- 查询按钮 -->
<el-form-item>
<!-- 前缀图标查询按钮 -->
<el-button v-if="contents.searchBtnIcon == 1 && contents.searchBtnIconPosition == 1" icon="el-icon-search" type="success" @click="search()">{{ contents.searchBtnFont == 1?'查询':'' }}</el-button>
<!-- 后缀图标查询按钮 -->
<el-button v-if="contents.searchBtnIcon == 1 && contents.searchBtnIconPosition == 2" type="success" @click="search()">{{ contents.searchBtnFont == 1?'查询':'' }}<i class="el-icon-search el-icon--right"/></el-button>
<!-- 无图标查询按钮 -->
<el-button v-if="contents.searchBtnIcon == 0" type="success" @click="search()">{{ contents.searchBtnFont == 1?'查询':'' }}</el-button>
</el-form-item>
</el-row>
<!-- 操作按钮区域 -->
<el-row class="ad" :style="{justifyContent:contents.btnAdAllBoxPosition=='1'?'flex-start':contents.btnAdAllBoxPosition=='2'?'center':'flex-end'}">
<el-form-item>
<!-- 新增按钮 -->
<el-button
v-if="isAuth('fangwupingjia','新增') && contents.btnAdAllIcon == 1 && contents.btnAdAllIconPosition == 1"
type="success"
icon="el-icon-plus"
@click="addOrUpdateHandler()"
>{{ contents.btnAdAllFont == 1?'新增':'' }}</el-button>
<!-- 不同图标位置的新增按钮 -->
<el-button
v-if="isAuth('fangwupingjia','新增') && contents.btnAdAllIcon == 1 && contents.btnAdAllIconPosition == 2"
type="success"
@click="addOrUpdateHandler()"
>{{ contents.btnAdAllFont == 1?'新增':'' }}<i class="el-icon-plus el-icon--right" /></el-button>
<!-- 无图标的新增按钮 -->
<el-button
v-if="isAuth('fangwupingjia','新增') && contents.btnAdAllIcon == 0"
type="success"
@click="addOrUpdateHandler()"
>{{ contents.btnAdAllFont == 1?'新增':'' }}</el-button>
<!-- 删除按钮 -->
<el-button
v-if="isAuth('fangwupingjia','删除') && contents.btnAdAllIcon == 1 && contents.btnAdAllIconPosition == 1 && contents.tableSelection"
:disabled="dataListSelections.length <= 0"
type="danger"
icon="el-icon-delete"
@click="deleteHandler()"
>{{ contents.btnAdAllFont == 1?'删除':'' }}</el-button>
<!-- 不同图标位置的删除按钮 -->
<el-button
v-if="isAuth('fangwupingjia','删除') && contents.btnAdAllIcon == 1 && contents.btnAdAllIconPosition == 2 && contents.tableSelection"
:disabled="dataListSelections.length <= 0"
type="danger"
@click="deleteHandler()"
>{{ contents.btnAdAllFont == 1?'删除':'' }}<i class="el-icon-delete el-icon--right" /></el-button>
<!-- 无图标的删除按钮 -->
<el-button
v-if="isAuth('fangwupingjia','删除') && contents.btnAdAllIcon == 0 && contents.tableSelection"
:disabled="dataListSelections.length <= 0"
type="danger"
@click="deleteHandler()"
>{{ contents.btnAdAllFont == 1?'删除':'' }}</el-button>
<!-- 统计报表按钮 -->
<el-button
v-if="isAuth('fangwupingjia','报表') && contents.btnAdAllIcon == 1 && contents.btnAdAllIconPosition == 1"
type="warning"
icon="el-icon-s-data"
@click="chartDialog()"
>{{ contents.btnAdAllFont == 1?'统计报表':'' }}</el-button>
<el-button
v-if="isAuth('fangwupingjia','报表') && contents.btnAdAllIcon == 1 && contents.btnAdAllIconPosition == 2"
type="warning"
@click="chartDialog()"
>{{ contents.btnAdAllFont == 1?'统计报表':'' }}<i class="el-icon-s-data el-icon--right" /></el-button>
<el-button
v-if="isAuth('fangwupingjia','报表') && contents.btnAdAllIcon == 0"
type="warning"
@click="chartDialog()"
>{{ contents.btnAdAllFont == 1?'统计报表':'' }}</el-button>
</el-form-item>
</el-row>
</el-form>
<!-- 数据表格内容区域 -->
<div class="table-content">
<!-- 数据表格 -->
<el-table class="tables" :size="contents.tableSize" :show-header="contents.tableShowHeader"
:header-row-style="headerRowStyle" :header-cell-style="headerCellStyle"
:border="contents.tableBorder"
:fit="contents.tableFit"
:stripe="contents.tableStripe"
:row-style="rowStyle"
:cell-style="cellStyle"
:style="{width: '100%',fontSize:contents.tableContentFontSize,color:contents.tableContentFontColor}"
v-if="isAuth('fangwupingjia','查看')"
:data="dataList"
v-loading="dataListLoading"
@selection-change="selectionChangeHandler">
<!-- 多选列 -->
<el-table-column v-if="contents.tableSelection"
type="selection"
header-align="center"
align="center"
width="50">
</el-table-column>
<!-- 索引列 -->
<el-table-column label="索引" v-if="contents.tableIndex" type="index" width="50" />
<!-- 合同编号列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="hetongbianhao"
header-align="center"
label="合同编号">
<template slot-scope="scope">
{{scope.row.hetongbianhao}}
</template>
</el-table-column>
<!-- 房屋名称列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="fangwumingcheng"
header-align="center"
label="房屋名称">
<template slot-scope="scope">
{{scope.row.fangwumingcheng}}
</template>
</el-table-column>
<!-- 房屋类型列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="fangwuleixing"
header-align="center"
label="房屋类型">
<template slot-scope="scope">
{{scope.row.fangwuleixing}}
</template>
</el-table-column>
<!-- 小区列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="xiaoqu"
header-align="center"
label="小区">
<template slot-scope="scope">
{{scope.row.xiaoqu}}
</template>
</el-table-column>
<!-- 评分列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="pingfen"
header-align="center"
label="评分">
<template slot-scope="scope">
{{scope.row.pingfen}}
</template>
</el-table-column>
<!-- 评价内容列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="pingjianeirong"
header-align="center"
label="评价内容">
<template slot-scope="scope">
{{scope.row.pingjianeirong}}
</template>
</el-table-column>
<!-- 评价日期列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="pingjiariqi"
header-align="center"
label="评价日期">
<template slot-scope="scope">
{{scope.row.pingjiariqi}}
</template>
</el-table-column>
<!-- 房主账号列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="fangzhuzhanghao"
header-align="center"
label="房主账号">
<template slot-scope="scope">
{{scope.row.fangzhuzhanghao}}
</template>
</el-table-column>
<!-- 用户名列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="yonghuming"
header-align="center"
label="用户名">
<template slot-scope="scope">
{{scope.row.yonghuming}}
</template>
</el-table-column>
<!-- 联系电话列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="lianxidianhua"
header-align="center"
label="联系电话">
<template slot-scope="scope">
{{scope.row.lianxidianhua}}
</template>
</el-table-column>
<!-- 审核回复列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="shhf"
header-align="center"
label="审核回复">
</el-table-column>
<!-- 审核状态列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
prop="sfsh"
header-align="center"
label="审核状态">
<template slot-scope="scope">
<span style="margin-right:10px">{{scope.row.sfsh=='是'?'通过':'未通过'}}</span>
</template>
</el-table-column>
<!-- 审核操作列 -->
<el-table-column :sortable="contents.tableSortable" :align="contents.tableAlign"
v-if="isAuth('fangwupingjia','审核')"
prop="sfsh"
header-align="center"
label="审核">
<template slot-scope="scope">
<el-button type="text" icon="el-icon-edit" size="small" @click="shDialog(scope.row)">审核</el-button>
</template>
</el-table-column>
<!-- 操作列 -->
<el-table-column width="300" :align="contents.tableAlign"
header-align="center"
label="操作">
<template slot-scope="scope">
<!-- 详情按钮 -->
<el-button v-if="isAuth('fangwupingjia','查看') && contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 1" type="success" icon="el-icon-tickets" size="mini" @click="addOrUpdateHandler(scope.row.id,'info')">{{ contents.tableBtnFont == 1?'详情':'' }}</el-button>
<el-button v-if="isAuth('fangwupingjia','查看') && contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 2" type="success" size="mini" @click="addOrUpdateHandler(scope.row.id,'info')">{{ contents.tableBtnFont == 1?'详情':'' }}<i class="el-icon-tickets el-icon--right" /></el-button>
<el-button v-if="isAuth('fangwupingjia','查看') && contents.tableBtnIcon == 0" type="success" size="mini" @click="addOrUpdateHandler(scope.row.id,'info')">{{ contents.tableBtnFont == 1?'详情':'' }}</el-button>
<!-- 修改按钮 -->
<el-button v-if="isAuth('fangwupingjia','修改') && contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 1" type="primary" icon="el-icon-edit" size="mini" @click="addOrUpdateHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'修改':'' }}</el-button>
<el-button v-if="isAuth('fangwupingjia','修改') && contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 2" type="primary" size="mini" @click="addOrUpdateHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'修改':'' }}<i class="el-icon-edit el-icon--right" /></el-button>
<el-button v-if="isAuth('fangwupingjia','修改') && contents.tableBtnIcon == 0" type="primary" size="mini" @click="addOrUpdateHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'修改':'' }}</el-button>
<!-- 删除按钮 -->
<el-button v-if="isAuth('fangwupingjia','删除') && contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 1" type="danger" icon="el-icon-delete" size="mini" @click="deleteHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'删除':'' }}</el-button>
<el-button v-if="isAuth('fangwupingjia','删除') && contents.tableBtnIcon == 1 && contents.tableBtnIconPosition == 2" type="danger" size="mini" @click="deleteHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'删除':'' }}<i class="el-icon-delete el-icon--right" /></el-button>
<el-button v-if="isAuth('fangwupingjia','删除') && contents.tableBtnIcon == 0" type="danger" size="mini" @click="deleteHandler(scope.row.id)">{{ contents.tableBtnFont == 1?'删除':'' }}</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<el-pagination
clsss="pages"
:layout="layouts"
@size-change="sizeChangeHandle"
@current-change="currentChangeHandle"
:current-page="pageIndex"
:page-sizes="[10, 20, 50, 100]"
:page-size="Number(contents.pageEachNum)"
:total="totalPage"
:small="contents.pageStyle"
class="pagination-content"
:background="contents.pageBtnBG"
:style="{textAlign:contents.pagePosition==1?'left':contents.pagePosition==2?'center':'right'}"
></el-pagination>
</div>
</div>
<!-- 添加/修改页面 -->
<add-or-update v-if="addOrUpdateFlag" :parent="this" ref="addOrUpdate"></add-or-update>
<!-- 审核对话框 -->
<el-dialog
title="审核"
:visible.sync="sfshVisiable"
width="50%">
<el-form ref="form" :model="form" label-width="80px">
<el-form-item label="审核状态">
<el-select v-model="shForm.sfsh" placeholder="审核状态">
<el-option label="通过" value="是"></el-option>
<el-option label="不通过" value="否"></el-option>
</el-select>
</el-form-item>
<el-form-item label="内容">
<el-input type="textarea" :rows="8" v-model="shForm.shhf"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="shDialog">取 消</el-button>
<el-button type="primary" @click="shHandler">确 定</el-button>
</span>
</el-dialog>
<!-- 统计报表对话框 -->
<el-dialog
title="统计报表"
:visible.sync="chartVisiable"
width="800">
<div id="pingfenChart" style="width:100%;height:600px;"></div>
<span slot="footer" class="dialog-footer">
<el-button @click="chartDialog"></el-button>
</span>
</el-dialog>
</div>
</template>
<script>
import AddOrUpdate from "./add-or-update";
export default {
data() {
return {
// 搜索文件数据
searchForm: {
key: ""
},
// 数据列表
dataList: [],
// 当前页码
pageIndex: 1,
// 每页条数
pageSize: 10,
// 总条数
totalPage: 0,
// 数据加载状态
dataListLoading: false,
// 多选数据
dataListSelections: [],
// 列表显示状态
showFlag: true,
// 审核对话框显示状态
sfshVisiable: false,
// 审核表单数据
shForm: {},
// 统计报表对话框显示状态
chartVisiable: false,
// 添加/修改页面显示状态
addOrUpdateFlag: false,
// 配置样式
contents: { /* 配置参数 */ },
// 分页布局
layouts: '',
};
},
created() {
this.init();
this.getDataList();
this.contentStyleChange();
},
mounted() {
},
filters: {
// HTML过滤器
htmlfilter: function (val) {
return val.replace(/<[^>]*>/g).replace(/undefined/g,'');
}
},
components: {
AddOrUpdate,
},
methods: {
// 样式更新方法
contentStyleChange() {
this.contentSearchStyleChange();
this.contentBtnAdAllStyleChange();
this.contentSearchBtnStyleChange();
this.contentTableBtnStyleChange();
this.contentPageStyleChange();
},
// 搜索功能区域样式更新
contentSearchStyleChange() {
this.$nextTick(()=>{
document.querySelectorAll('.form-content .slt .el-input__inner').forEach(el=>{
let textAlign = 'left';
if(this.contents.inputFontPosition == 2) textAlign = 'center';
if(this.contents.inputFontPosition == 3) textAlign = 'right';
el.style.textAlign = textAlign;
el.style.height = this.contents.inputHeight;
el.style.lineHeight = this.contents.inputHeight;
el.style.color = this.contents.inputFontColor;
el.style.fontSize = this.contents.inputFontSize;
el.style.borderWidth = this.contents.inputBorderWidth;
el.style.borderStyle = this.contents.inputBorderStyle;
el.style.borderColor = this.contents.inputBorderColor;
el.style.borderRadius = this.contents.inputBorderRadius;
el.style.backgroundColor = this.contents.inputBgColor;
});
if(this.contents.inputTitle) {
document.querySelectorAll('.form-content .slt .el-form-item__label').forEach(el=>{
el.style.color = this.contents.inputTitleColor;
el.style.fontSize = this.contents.inputTitleSize;
el.style.lineHeight = this.contents.inputHeight;
});
}
setTimeout(()=>{
document.querySelectorAll('.form-content .slt .el-input__prefix').forEach(el=>{
el.style.color = this.contents.inputIconColor;
el.style.lineHeight = this.contents.inputHeight;
});
document.querySelectorAll('.form-content .slt .el-input__suffix').forEach(el=>{
el.style.color = this.contents.inputIconColor;
el.style.lineHeight = this.contents.inputHeight;
});
document.querySelectorAll('.form-content .slt .el-input__icon').forEach(el=>{
el.style.lineHeight = this.contents.inputHeight;
});
},10);
});
},
// 搜索功能区域按钮样式更新
contentSearchBtnStyleChange() {
this.$nextTick(()=>{
document.querySelectorAll('.form-content .slt .el-button--success').forEach(el=>{
el.style.height = this.contents.searchBtnHeight;
el.style.color = this.contents.searchBtnFontColor;
el.style.fontSize = this.contents.searchBtnFontSize;
el.style.borderWidth = this.contents.searchBtnBorderWidth;
el.style.borderStyle = this.contents.searchBtnBorderStyle;
el.style.borderColor = this.contents.searchBtnBorderColor;
el.style.borderRadius = this.contents.searchBtnBorderRadius;
el.style.backgroundColor = this.contents.searchBtnBgColor;
});
});
},
// 操作按钮区域样式更新
contentBtnAdAllStyleChange() {
this.$nextTick(()=>{
document.querySelectorAll('.form-content .ad .el-button--success').forEach(el=>{
el.style.height = this.contents.btnAdAllHeight;
el.style.color = this.contents.btnAdAllAddFontColor;
el.style.fontSize = this.contents.btnAdAllFontSize;
el.style.borderWidth = this.contents.btnAdAllBorderWidth;
el.style.borderStyle = this.contents.btnAdAllBorderStyle;
el.style.borderColor = this.contents.btnAdAllBorderColor;
el.style.borderRadius = this.contents.btnAdAllBorderRadius;
el.style.backgroundColor = this.contents.btnAdAllAddBgColor;
});
document.querySelectorAll('.form-content .ad .el-button--danger').forEach(el=>{
el.style.height = this.contents.btnAdAllHeight;
el.style.color = this.contents.btnAdAllDelFontColor;
el.style.fontSize = this.contents.btnAdAllFontSize;
el.style.borderWidth = this.contents.btnAdAllBorderWidth;
el.style.borderStyle = this.contents.btnAdAllBorderStyle;
el.style.borderColor = this.contents.btnAdAllBorderColor;
el.style.borderRadius = this.contents.btnAdAllBorderRadius;
el.style.backgroundColor = this.contents.btnAdAllDelBgColor;
});
document.querySelectorAll('.form-content .ad .el-button--warning').forEach(el=>{
el.style.height = this.contents.btnAdAllHeight;
el.style.color = this.contents.btnAdAllWarnFontColor;
el.style.fontSize = this.contents.btnAdAllFontSize;
el.style.borderWidth = this.contents.btnAdAllBorderWidth;
el.style.borderStyle = this.contents.btnAdAllBorderStyle;
el.style.borderColor = this.contents.btnAdAllBorderColor;
el.style.borderRadius = this.contents.btnAdAllBorderRadius;
el.style.backgroundColor = this.contents.btnAdAllWarnBgColor;
});
});
},
// 表格样式更新
rowStyle({ row, rowIndex}) {
if (rowIndex % 2 == 1) {
if(this.contents.tableStripe) {
return {color:this.contents.tableStripeFontColor};
}
} else {
return '';
}
},
cellStyle({ row, rowIndex}) {
if (rowIndex % 2 == 1) {
if(this.contents.tableStripe) {
return {backgroundColor:this.contents.tableStripeBgColor};
}
} else {
return '';
}
},
headerRowStyle({ row, rowIndex}) {
return {color: this.contents.tableHeaderFontColor};
},
headerCellStyle({ row, rowIndex}) {
return {backgroundColor: this.contents.tableHeaderBgColor};
},
// 表格按钮样式更新
contentTableBtnStyleChange() {
// 此处省略了样式更新代码
},
// 分页样式更新
contentPageStyleChange() {
let arr = [];
if(this.contents.pageTotal) arr.push('total');
if(this.contents.pageSizes) arr.push('sizes');
if(this.contents.pagePrevNext){
arr.push('prev');
if(this.contents.pagePager) arr.push('pager');
arr.push('next');
}
if(this.contents.pageJumper) arr.push('jumper');
this.layouts = arr.join();
this.contents.pageEachNum = 10;
},
// 统计报表对话框
chartDialog() {
this.chartVisiable = !this.chartVisiable;
this.$nextTick(()=>{
var pingfenChart = this.$echarts.init(document.getElementById("pingfenChart"),'macarons');
this.$http({
url: "group/fangwupingjia/pingfen",
method: "get",
}).then(({ data }) => {
if (data && data.code === 0) {
let res = data.data;
let xAxis = [];
let yAxis = [];
let pArray = [];
for(let i=0;i<res.length;i++){
xAxis.push(res[i].pingfen);
yAxis.push(res[i].total);
pArray.push({
value: res[i].total,
name: res[i].pingfen
});
var option = {};
option = {
title: {
text: '房屋评价',
left: 'center'
},
tooltip: {
trigger: 'item',
formatter: '{b} : {c} ({d}%)'
},
series: [
{
type: 'pie',
radius: '55%',
center: ['50%', '60%'],
data: pArray,
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
}
}
]
};
pingfenChart.setOption(option);
window.onresize = function() {
pingfenChart.resize();
};
}
}
});
});
},
//
init () {
this.pingfenOptions = "1,2,3,4,5".split(',');
},
//
search() {
this.pageIndex = 1;
this.getDataList();
},
//
getDataList() {
this.dataListLoading = true;
let params = {
page: this.pageIndex,
limit: this.pageSize,
sort: 'id',
};
if(this.searchForm.fangwumingcheng!='' && this.searchForm.fangwumingcheng!=undefined){
params['fangwumingcheng'] = '%' + this.searchForm.fangwumingcheng + '%';
}
if(this.searchForm.pingfen!='' && this.searchForm.pingfen!=undefined){
params['pingfen'] = '%' + this.searchForm.pingfen + '%';
}
if(this.searchForm.fangzhuzhanghao!='' && this.searchForm.fangzhuzhanghao!=undefined){
params['fangzhuzhanghao'] = '%' + this.searchForm.fangzhuzhanghao + '%';
}
if(this.searchForm.yonghuming!='' && this.searchForm.yonghuming!=undefined){
params['yonghuming'] = '%' + this.searchForm.yonghuming + '%';
}
this.$http({
url: "fangwupingjia/page",
method: "get",
params: params
}).then(({ data }) => {
if (data && data.code === 0) {
this.dataList = data.data.list;
this.totalPage = data.data.total;
} else {
this.dataList = [];
this.totalPage = 0;
}
this.dataListLoading = false;
});
},
// 每页数变更处理方法
sizeChangeHandle(val) {
this.pageSize = val;
this.pageIndex = 1;
this.getDataList();
},
// 当前页变更处理方法
currentChangeHandle(val) {
this.pageIndex = val;
this.getDataList();
},
// 多选变更处理方法
selectionChangeHandler(val) {
this.dataListSelections = val;
},
// 添加/修改处理方法
addOrUpdateHandler(id,type) {
this.showFlag = false;
this.addOrUpdateFlag = true;
this.crossAddOrUpdateFlag = false;
if(type!='info'){
type = 'else';
}
this.$nextTick(() => {
this.$refs.addOrUpdate.init(id,type);
});
},
// 审核对话框方法
shDialog(row){
this.sfshVisiable = !this.sfshVisiable;
if(row){
this.shForm = {
hetongbianhao: row.hetongbianhao,
fangwumingcheng: row.fangwumingcheng,
fangwuleixing: row.fangwuleixing,
xiaoqu: row.xiaoqu,
pingfen: row.pingfen,
pingjianeirong: row.pingjianeirong,
pingjiariqi: row.pingjiariqi,
fangzhuzhanghao: row.fangzhuzhanghao,
yonghuming: row.yonghuming,
lianxidianhua: row.lianxidianhua,
sfsh: row.sfsh,
shhf: row.shhf,
id: row.id
}
}
},
// 审核处理方法
shHandler(){
this.$confirm(`确定操作?`, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(() => {
this.$http({
url: "fangwupingjia/update",
method: "post",
data: this.shForm
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({
message: "操作成功",
type: "success",
duration: 1500,
onClose: () => {
this.getDataList();
this.shDialog();
}
});
} else {
this.$message.error(data.msg);
}
});
});
},
// 下载文件方法
download(file){
window.open(`${file}`);
},
// 删除处理方法
deleteHandler(id) {
var ids = id
? [Number(id)]
: this.dataListSelections.map(item => {
return Number(item.id);
});
this.$confirm(`确定进行[${id ? "删除" : "批量删除"}]操作?`, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(() => {
this.$http({
url: "fangwupingjia/delete",
method: "post",
data: ids
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({
message: "操作成功",
type: "success",
duration: 1500,
onClose: () => {
this.search();
}
});
} else {
this.$message.error(data.msg);
}
});
});
},
}
};
</script>
<style lang="scss" scoped>
/* 搜索按钮区域样式 */
.slt {
margin: 0 !important;
display: flex;
}
/* 操作按钮区域样式 */
.ad {
margin: 0 !important;
display: flex;
}
/* 分页组件样式 */
.pages {
& /deep/ .el-pagination__sizes {
& /deep/ .el-input__inner {
height: 22px;
line-height: 22px;
}
}
}
/* 按钮间距调整 */
.el-button+.el-button {
margin: 0;
}
/* 表格按钮样式 */
.tables {
& /deep/ .el-button--success {
height: 40px;
color: #333;
font-size: 14px;
border-width: 1px;
border-style: solid;
border-color: rgba(196, 210, 244, 1);
border-radius: 22px;
background-color: rgba(171, 239, 239, 1);
}
& /deep/ .el-button--primary {
height: 40px;
color: #333;
font-size: 14px;
border-width: 1px;
border-style: solid;
border-color: rgba(196, 210, 244, 1);
border-radius: 22px;
background-color: rgba(240, 242, 124, 1);
}
& /deep/ .el-button--danger {
height: 40px;
color: #333;
font-size: 14px;
border-width: 1px;
border-style: solid;
border-color: rgba(196, 210, 244, 1);
border-radius: 22px;
background-color: rgba(244, 150, 150, 1);
}
& /deep/ .el-button {
margin: 4px;
}
}
</style>