bug修复代码提交

dev
郑明梁 2 years ago
parent 9ff6a78404
commit c73efd994e

@ -266,6 +266,11 @@ export default {
getList() {
this.loading = true;
this.filterQuery.actionType = this.actionType;
if(this.filterQuery.actionType=='preInDetail'){
this.filterQuery.invCode='1000001'
}else if(this.filterQuery.actionType=='preDetail'){
this.filterQuery.invCode='1000002'
}
getResultOrderList(this.filterQuery)
.then((response) => {
if (response.code === 20000) {

@ -73,7 +73,7 @@
>
<supCompanyEdit
:closeDialog="closeDialog"
:inputQuery="inputQuery"
:inputEdit="inputQuery"
:editType="editType"
></supCompanyEdit>
</el-dialog>

@ -259,7 +259,7 @@ export default {
type: Function,
required: true,
},
inputQuery: {
inputEdit: {
type: Object,
required: true,
},
@ -279,6 +279,13 @@ export default {
imgViewerVisible: false,
imgList: [],
options: regionDataPlus,
inputQuery:{
customerId: null,
companyName: null,
contacts: null,
mobile: null,
detailAddr: null,
},
rules: {
companyName: [
{
@ -417,6 +424,7 @@ export default {
ADMIN_ID: store.getters.adminId,
ADMIN_TOKEN: store.getters.token,
};
this.inputQuery=this.inputEdit
if (this.inputQuery.areaCode != null)
this.selectedOptions = this.inputQuery.areaCode.split(",");
}
@ -512,12 +520,13 @@ export default {
,
getCompanyId(){
var row=this.maintainsList.find(item => item.id == this.inputQuery.companyName);
this.inputQuery.customerId= row.erpId
this.inputQuery.companyName= row.name
this.inputQuery.contacts=row.contact
this.inputQuery.mobile=row.mobile
this.inputQuery.detailAddr=row.addr
this.$set(this.inputQuery,"mobile",row.mobile);
this.$set(this.inputQuery,"customerId",row.erpId);
this.$set(this.inputQuery,"companyName",row.name);
this.$set(this.inputQuery,"contacts",row.contact);
this.$set(this.inputQuery,"detailAddr",row.addr);
this.customerId=this.inputQuery.customerId;
console.log(this.inputQuery)
this.getCompanyCertList();
},

@ -252,7 +252,7 @@
<el-col :span="20">
<el-form-item class="query-form-item" label="备注:">
<el-input v-model="handleMsg" auto-complete="off"
type="textarea" style="width: 90%"
type="textarea"
placeholder="请输入备注内容"></el-input>
</el-form-item>
</el-col>

@ -8,7 +8,7 @@
<el-input v-model="query.key" style="width: 100%;" placeholder="请输入自助平台名称" clearable="true"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-col :span="12">
<el-form-item>
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>

@ -8,7 +8,7 @@
<el-input v-model="filterQuery.name" placeholder="请输入自助平台名称"></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-col :span="12">
<el-form-item>
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>

Loading…
Cancel
Save