Commit 097db8fa authored by 黄奎's avatar 黄奎

页面修改

parent 7261dc26
...@@ -108,7 +108,6 @@ export default { ...@@ -108,7 +108,6 @@ export default {
(res) => { (res) => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.currentStyle = res.data.data.MiaiPPPlusStyle; this.currentStyle = res.data.data.MiaiPPPlusStyle;
console.log(244, this.currentStyle, res.data.data.MiaiPPPlusStyle);
} }
} }
); );
......
...@@ -165,7 +165,6 @@ export default { ...@@ -165,7 +165,6 @@ export default {
}, },
created() { created() {
this.addMsg.ActivityId = this.$route.query.data.Id; this.addMsg.ActivityId = this.$route.query.data.Id;
console.log(139, this.addMsg);
}, },
methods: { methods: {
SelectId(msg) { SelectId(msg) {
......
...@@ -50,7 +50,6 @@ export default { ...@@ -50,7 +50,6 @@ export default {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.total = res.data.data.count; this.total = res.data.data.count;
var dataArray = res.data.data.pageData; var dataArray = res.data.data.pageData;
console.log(42, dataArray);
this.dataList = []; this.dataList = [];
if (dataArray && dataArray.length > 0) { if (dataArray && dataArray.length > 0) {
dataArray.forEach((x) => { dataArray.forEach((x) => {
......
...@@ -1269,7 +1269,6 @@ export default { ...@@ -1269,7 +1269,6 @@ export default {
staticGoods: 1, staticGoods: 1,
}; };
this.data.catList.push(obj); this.data.catList.push(obj);
console.log(1024, this.data.catList);
}, },
//取消商品分类选择 //取消商品分类选择
quxiaoFenlei() { quxiaoFenlei() {
...@@ -1282,7 +1281,6 @@ export default { ...@@ -1282,7 +1281,6 @@ export default {
var myArray = []; var myArray = [];
if (ckedArr && ckedArr.length > 0) { if (ckedArr && ckedArr.length > 0) {
ckedArr.forEach((element) => { ckedArr.forEach((element) => {
console.log("element", element);
myArray.push({ myArray.push({
id: element.Id, id: element.Id,
name: element.ActivityTitle, name: element.ActivityTitle,
...@@ -1343,7 +1341,6 @@ export default { ...@@ -1343,7 +1341,6 @@ export default {
cCatList() { cCatList() {
if (this.data.showCat) { if (this.data.showCat) {
if (this.data.catList && this.data.catList.length) { if (this.data.catList && this.data.catList.length) {
console.log(1301, this.data.catList);
return this.data.catList; return this.data.catList;
} else { } else {
const defaultCatItem = { const defaultCatItem = {
......
...@@ -254,23 +254,17 @@ export default { ...@@ -254,23 +254,17 @@ export default {
this.enterpriseList.forEach((e, i) => { this.enterpriseList.forEach((e, i) => {
e.disabled = false; e.disabled = false;
}); });
console.log(239, this.enterpriseList);
} }
} }
); );
}, },
//上传小奖章 //上传小奖章
UploadSmall(file) { UploadSmall(file) {
console.log(file);
let imgSrc = window.URL.createObjectURL(file.file); let imgSrc = window.URL.createObjectURL(file.file);
let img = new Image(); let img = new Image();
img.src = imgSrc; img.src = imgSrc;
let this_ = this; let this_ = this;
img.onload = function () { img.onload = function () {
console.log(img.width, img.height);
// if (img.width && img.height) {
// this_.$message.success("真棒!!!");
// }
}; };
this.UploadFileToTencent(this.FileType().UserImg, file.file, (res) => { this.UploadFileToTencent(this.FileType().UserImg, file.file, (res) => {
if (res.resultCode == 1) { if (res.resultCode == 1) {
......
...@@ -158,7 +158,6 @@ ...@@ -158,7 +158,6 @@
this.loading = false; this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.tableData = res.data.data.pageData; this.tableData = res.data.data.pageData;
console.log("tableData", this.tableData);
this.total = res.data.data.count; this.total = res.data.data.count;
} }
}) })
......
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