|
@@ -11,11 +11,12 @@
|
|
|
:detailPath="{
|
|
|
path:'/orderdetail'
|
|
|
}"
|
|
|
+ :autoQuery="false"
|
|
|
@listData="list">
|
|
|
<template #custom>
|
|
|
<div class="mt-10">
|
|
|
<p class="search__label">状态:</p>
|
|
|
- <el-select v-model="where.status" clearable style="margin-right:10px" size="small" placeholder="请选择状态" @change="change">
|
|
|
+ <el-select v-model="where.status" style="margin-right:10px" size="small" placeholder="请选择状态" @change="change">
|
|
|
<el-option label="新建" value="新建"></el-option>
|
|
|
<el-option label="预提交" value="预提交"></el-option>
|
|
|
<el-option label="确认" value="确认"></el-option>
|
|
@@ -121,7 +122,7 @@ export default {
|
|
|
tradefieldList:'',
|
|
|
where: {
|
|
|
"condition":"",
|
|
|
- "status" : '',
|
|
|
+ "status" : '提交',
|
|
|
"type" : '',
|
|
|
"tradefield": '',
|
|
|
"writeoffstatus":"",//未核销,已核销,部分核销"invoicestatus":"未开票",//未开票,已开票,部分开票"isreturn":",//是否退回:0,1"ischange":.".//是否变更:0,1
|
|
@@ -174,8 +175,15 @@ export default {
|
|
|
this.$refs.basicLayout.param.content.where.enddate = ''
|
|
|
}
|
|
|
this.$refs.basicLayout.listData()
|
|
|
+ },
|
|
|
+ listData(){
|
|
|
+ this.$refs.basicLayout.param.content.where.status = '提交'
|
|
|
+ this.$refs.basicLayout.listData()
|
|
|
}
|
|
|
},
|
|
|
+ mounted() {
|
|
|
+ this.listData()
|
|
|
+ },
|
|
|
created () {
|
|
|
this.getTradefield()
|
|
|
}
|