1.修读部分页面查询公司信息下拉框候选信息无法展示问题

2.删除无用的调试代码
master
x_z 3 years ago
parent 34f3c2b782
commit db4e592217

@ -235,7 +235,6 @@ export default {
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;
stockStatistics(this.filterQuery) stockStatistics(this.filterQuery)
.then((response) => { .then((response) => {
console.log(response)
this.showSup = response.data.showSup; this.showSup = response.data.showSup;
this.loading = false; this.loading = false;
this.list = response.data.list || []; this.list = response.data.list || [];

@ -42,11 +42,11 @@
> >
<el-option <el-option
v-for="item in fromOptions" v-for="item in fromOptions"
:key="item.companyName" :key="item.name"
:label="item.companyName" :label="item.name"
:value="item.customerId" :value="item.erpId"
> >
<span style="float: left">{{ item.companyName }}</span> <span style="float: left">{{ item.name }}</span>
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -156,7 +156,7 @@ import {getBasicThirdSys, filterDetailByKey} from "../../api/basic/basicThirdSys
import {selectIp} from "../../api/param/systemParamConfig"; import {selectIp} from "../../api/param/systemParamConfig";
import thrProductsDetail from "./ThrProductsDetail"; import thrProductsDetail from "./ThrProductsDetail";
import ThrProductsAdd from "@/views/thrsys/ThrProductsAdd"; import ThrProductsAdd from "@/views/thrsys/ThrProductsAdd";
import {filterCustomers} from "@/api/auth/customer"; import {getBasicUnitMaintains2} from "@/api/basic/basicUnitMaintain";
export default { export default {
data() { data() {
@ -311,11 +311,9 @@ export default {
this.getList(); this.getList();
}, },
handleChange(response, files, fileList) { handleChange(response, files, fileList) {
console.log(response);
if (response.code != 20000) { if (response.code != 20000) {
this.$message.error(response.message); this.$message.error(response.message);
} else { } else {
console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
this.$message.success("文件上传成功,请稍后刷新查看!"); this.$message.success("文件上传成功,请稍后刷新查看!");
} }
}, },
@ -347,6 +345,7 @@ export default {
if (res.code == 20000) { if (res.code == 20000) {
this.getList(); this.getList();
this.checkVisible = false; this.checkVisible = false;
this.$message.success("操作成功");
} else { } else {
this.$message.error(error.message); this.$message.error(error.message);
} }
@ -355,20 +354,16 @@ export default {
}) })
}, },
findMethod(query) { findMethod(query) {
console.log(query);
this.fromOptions = []; this.fromOptions = [];
let cQuery = { let cQuery = {
key: query, key: query,
customerName: query, customerName: query,
}; };
filterCustomers(cQuery) getBasicUnitMaintains2(cQuery).then((res) => {
.then((response) => { this.fromOptions = res.data.list || [];
this.fromOptions = response.data.list || []; }).catch(() => {
})
.catch(() => {
this.fromOptions = []; this.fromOptions = [];
}); })
}, },
}, },
components: { components: {

@ -215,7 +215,6 @@
} }
}); });
} else { } else {
console.log("error submit!!");
return false; return false;
} }
}); });
@ -265,7 +264,6 @@
handleChange(value) { handleChange(value) {
this.inputQuery.area = this.inputQuery.area =
CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]]; CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]];
console.log(value + "\n" + this.inputQuery.area);
}, },
}, },
}; };

@ -665,7 +665,6 @@ export default {
} }
}); });
} else { } else {
console.log("error submit!!");
return false; return false;
} }
}); });
@ -680,7 +679,6 @@ export default {
this.loading = false; this.loading = false;
this.inputQuery = response.data; this.inputQuery = response.data;
this.inputQuery.bussinessStatus = "2"; this.inputQuery.bussinessStatus = "2";
console.log(this.inputQuery)
this.selectedOptions = this.inputQuery.areaCode.split(","); this.selectedOptions = this.inputQuery.areaCode.split(",");
}); });
}, },
@ -738,7 +736,6 @@ export default {
handleChange(value) { handleChange(value) {
this.inputQuery.area = this.inputQuery.area =
CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]]; CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]];
console.log(value + "\n" + this.inputQuery.area);
this.inputQuery.areaCode = value.toString(); this.inputQuery.areaCode = value.toString();
}, },
copy() { copy() {
@ -747,13 +744,11 @@ export default {
let clipboard = new Clipboard('.tag-read'); let clipboard = new Clipboard('.tag-read');
clipboard.on('success', e => { clipboard.on('success', e => {
console.log('复制成功')
// //
clipboard.destroy(); clipboard.destroy();
}); });
clipboard.on('error', e => { clipboard.on('error', e => {
// //
console.log('该浏览器不支持复制')
// //
clipboard.destroy() clipboard.destroy()
}); });
@ -779,7 +774,6 @@ export default {
}, },
findMethod(query) { findMethod(query) {
console.log(query);
this.fromOptions = []; this.fromOptions = [];
let cQuery = { let cQuery = {
key: query, key: query,
@ -796,7 +790,6 @@ export default {
}, },
findUdplatMethod(query) { findUdplatMethod(query) {
console.log(query);
this.fromUdplatOptions = []; this.fromUdplatOptions = [];
let cQuery = { let cQuery = {
name: query, name: query,
@ -812,11 +805,8 @@ export default {
}); });
}, },
uploadHandleRemove(file, fileList) { uploadHandleRemove(file, fileList) {
console.log(file, fileList);
}, },
uploadHandlePreview(file) { uploadHandlePreview(file) {
console.log(file);
console.log(this.fileList);
}, },
uploadHandleExceed(files, fileList) { uploadHandleExceed(files, fileList) {
this.$message.warning(`当前限制选择 1 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`); this.$message.warning(`当前限制选择 1 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`);
@ -848,7 +838,6 @@ export default {
return isLt; return isLt;
}, },
uploadHandleSuccess(response, file, fileList) { uploadHandleSuccess(response, file, fileList) {
console.log(response)
if (response.code === 20000) { if (response.code === 20000) {
this.inputQuery.licenseUrl = response.data.name; this.inputQuery.licenseUrl = response.data.name;
} else { } else {

Loading…
Cancel
Save