From 7acb664b9820d51be0552a1b769b4aeaeb4d89bf Mon Sep 17 00:00:00 2001 From: peng <peng.com> Date: 星期三, 16 七月 2025 22:44:19 +0800 Subject: [PATCH] 解决主包过大问题 --- pages/passport/entry/seller/step3.vue | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pages/passport/entry/seller/step3.vue b/pages/passport/entry/seller/step3.vue index 70acc29..4ccb3da 100644 --- a/pages/passport/entry/seller/step3.vue +++ b/pages/passport/entry/seller/step3.vue @@ -111,15 +111,17 @@ </template> <script> +import '@/components/uview-components/uview-ui'; + import { applyThird } from "@/api/entry"; import { getCategoryList } from "@/api/goods"; -import city from "@/components/m-city/m-city.vue"; +import city from "@/pages/subComponents/m-city/m-city.vue"; import storage from "@/utils/storage.js"; import { upload } from "@/api/common.js"; import uniMap from "@/components/uniMap"; import permision from "@/js_sdk/wa-permission/permission.js"; export default { - components: { "m-city": city, uniMap }, + components: { "m-city": city, uniMap}, data() { return { storage, @@ -286,7 +288,7 @@ onUploaded(lists, key) { let images = []; lists.forEach((item) => { - images.push(item.response.result); + images.push(item.response.data.fileKey); }); this.form[key] = images; }, -- Gitblit v1.8.0