|
|
|
@ -382,7 +382,7 @@ export default {
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入企业名称",
|
|
|
|
|
trigger: "blur"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
creditCode: [
|
|
|
|
|
{
|
|
|
|
@ -511,7 +511,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
onModifySubmit(type) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//判断本企业产品是否是通过审核的
|
|
|
|
|
let query = {
|
|
|
|
|
customerId: this.$store.getters.customerId
|
|
|
|
@ -528,6 +528,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
addOrModifyCompany (type){
|
|
|
|
|
|
|
|
|
|
this.$refs["inputQuery"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
|
|
|
@ -660,14 +661,23 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleChange(value) {
|
|
|
|
|
this.inputQuery.placeArea =
|
|
|
|
|
if(value.length==3){
|
|
|
|
|
this.inputQuery.placeArea =
|
|
|
|
|
CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]];
|
|
|
|
|
console.log(this.inputQuery.placeArea)
|
|
|
|
|
}else if(value.length==2){
|
|
|
|
|
this.inputQuery.placeArea =
|
|
|
|
|
CodeToText[value[0]] + CodeToText[value[1]];
|
|
|
|
|
}
|
|
|
|
|
this.inputQuery.placeAreaCode = value.toString();
|
|
|
|
|
},
|
|
|
|
|
handleChange2(value) {
|
|
|
|
|
this.inputQuery.productionArea =
|
|
|
|
|
if(value.length==3){
|
|
|
|
|
this.inputQuery.productionArea =
|
|
|
|
|
CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]];
|
|
|
|
|
}else if(value.length==2){
|
|
|
|
|
this.inputQuery.productionArea =
|
|
|
|
|
CodeToText[value[0]] + CodeToText[value[1]];
|
|
|
|
|
}
|
|
|
|
|
this.inputQuery.productionAreaCode = value.toString();
|
|
|
|
|
},
|
|
|
|
|
uploadHandleRemove(file, fileList) {
|
|
|
|
|