|
|
|
@ -62,7 +62,7 @@
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="gatherList" @selection-change="handleSelectionChange">
|
|
|
|
<el-table v-loading="loading" :data="gatherList" @selection-change="handleSelectionChange">
|
|
|
|
<!-- <el-table-column type="selection" width="55" align="center" />-->
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
<!-- <el-table-column label="主键" align="center" prop="id" />-->
|
|
|
|
<!-- <el-table-column label="主键" align="center" prop="id" />-->
|
|
|
|
<el-table-column label="一级标题" align="center" prop="hzName" min-width="200" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="一级标题" align="center" prop="hzName" min-width="200" :show-overflow-tooltip="true"/>
|
|
|
|
<!-- <el-table-column label="表头" align="center" prop="tableHeader" min-width="200" :show-overflow-tooltip="true"/>
|
|
|
|
<!-- <el-table-column label="表头" align="center" prop="tableHeader" min-width="200" :show-overflow-tooltip="true"/>
|
|
|
|
@ -415,7 +415,7 @@ export default {
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
handleDelete(row) {
|
|
|
|
handleDelete(row) {
|
|
|
|
const ids = row.id || this.ids
|
|
|
|
const ids = row.id || this.ids
|
|
|
|
this.$modal.confirm('是否确认删除生成汇总编号为"' + ids + '"的数据项?').then(function() {
|
|
|
|
this.$modal.confirm('是否确认删除该数据项?').then(function() {
|
|
|
|
return delGather(ids)
|
|
|
|
return delGather(ids)
|
|
|
|
}).then(() => {
|
|
|
|
}).then(() => {
|
|
|
|
this.getList()
|
|
|
|
this.getList()
|
|
|
|
|