Merge remote-tracking branch 'origin/fencang' into fencang

fencang
anthonywj 3 years ago
commit ed17f6f015

@ -639,7 +639,6 @@ export default {
onSubmit(formName) { onSubmit(formName) {
// this.formVisible = true; // this.formVisible = true;
this.$refs[formName].validate((valid) => { this.$refs[formName].validate((valid) => {
if (valid) { if (valid) {
if (this.registerConfigMap.companyCheckStatus) { if (this.registerConfigMap.companyCheckStatus) {
@ -734,8 +733,15 @@ export default {
}, 1000); }, 1000);
}, },
handleChange(value) { handleChange(value) {
this.inputQuery.area = this.inputQuery.area = CodeToText[value[0]];
CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]]; if (CodeToText[value[1]] != null && CodeToText[value[1]] != ""
&& CodeToText[value[1]] != "undefined") {
this.inputQuery.area += CodeToText[value[1]];
}
if (CodeToText[value[2]] != null && CodeToText[value[2]] != ""
&& CodeToText[value[2]] != "undefined") {
this.inputQuery.area += CodeToText[value[2]];
}
this.inputQuery.areaCode = value.toString(); this.inputQuery.areaCode = value.toString();
}, },
copy() { copy() {

@ -859,6 +859,7 @@ export default {
} }
}, },
hideDetailForm() { hideDetailForm() {
this.detailLoading = false;
// //
this.detailFormVisible = !this.detailFormVisible; this.detailFormVisible = !this.detailFormVisible;
return true; return true;
@ -888,7 +889,6 @@ export default {
if (valid) { if (valid) {
this.detailLoading = true; this.detailLoading = true;
let tQuery = this.detailFormData; let tQuery = this.detailFormData;
console.log(this.detailCountMax + "---" + this.detailFormData.count + "---" + this.detailFormData.reCount)
if (this.detailCountMax) { if (this.detailCountMax) {
if (this.detailFormData.count < this.detailFormData.reCount) { if (this.detailFormData.count < this.detailFormData.reCount) {
this.$message.error("实际数量不能高于订单数量"); this.$message.error("实际数量不能高于订单数量");

Loading…
Cancel
Save