From 5793a1c1d35307db64cb85b0bf3aa21cce02ff5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=9C=E7=AC=99=E6=AD=8C?= <2277317060@qq.com> Date: Mon, 9 Oct 2023 17:55:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/static/board/doc.css | 10 +- .../src/main/resources/static/board/doc.js | 98 ++++++++++-------- .../resources/static/board/img/tableBg.png | Bin 0 -> 539 bytes .../main/resources/templates/board/doc.html | 1 + 4 files changed, 65 insertions(+), 44 deletions(-) create mode 100644 haiwei-admin/src/main/resources/static/board/img/tableBg.png diff --git a/haiwei-admin/src/main/resources/static/board/doc.css b/haiwei-admin/src/main/resources/static/board/doc.css index 68f2964..a9446f7 100644 --- a/haiwei-admin/src/main/resources/static/board/doc.css +++ b/haiwei-admin/src/main/resources/static/board/doc.css @@ -29,8 +29,11 @@ body { left: 4%; width: 15.5%; height: calc(76% - 50px); + overflow: auto; +} +.left::-webkit-scrollbar { + width: 0!important; } - .left1 { position: absolute; top: calc(94% - 50px); @@ -120,6 +123,11 @@ body { background-color: #0b3194; 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 { background-color: #fff0; } diff --git a/haiwei-admin/src/main/resources/static/board/doc.js b/haiwei-admin/src/main/resources/static/board/doc.js index 27ec499..b0c2508 100644 --- a/haiwei-admin/src/main/resources/static/board/doc.js +++ b/haiwei-admin/src/main/resources/static/board/doc.js @@ -2,50 +2,32 @@ new Vue({ el: '#app', data() { return { - treeData: [ - { - - label: '一级 1', - children: [ - { - label: '二级 1-1', - } - ] - }, - { - label: '一级 2', - children: [ - { - label: '二级 2-1' - } - ] - }, - { - label: '一级 3', - children: [ - { - label: '二级 3-1', - } - ] - } - ], + treeData: [], defaultProps: { children: 'children', label: 'label' }, - tableData: [1, 2, 3, 4, 5, 6, 7].map((e, i) => { - return { - no: i, - name: `名称${i}`, - date: '' + new Date(1), - people: '张三' - } - }) + treeId: null, + tableData: [] }; }, + mounted() { + this.getTree() + }, methods: { 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) { console.log(index, row); @@ -56,17 +38,47 @@ new Vue({ handleSelectionChange(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 + } + }) + }) } } }) diff --git a/haiwei-admin/src/main/resources/static/board/img/tableBg.png b/haiwei-admin/src/main/resources/static/board/img/tableBg.png new file mode 100644 index 0000000000000000000000000000000000000000..41bd873a8c48daa3938e69516fd8011f9e6d8f71 GIT binary patch literal 539 zcmeAS@N?(olHy`uVBq!ia0y~yV9f!tRXEsyq^wnO9|Hs9BTpB{kcv5P?{4&T4wPtn zsQ*!DvV_b5#Vs4mBW7^kIdVy|L|8mPK*r(Vn+I$MJp`t5izx+a=l^?D`M_kk)rZpj z;;QH0-$#3@zrPv1rs(UZS?R_g35JsN8!0xDDYxD~ z-7)`3!p2i`Be+4r7xr#DyRFykWTJGAdy+0l;%2on0Uzx3d@ z)u&a&%RoGaANBiLqc@6ym&Jqox8=>*}ayA)Drp$V>(6i|B`_yf_=U%>>dl3>a e$){C5t8AC=$~QFDJh8tYWQM1!pUXO@geCyjPnj10 literal 0 HcmV?d00001 diff --git a/haiwei-admin/src/main/resources/templates/board/doc.html b/haiwei-admin/src/main/resources/templates/board/doc.html index e7ca517..e939ca3 100644 --- a/haiwei-admin/src/main/resources/templates/board/doc.html +++ b/haiwei-admin/src/main/resources/templates/board/doc.html @@ -54,6 +54,7 @@