md
This commit is contained in:
parent
f537251010
commit
1d8c6f0b8f
@ -43,6 +43,10 @@
|
|||||||
return {
|
return {
|
||||||
optionItems: [],
|
optionItems: [],
|
||||||
svalue: this.value,
|
svalue: this.value,
|
||||||
|
queryParams:{
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@ -75,9 +79,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
queryData(val) {
|
queryData(val) {
|
||||||
let queryParams = {
|
this.queryParams.searchValue=val;
|
||||||
searchValue:val
|
|
||||||
};
|
|
||||||
getPayeeList(queryParams).then(response => {
|
getPayeeList(queryParams).then(response => {
|
||||||
this.optionItems =response.rows;
|
this.optionItems =response.rows;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -43,6 +43,10 @@
|
|||||||
return {
|
return {
|
||||||
optionItems: [],
|
optionItems: [],
|
||||||
svalue: this.value,
|
svalue: this.value,
|
||||||
|
queryParams:{
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@ -75,10 +79,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
queryData(val) {
|
queryData(val) {
|
||||||
let queryParams = {
|
|
||||||
searchValue:val
|
this.queryParams.searchValue=val;
|
||||||
};
|
getSalemanList(this.queryParams).then(response => {
|
||||||
getSalemanList(queryParams).then(response => {
|
|
||||||
this.optionItems =response.rows;
|
this.optionItems =response.rows;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
</SearchForm>
|
</SearchForm>
|
||||||
|
|
||||||
<el-collapse v-model="activeNames">
|
<el-collapse v-model="activeNames">
|
||||||
@ -44,7 +44,7 @@
|
|||||||
</el-collapse-item>
|
</el-collapse-item>
|
||||||
|
|
||||||
</el-collapse>
|
</el-collapse>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ export default {
|
|||||||
delFlag: null,
|
delFlag: null,
|
||||||
remark: null,
|
remark: null,
|
||||||
params:{
|
params:{
|
||||||
signStatus:null,
|
blSign:null,
|
||||||
expireNotSign:null,
|
expireNotSign:null,
|
||||||
problemQueryType:null,
|
problemQueryType:null,
|
||||||
}
|
}
|
||||||
|
|||||||
@ -176,10 +176,10 @@
|
|||||||
<ProvincePicker2 v-model="queryParams.receiveProvince" :countryCode="queryParams.receiveCountry" style="margin-left:5px" ></ProvincePicker2>
|
<ProvincePicker2 v-model="queryParams.receiveProvince" :countryCode="queryParams.receiveCountry" style="margin-left:5px" ></ProvincePicker2>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="签收状态" prop="signStatus">
|
<el-form-item label="签收状态" prop="blSign">
|
||||||
<el-select clearable="" v-model="queryParams.params.signStatus" placeholder="请选择">
|
<el-select clearable="" v-model="queryParams.params.blSign" placeholder="请选择">
|
||||||
<el-option label="已签收" :value="1"></el-option>
|
<el-option label="已签收" :value="1"></el-option>
|
||||||
<el-option label="未签收" :value="2"></el-option>
|
<el-option label="未签收" :value="0"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
@ -326,7 +326,7 @@
|
|||||||
@queryTable="getList"
|
@queryTable="getList"
|
||||||
@selection-change="handleSelectionChange"
|
@selection-change="handleSelectionChange"
|
||||||
@sort-change="handleSortChange"
|
@sort-change="handleSortChange"
|
||||||
|
|
||||||
>
|
>
|
||||||
|
|
||||||
<div slot="toolbar">
|
<div slot="toolbar">
|
||||||
@ -830,7 +830,7 @@ export default {
|
|||||||
delFlag: null,
|
delFlag: null,
|
||||||
remark: null,
|
remark: null,
|
||||||
params:{
|
params:{
|
||||||
signStatus:null,
|
blSign:null,
|
||||||
expireNotSign:null,
|
expireNotSign:null,
|
||||||
problemQueryType:null,
|
problemQueryType:null,
|
||||||
}
|
}
|
||||||
@ -868,10 +868,10 @@ export default {
|
|||||||
tableRowClassName({row, rowIndex}) {
|
tableRowClassName({row, rowIndex}) {
|
||||||
if (row.blIsQuestion=='1') {
|
if (row.blIsQuestion=='1') {
|
||||||
return 'warning-row';
|
return 'warning-row';
|
||||||
}
|
}
|
||||||
else if (row.waybillStatus=='50') {
|
else if (row.waybillStatus=='50') {
|
||||||
return 'success-row';
|
return 'success-row';
|
||||||
}
|
}
|
||||||
|
|
||||||
return '';
|
return '';
|
||||||
},
|
},
|
||||||
|
|||||||
@ -11,7 +11,7 @@
|
|||||||
<el-option
|
<el-option
|
||||||
v-for="dict in feeTypeList"
|
v-for="dict in feeTypeList"
|
||||||
:key="dict.value"
|
:key="dict.value"
|
||||||
:label="dict.value+'-'+dict.label"
|
:label="dict.label"
|
||||||
:value="dict.value"
|
:value="dict.value"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
|
|||||||
@ -160,8 +160,8 @@
|
|||||||
<ProvincePicker2 v-model="queryParams.receiveProvince" :countryCode="queryParams.receiveCountry" style="margin-left:5px" ></ProvincePicker2>
|
<ProvincePicker2 v-model="queryParams.receiveProvince" :countryCode="queryParams.receiveCountry" style="margin-left:5px" ></ProvincePicker2>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="签收状态" prop="signStatus">
|
<el-form-item label="签收状态" prop="blSign">
|
||||||
<el-select clearable="" v-model="queryParams.params.signStatus" placeholder="请选择">
|
<el-select clearable="" v-model="queryParams.params.blSign" placeholder="请选择">
|
||||||
<el-option label="已签收" :value="1"></el-option>
|
<el-option label="已签收" :value="1"></el-option>
|
||||||
<el-option label="未签收" :value="2"></el-option>
|
<el-option label="未签收" :value="2"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@ -814,7 +814,7 @@ export default {
|
|||||||
delFlag: null,
|
delFlag: null,
|
||||||
remark: null,
|
remark: null,
|
||||||
params:{
|
params:{
|
||||||
signStatus:null,
|
blSign:null,
|
||||||
expireNotSign:null,
|
expireNotSign:null,
|
||||||
problemQueryType:null,
|
problemQueryType:null,
|
||||||
}
|
}
|
||||||
@ -822,7 +822,9 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.queryParams.sendSiteCode=this.$store.getters.ownerSiteCode;
|
if(this.$store.getters.ownerSiteCode!='88888'){
|
||||||
|
this.queryParams.sendSiteCode=this.$store.getters.ownerSiteCode;
|
||||||
|
}
|
||||||
this.queryOrderType="1";
|
this.queryOrderType="1";
|
||||||
this.queryOrderDateType="1";
|
this.queryOrderDateType="1";
|
||||||
// this.queryExpireNotSign="1"
|
// this.queryExpireNotSign="1"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user