Merge pull request '轨迹异常跳转运单查询携带参数调整' (#232) from develop into master
Reviewed-on: http://git.xdadan.loc/tanex/emis-frontend/pulls/232
This commit is contained in:
commit
18a093ee91
@ -44,6 +44,11 @@ export default {
|
||||
svalue:this.value,
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
value(newVal) {
|
||||
this.svalue = newVal;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onClear(){
|
||||
this.svalue=null;
|
||||
|
||||
@ -924,7 +924,8 @@ export default {
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
$route () {
|
||||
$route (to,from) {
|
||||
const billCode = to.query.billCode;
|
||||
if(this.$route.query.action=='queryByCredit'){
|
||||
if(this.$route.query.custNo!=null){
|
||||
this.queryParams.custNo=this.$route.query.custNo;
|
||||
@ -951,7 +952,10 @@ export default {
|
||||
|
||||
this.getList();
|
||||
}
|
||||
|
||||
if(billCode){
|
||||
this.queryParams.billCode = billCode;
|
||||
this.getList();
|
||||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user