bug修复代码提交

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

@ -266,6 +266,11 @@ export default {
getList() { getList() {
this.loading = true; this.loading = true;
this.filterQuery.actionType = this.actionType; 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) getResultOrderList(this.filterQuery)
.then((response) => { .then((response) => {
if (response.code === 20000) { if (response.code === 20000) {

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

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

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

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

Loading…
Cancel
Save