Commit bf0d57b5 authored by 罗超's avatar 罗超

1

parent f6d1a6db
......@@ -482,17 +482,16 @@ export default {
this.openImage = type;
},
jumpBrandList(item) {
// this.apipost("/api/Trade/GetPrizeDetails", { Id: id }, (res) => {
// if (res.data.resultCode == 1) {
// } else {
// this.Error(res.data.message);
// }
// });
// query: { data: res.data.data.BrandList, readonly: 1 },
if (item.TotalCount > 0) {
this.$router.push({
path: "/firstStoreApply",
this.apipost("/api/Trade/GetPrizeDetails", { Id: item.Id }, (res) => {
if (res.data.resultCode == 1) {
this.$router.push({
path: "/brandManagement",
query: { data: res.data.data.BrandList, readonly: 1 },
});
} else {
this.Error(res.data.message);
}
});
}
},
......@@ -515,7 +514,6 @@ export default {
});
},
UploadSmall(file) {
console.log(494, file.file);
const isLt1M = file.file.size / 1024 / 1024 < 1;
if (!isLt1M) {
this.$message.error("上传头像图片大小不能超过 1MB!");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment