251 lines
7.4 KiB
Vue
251 lines
7.4 KiB
Vue
<template>
|
|
<el-container style="padding: 10px 10px 6px 10px">
|
|
<el-container class="container">
|
|
<el-header v-if="tabs && tabs.length > 0">
|
|
<el-tabs v-model="search[tabskey]" @tab-change="tabChange" style="--el-tabs-header-height: 58px; line-height: 58px;">
|
|
<el-tab-pane v-for="item in tabs" :key="item.value" :label="item.label + ((item.num || (search[tabskey] == item.value && !$refs.table.loading)) ? '(' + (search[tabskey] == item.value ? $refs.table.total : (item.num || 0)) + ')' : '')" :name="item.value" />
|
|
</el-tabs>
|
|
</el-header>
|
|
<el-header v-if="operation.plus || operation.batchdeletion || filter.length > 0">
|
|
<div class="left-panel">
|
|
<el-button v-if="operation.plus" type="primary" icon="el-icon-plus" @click="plus"></el-button>
|
|
</div>
|
|
<div class="right-panel" v-if="filter.length > 0 || stat.length > 0">
|
|
<el-button v-for="(s, index) in stat" :key="index" class="hidden-xs-only" @click="openStat(s)" v-bind="s">{{ s.label }}</el-button>
|
|
<xFilterBar v-if="filter.length > 0" v-model="search" :filterName="$route.meta.tablename" :options="filter" @filterChange="filterChange"> </xFilterBar>
|
|
</div>
|
|
</el-header>
|
|
|
|
<el-header style="height:120px;" v-if="typeof chartoption === 'object' && Object.keys(chartoption).length > 0">
|
|
<xEcharts height="100%" :option="chartoption"></xEcharts>
|
|
</el-header>
|
|
|
|
<el-main class="nopadding">
|
|
<xTable ref="table" :isselection="isselection" :tableColumn="column" :name="tablename" :params="search" :batchoperation="batch" :api="api" :row-key="key" :remoteSort="true" :remoteFilter="true" stripe>
|
|
<el-table-column :label="operation.label || '操作'" :width="operation.width || 124" :fixed="operation.fixed || 'right'" :align="operation.align || 'left'" v-if="operation.edit || operation.delete">
|
|
<template #default="scope">
|
|
<el-button-group>
|
|
<el-button v-if="operation.edit" :type="operation.edit.type || 'primary'" :size="operation.edit.size || 'small'" @click="operationEdit(scope.row, scope.$index)">{{ operation.edit.label || '编辑' }}</el-button>
|
|
<el-popconfirm v-if="operation.delete" :title="operation.delete.title || '确定删除吗?'" @confirm="operationDelete(scope.row, scope.$index)">
|
|
<template #reference>
|
|
<el-button :type="operation.delete.type || 'info'" :size="operation.delete.size || 'small'">{{ operation.delete.label || '删除' }}</el-button>
|
|
</template>
|
|
</el-popconfirm>
|
|
</el-button-group>
|
|
</template>
|
|
</el-table-column>
|
|
</xTable>
|
|
</el-main>
|
|
</el-container>
|
|
</el-container>
|
|
<x-update v-if="dialog.save" :column="column" :name="key" ref="saveDialog" @success="handleSuccess" @closed="dialog.save = false"></x-update>
|
|
<x-stat v-if="dialog.stat" ref="xstatdialog" @closed="dialog.stat = false"></x-stat>
|
|
</template>
|
|
|
|
<script>
|
|
import xFilterBar from '@/components/xFilterBar';
|
|
import xEcharts from '@/components/xEcharts'
|
|
export default {
|
|
name: 'table_1',
|
|
components: {
|
|
xEcharts,
|
|
xFilterBar
|
|
},
|
|
props: {
|
|
name: { type: String, default: "" },
|
|
},
|
|
data() {
|
|
return {
|
|
dialog: {
|
|
save: false,
|
|
stat: false,
|
|
},
|
|
isselection: true,
|
|
selection: [],
|
|
batch: [],
|
|
column: [],
|
|
aside: {
|
|
items: []
|
|
},
|
|
filter: [],
|
|
api: '',
|
|
operation: {},
|
|
key: 'id',
|
|
search: {},
|
|
tabs: [
|
|
// {label:'所有', value:0},
|
|
],
|
|
stat: [],
|
|
chartoption: {},
|
|
tablename: this.$route.meta.tablename,
|
|
tableurl: this.$route.meta.tableurl,
|
|
groupFilterText: '',
|
|
tabskey: '',
|
|
}
|
|
},
|
|
mounted() {
|
|
if (this.name) {
|
|
this.tablename = this.name || this.$route.meta.tablename;
|
|
}
|
|
|
|
//判断是否开启自定义列
|
|
if (this.tablename || this.tableurl) {
|
|
var awaitvar = this.tableurl ? this.$http.get(this.tableurl, {}, { cache: true }) : this.$api.system.table.get(this.tablename, { cache: this.$route.meta.tablecache || 0 });
|
|
awaitvar.then((res) => {
|
|
if (res.code == 200) {
|
|
Object.assign(this.$data, res.data);
|
|
|
|
// 替换search值
|
|
for (const key in this.search) {
|
|
if (Object.prototype.hasOwnProperty.call(this.$route.query, key)) {
|
|
this.search[key] = this.$route.query[key];
|
|
}
|
|
}
|
|
|
|
}
|
|
});
|
|
}
|
|
},
|
|
computed: {
|
|
filterObj() {
|
|
const obj = []
|
|
this.filter.forEach((item) => {
|
|
if (item.component) {
|
|
obj.push({
|
|
name: item.value,
|
|
label: item.label,
|
|
component: item.component,
|
|
options: item.options,
|
|
})
|
|
}
|
|
})
|
|
return obj
|
|
}
|
|
},
|
|
watch: {
|
|
groupFilterText(val) {
|
|
this.$refs.group.filter(val);
|
|
}
|
|
},
|
|
methods: {
|
|
//树过滤
|
|
groupFilterNode(value, data) {
|
|
if (!value) return true;
|
|
return data.label.indexOf(value) !== -1;
|
|
},
|
|
//树点击事件
|
|
groupClick(data) {
|
|
this.search[this.aside.searchkey || 'groupid'] = data[this.aside.key || 'id'];
|
|
this.$refs.table.reload(this.search)
|
|
},
|
|
// 筛选回调
|
|
filterChange(data) {
|
|
var info = Object.assign({}, this.search, data)
|
|
this.$refs.table.reload(info)
|
|
},
|
|
//标签切换
|
|
tabChange() {
|
|
this.$refs.table.reload(this.search)
|
|
},
|
|
//本地更新数据
|
|
handleSuccess(data, mode, message) {
|
|
if (mode == 'edit') {
|
|
if (data) {
|
|
this.$refs.table.tableData.filter(item => item[this.key] === data[this.key]).forEach(item => {
|
|
Object.assign(item, data, data)
|
|
})
|
|
} else {
|
|
this.$refs.table.refresh()
|
|
}
|
|
} else {
|
|
if (data) {
|
|
this.$refs.table.tableData.unshift(data)
|
|
} else {
|
|
this.$refs.table.reload({})
|
|
}
|
|
}
|
|
this.$message.success(message || "操作成功")
|
|
return;
|
|
},
|
|
//增加
|
|
plus() {
|
|
this.dialog.save = true
|
|
this.$nextTick(() => {
|
|
let row = this.operation.plus.data || {};
|
|
// 替换search值
|
|
for (const key in row) {
|
|
if (Object.prototype.hasOwnProperty.call(this.search, key)) {
|
|
row[key] = this.search[key];
|
|
}
|
|
}
|
|
this.$refs.saveDialog.open('plus').getComponentType(this.operation.plus.component).setData(row).setConfig(this.operation.plus)
|
|
})
|
|
},
|
|
//编辑
|
|
operationEdit(row) {
|
|
this.dialog.save = true
|
|
this.$nextTick(() => {
|
|
this.$refs.saveDialog.open('edit').getComponentType(this.operation.edit.component).setData(row).setConfig(this.operation.edit)
|
|
})
|
|
},
|
|
//打开统计
|
|
openStat(o) {
|
|
this.dialog.stat = true
|
|
this.$nextTick(() => {
|
|
this.$refs.xstatdialog.open().setConfig(o);
|
|
})
|
|
},
|
|
//删除
|
|
async operationDelete(row, index) {
|
|
|
|
const key = typeof this.operation.delete.key !== 'undefined' && this.operation.delete.key ? this.operation.delete.key : this.key;
|
|
var res = await this.$http.post(this.operation.delete.url, { [key]: row[key], index: index })
|
|
if (res.code == 200) {
|
|
// this.$refs.table.tableData.splice(index, 1);
|
|
this.$refs.table.refresh();
|
|
return;
|
|
}
|
|
this.$alert(res.message, "提示", { type: 'error' });
|
|
},
|
|
//表格选择后回调事件
|
|
selectionChange(selection) {
|
|
this.selection = selection;
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.container {
|
|
border: 1px solid var(--el-border-color-light);
|
|
border-radius: 4px;
|
|
background-color: var(--el-fill-color-blank);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container:deep(.el-header) {
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.container:deep(.el-header) .el-tabs__header {
|
|
margin: 0;
|
|
}
|
|
|
|
.container:deep(.el-tabs__nav-wrap::after) {
|
|
background: none
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
.container:deep(.el-header) .right-panel {
|
|
display: block;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.container:deep(.el-header) .right-panel>*+* {
|
|
margin: 0px 0px 0 10px;
|
|
}
|
|
|
|
}
|
|
</style>
|