|
@@ -27,9 +27,11 @@ import { reactive, ref } from "vue";
|
|
const fileList = ref<any[]>([]);
|
|
const fileList = ref<any[]>([]);
|
|
const imgList = ref<string[]>([]);
|
|
const imgList = ref<string[]>([]);
|
|
const aData = JSON.parse(uni.getStorageSync("activityData"));
|
|
const aData = JSON.parse(uni.getStorageSync("activityData"));
|
|
|
|
+const brandId = uni.getStorageSync("brandId");
|
|
|
|
|
|
const action =
|
|
const action =
|
|
- import.meta.env.VITE_API_URL + "/miniApp/oss/upload/" + aData.brandId;
|
|
|
|
|
|
+ import.meta.env.VITE_API_URL + "/miniApp/oss/upload/" + brandId ||
|
|
|
|
+ aData?.brandId;
|
|
|
|
|
|
const props = defineProps({
|
|
const props = defineProps({
|
|
title: String,
|
|
title: String,
|