From 94bdd533a3380e506e350d6f9a7d662f02ce7fcb Mon Sep 17 00:00:00 2001 From: xc Date: Mon, 8 Sep 2025 19:15:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=BF=90=E8=A1=8C=E7=AB=AF?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vue/afvue/src/views/Dashboard.vue | 2 +- vue/afvue/src/views/Flist.vue | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/vue/afvue/src/views/Dashboard.vue b/vue/afvue/src/views/Dashboard.vue index c804f17..4263434 100644 --- a/vue/afvue/src/views/Dashboard.vue +++ b/vue/afvue/src/views/Dashboard.vue @@ -6,7 +6,7 @@ {{index+1}}、 {{ item.addr }} 服务器概况
- 文件浏览器 + 文件浏览器 代码对比
diff --git a/vue/afvue/src/views/Flist.vue b/vue/afvue/src/views/Flist.vue index cd0bb48..8e5b718 100644 --- a/vue/afvue/src/views/Flist.vue +++ b/vue/afvue/src/views/Flist.vue @@ -42,17 +42,21 @@ export default { dstip: '', flist: [], spath: '/', // 当前的目录 + sport: 9098, // 服务器运行端口 } }, mounted() { this.srcip = this.$route.query.srcip + this.sport = this.$route.query.sport this.getFlist() }, methods: { getFlist() { GetFileList({ srcip: this.srcip, - path: this.spath + path: this.spath, + sport: this.sport + }).then(res => { // console.log(res) this.flist = res.data.list