master
夜笙歌 2 years ago
parent 253cbac392
commit 5793a1c1d3

@ -29,8 +29,11 @@ body {
left: 4%; left: 4%;
width: 15.5%; width: 15.5%;
height: calc(76% - 50px); height: calc(76% - 50px);
overflow: auto;
}
.left::-webkit-scrollbar {
width: 0!important;
} }
.left1 { .left1 {
position: absolute; position: absolute;
top: calc(94% - 50px); top: calc(94% - 50px);
@ -120,6 +123,11 @@ body {
background-color: #0b3194; background-color: #0b3194;
color:#f2f8fc; color:#f2f8fc;
} }
.el-table tbody tr {
background-image: url("../../board/img/tableBg.png");
background-size: 100% 100%;
background-repeat: no-repeat;
}
.el-table th.el-table__cell { .el-table th.el-table__cell {
background-color: #fff0; background-color: #fff0;
} }

@ -2,50 +2,32 @@ new Vue({
el: '#app', el: '#app',
data() { data() {
return { return {
treeData: [ treeData: [],
{
label: '一级 1',
children: [
{
label: '二级 1-1',
}
]
},
{
label: '一级 2',
children: [
{
label: '二级 2-1'
}
]
},
{
label: '一级 3',
children: [
{
label: '二级 3-1',
}
]
}
],
defaultProps: { defaultProps: {
children: 'children', children: 'children',
label: 'label' label: 'label'
}, },
tableData: [1, 2, 3, 4, 5, 6, 7].map((e, i) => { treeId: null,
return { tableData: []
no: i,
name: `名称${i}`,
date: '' + new Date(1),
people: '张三'
}
})
}; };
}, },
mounted() {
this.getTree()
},
methods: { methods: {
handleNodeClick(data) { handleNodeClick(data) {
console.log(data); $.post(ctx + 'manage/base_file/fileList', {name: data.value}, (e) => {
console.log(e)
this.tableData = e.data.map((e, i) => {
return {
no: i,
name: e.fileName,
date: e.createTime,
people: e.customName,
}
})
})
this.treeId = data.id
}, },
handleEdit(index, row) { handleEdit(index, row) {
console.log(index, row); console.log(index, row);
@ -56,17 +38,47 @@ new Vue({
handleSelectionChange(val) { handleSelectionChange(val) {
console.log(val); console.log(val);
}, },
addTree(){ addTree() {
$.modal.open('设备智能驾驶舱', ctx + 'manage/base_customer/add');
}, },
delTree(){ delTree() {
this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
$.post(ctx + 'manage/base_customer/remove', {ids: this.treeId}, (e) => {
this.$message({
type: 'success',
message: '删除成功!',
});
this.getTree()
})
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
});
});
}, },
addTable(){ addTable() {
$.modal.open('设备智能驾驶舱', ctx + 'manage/base_file/add');
}, },
delTable(){ delTable(e) {
console.log(1)
},
getTree() {
$.get(ctx + 'broad/home/queryCustomer', {}, (e) => {
console.log(e)
this.treeData = e.data.map(e => {
return {
label: e.customerName,
value: e.customerName,
id: e.objid
}
})
})
} }
} }
}) })

Binary file not shown.

After

Width:  |  Height:  |  Size: 539 B

@ -54,6 +54,7 @@
<el-table <el-table
:data="tableData" :data="tableData"
@selection-change="handleSelectionChange" @selection-change="handleSelectionChange"
height="75vh"
style="width: 100%"> style="width: 100%">
<el-table-column <el-table-column
fixed="left" fixed="left"

Loading…
Cancel
Save