系统样式修改
This commit is contained in:
parent
4ff08e1109
commit
319b9f2dd6
|
|
@ -342,7 +342,7 @@ export default {
|
|||
// 操作列最小宽度
|
||||
dynamicWidth: 0,
|
||||
// 操作列固定宽度,防止列数过少导致过宽
|
||||
handleColWidth: 250,
|
||||
handleColWidth: 260,
|
||||
// 自增id
|
||||
idCount: 1,
|
||||
// 日期查询条件 字段名称
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
<el-table-column v-if="tableData && tableData.length" type="index" label="序号" width="60" align="center" />
|
||||
<el-table-column align="center" :key="column.prop" :prop="column.prop" :label="column.label"
|
||||
v-for="column in columns" />
|
||||
<el-table-column v-if="tableData && tableData.length" label="操作" width="100" align="center" fixed="right" class-name="action-col" label-class-name="action-col-header">
|
||||
<el-table-column v-if="tableData && tableData.length" label="操作" width="100" align="center" class-name="action-col" label-class-name="action-col-header">
|
||||
<template slot-scope="{ row }">
|
||||
<el-button plain type="primary" size="mini" class="action-btn" icon="el-icon-share" @click="handleShare(row)" v-hasPermi="['data:Collect:share']">分享</el-button>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -2,10 +2,10 @@
|
|||
<!-- 数据汇集管理 -->
|
||||
<div class="app-container">
|
||||
<el-row :gutter="24">
|
||||
<el-col :span="8">
|
||||
<el-col :span="6">
|
||||
<LeftTree @handleNodeClick="handleNodeClick" />
|
||||
</el-col>
|
||||
<el-col :span="16">
|
||||
<el-col :span="18">
|
||||
<RightTable :selectedNodeId="selectedNodeId" :selectedNodeName="selectedNodeName" />
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
|
|
|||
|
|
@ -165,8 +165,6 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
handleClose() {
|
||||
// const obj = { path: "/archivesManagement/filesTransfer/apply" }
|
||||
// this.$tab.closeOpenPage(obj)
|
||||
if(this.viewStatus === 'audit'){
|
||||
const obj = { path: "/archivesManagement/filesTransfer/audit" }
|
||||
this.$tab.closeOpenPage(obj)
|
||||
|
|
|
|||
Loading…
Reference in New Issue