From 1b70393b2d1756c183aab58f0aa7ffb0d4292ac0 Mon Sep 17 00:00:00 2001 From: peng <peng.com> Date: 星期五, 01 八月 2025 14:29:16 +0800 Subject: [PATCH] 添加优惠卷跳转指定页面 --- pages/passport/entry/seller/step3.vue | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pages/passport/entry/seller/step3.vue b/pages/passport/entry/seller/step3.vue index 70acc29..d66812d 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/passport/m-city/m-city.vue"; import storage from "@/utils/storage.js"; import { upload } from "@/api/common.js"; -import uniMap from "@/components/uniMap"; +import uniMap from "@/pages/passport/uniMap.vue"; 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