|
@@ -1,153 +1,132 @@
|
|
|
<template>
|
|
|
<div
|
|
|
- v-loading="loading"
|
|
|
class="security-check-table-wrapper"
|
|
|
:style="{ height: tableWrapperHeight }"
|
|
|
>
|
|
|
<a-table
|
|
|
- ref="table"
|
|
|
:data-source="tableData"
|
|
|
- :columns="tableCols"
|
|
|
- stripeed
|
|
|
- fited
|
|
|
+ :columns="columns"
|
|
|
+ :row-key="rowKey"
|
|
|
+ :row-selection="withSelection ? { selectedRowKeys: selectedRowKeys, onChange: onSelectChange } : null"
|
|
|
bordered
|
|
|
- height="100%"
|
|
|
>
|
|
|
- <template v-if="withSelection">
|
|
|
- <a-table-column type="selection" width="35" />
|
|
|
- </template>
|
|
|
- <template v-for="col in cols">
|
|
|
- <NestTableColumn :key="col.prop" :col="col" />
|
|
|
- </template>
|
|
|
- <template v-if="withOperateColumn">
|
|
|
- <a-table-column label="操作" class-name="column-operate" :width="130">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span class="cell-operate-edit" @click="editRow(scope.row)"
|
|
|
- >修改</span
|
|
|
- >
|
|
|
- <span class="cell-operate-delete" @click="deleteRow(scope.row)"
|
|
|
- >删除</span
|
|
|
- >
|
|
|
- </template>
|
|
|
- </a-table-column>
|
|
|
+ <template
|
|
|
+ v-if="withOperateColumn"
|
|
|
+ slot="operation"
|
|
|
+ slot-scope="text, record"
|
|
|
+ >
|
|
|
+ <div class="column-operate">
|
|
|
+ <span
|
|
|
+ class="cell-operate-edit"
|
|
|
+ @click="editRow(record)"
|
|
|
+ >修改</span>
|
|
|
+ <span
|
|
|
+ class="cell-operate-delete"
|
|
|
+ @click="deleteRow(record)"
|
|
|
+ >删除</span>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
</a-table>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import NestTableColumn from "./nestTableColumn.vue";
|
|
|
-
|
|
|
export default {
|
|
|
- name: "SecurityCheckTable",
|
|
|
- components: { NestTableColumn },
|
|
|
+ name: 'SecurityCheckTable',
|
|
|
props: {
|
|
|
height: {
|
|
|
type: [Number, String],
|
|
|
- default: "50vh",
|
|
|
+ default: '50vh'
|
|
|
},
|
|
|
tableCols: {
|
|
|
type: Array,
|
|
|
- default: () => [],
|
|
|
+ default: () => []
|
|
|
},
|
|
|
tableData: {
|
|
|
type: Array,
|
|
|
- default: () => [],
|
|
|
+ default: () => []
|
|
|
+ },
|
|
|
+ rowKey: {
|
|
|
+ type: String,
|
|
|
+ default: 'key'
|
|
|
},
|
|
|
withSelection: {
|
|
|
type: Boolean,
|
|
|
- default: false,
|
|
|
+ default: false
|
|
|
},
|
|
|
showSummary: {
|
|
|
type: Boolean,
|
|
|
- default: false,
|
|
|
- },
|
|
|
- withOperateColumn: {
|
|
|
- type: Boolean,
|
|
|
- default: false,
|
|
|
- },
|
|
|
+ default: false
|
|
|
+ }
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- loading: false,
|
|
|
- cols: [],
|
|
|
- data: [],
|
|
|
- };
|
|
|
+ selectedRowKeys: []
|
|
|
+ }
|
|
|
},
|
|
|
computed: {
|
|
|
- tableWrapperHeight() {
|
|
|
- return typeof this.height === "number" ? this.height + "px" : this.height;
|
|
|
- },
|
|
|
- },
|
|
|
- watch: {
|
|
|
- tableCols: {
|
|
|
- handler(val) {
|
|
|
- this.cols = val;
|
|
|
- },
|
|
|
- deep: true,
|
|
|
- immediate: true,
|
|
|
+ columns() {
|
|
|
+ return this.tableCols.map(col => {
|
|
|
+ if (col.clickHandler) {
|
|
|
+ col.customCell = () => {
|
|
|
+ return {
|
|
|
+ class: 'cell-click',
|
|
|
+ on: {
|
|
|
+ click: col.clickHandler
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return col
|
|
|
+ })
|
|
|
},
|
|
|
- tableData: {
|
|
|
- handler(val) {
|
|
|
- this.data = val;
|
|
|
- },
|
|
|
- deep: true,
|
|
|
- immediate: true,
|
|
|
+ tableWrapperHeight() {
|
|
|
+ return typeof this.height === 'number' ? this.height + 'px' : this.height
|
|
|
},
|
|
|
- },
|
|
|
- updated() {
|
|
|
- this.$refs["table"].doLayout();
|
|
|
+ withOperateColumn() {
|
|
|
+ return this.columns.find(col => col.dataIndex === 'operation')
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
+ onSelectChange(selectedRowKeys, selectedRows) {
|
|
|
+ // console.log(selectedRowKeys)
|
|
|
+ this.selectedRowKeys = selectedRowKeys
|
|
|
+ },
|
|
|
editRow(row) {
|
|
|
- console.log("edit");
|
|
|
+ console.log('edit')
|
|
|
},
|
|
|
deleteRow(row) {
|
|
|
- console.log("delete");
|
|
|
+ console.log('delete')
|
|
|
},
|
|
|
- },
|
|
|
-};
|
|
|
+ clickHandler(index) {
|
|
|
+ console.log(index)
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.security-check-table-wrapper {
|
|
|
width: 100%;
|
|
|
- ::v-deep .ant-table-column-title {
|
|
|
- font-size: 14px;
|
|
|
- font-family: Helvetica, "Microsoft YaHei";
|
|
|
- color: #101116;
|
|
|
- font-weight: bold;
|
|
|
- }
|
|
|
::v-deep .ant-table {
|
|
|
width: 100%;
|
|
|
- .ant-table__cell {
|
|
|
- .cell {
|
|
|
- // padding: 0 19px;
|
|
|
+ .ant-table-column-title {
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Helvetica, 'Microsoft YaHei';
|
|
|
+ color: #101116;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ .ant-table-tbody {
|
|
|
+ td {
|
|
|
font-size: 14px;
|
|
|
- font-family: Helvetica, "Microsoft YaHei";
|
|
|
+ font-family: Helvetica, 'Microsoft YaHei';
|
|
|
color: #101116;
|
|
|
- }
|
|
|
- &.ant-table-column--selection .cell {
|
|
|
- padding: 0;
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
- }
|
|
|
- .ant-table__header {
|
|
|
- .ant-table__cell {
|
|
|
- > .cell {
|
|
|
- font-weight: bold;
|
|
|
- }
|
|
|
- &:not(.is-leaf) > .cell {
|
|
|
- text-align: center;
|
|
|
+ &.cell-click {
|
|
|
+ color: #2d67e3;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
- .ant-table__body {
|
|
|
- .cell .cell-click {
|
|
|
- color: #2d67e3;
|
|
|
- cursor: pointer;
|
|
|
- }
|
|
|
- .column-operate .cell {
|
|
|
+ .column-operate {
|
|
|
span {
|
|
|
cursor: pointer;
|
|
|
&:not(:last-child) {
|