fix: share token
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
zzc
2026-02-10 01:25:49 +08:00
parent 69fd59dada
commit 911a182143
6 changed files with 52 additions and 11 deletions

View File

@@ -7,6 +7,9 @@
<!-- </vab-query-form-left-panel> -->
<vab-query-form-left-panel :span="12">
<el-form :inline="true" :model="queryForm" @submit.native.prevent>
<el-form-item>
<el-input v-model.trim="queryForm.userId" clearable placeholder="请输入用户id" />
</el-form-item>
<el-form-item>
<el-input v-model.trim="queryForm.keyword" clearable placeholder="请输入查询条件" />
</el-form-item>
@@ -133,11 +136,15 @@
pageSize: 10,
scene: '',
keyword: '',
userId: '',
},
timeOutID: null,
}
},
created() {
if (this.$route.query.userId) {
this.queryForm.userId = this.$route.query.userId
}
this.fetchData()
},