From c8cef398fbf1f9b63dbf23637ef520b421515dc9 Mon Sep 17 00:00:00 2001
From: zxl <763096477@qq.com>
Date: 星期四, 20 十一月 2025 10:13:08 +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