增加流程页面包括样式
This commit is contained in:
@@ -50,8 +50,7 @@
|
||||
</el-row>
|
||||
</div>
|
||||
<div class="table">
|
||||
{{tagsForm}}
|
||||
<vxe-table :data="tableData" :empty-render="{name: 'NotData'}" align="center" border stripe v-table-min-height="'calc(100vh - 320px)'">
|
||||
<vxe-table ref="xTable" :data="tableData" :empty-render="{name: 'NotData'}" align="center" border stripe v-table-min-height="'calc(100vh - 320px)'">
|
||||
<vxe-column show-overflow show-header-overflow type="seq" title="序号" width="77">
|
||||
<template #default="{ row, rowIndex }">
|
||||
{{ rowIndex + (q.pageNo - 1) * q.pageSize + 1 }}
|
||||
@@ -488,6 +487,18 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
selectAllEvent ({ checked }) {
|
||||
const records = this.$refs.xTable.getCheckboxRecords()
|
||||
this.checkIds = records.map(item => {
|
||||
return item.id
|
||||
})
|
||||
},
|
||||
selectChangeEvent ({ checked }) {
|
||||
const records = this.$refs.xTable.getCheckboxRecords()
|
||||
this.checkIds = records.map(item => {
|
||||
return item.id
|
||||
})
|
||||
},
|
||||
/* 权限全选 */
|
||||
selectAll () {
|
||||
this.reportF.reportUserIdList = []
|
||||
|
||||
Reference in New Issue
Block a user