# vue-kantboot-admin-demo **Repository Path**: bygoxs/vue-kantboot-admin-demo ## Basic Information - **Project Name**: vue-kantboot-admin-demo - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2024-09-09 - **Last Updated**: 2025-09-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 上传文件 ```js chooseImg() { // 选择文件 this.$kt.file.chooseImageOne().then(res => { this.$emit("startUpload"); this.close(); // 上传这个文件 this.$kt.request.uploadFile({ file: res.file, // 这个是文件组编码 groupCode: "userAvatar", stateSuccess: (res) => { this.$emit("endUpload", res.data.id); this.requestParam.fileId = res.data.id; loading.close(); }, stateFail: (res) => { loading.close(); this.$message.error(res.errMsg); } }); }); } ```