|
@@ -41,7 +41,7 @@
|
|
|
</a-col> -->
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<a-form-item label="面损表单据状态">
|
|
|
- <a-select v-model="queryParam.fstatus">
|
|
|
+ <a-select mode="multiple" @change="handleChange">
|
|
|
<a-select-option value="">请选择</a-select-option>
|
|
|
<a-select-option value="保存">保存</a-select-option>
|
|
|
<a-select-option value="提交">提交</a-select-option>
|
|
@@ -55,7 +55,7 @@
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<a-form-item label="分配表单据状态">
|
|
|
- <a-select v-model="queryParam.cstatus">
|
|
|
+ <a-select mode="multiple" @change="handleChangeCstatus">
|
|
|
<a-select-option value="">请选择</a-select-option>
|
|
|
<a-select-option value="保存">保存</a-select-option>
|
|
|
<a-select-option value="提交">提交</a-select-option>
|
|
@@ -469,6 +469,12 @@ export default {
|
|
|
searchQuery() {
|
|
|
this.getCostList()
|
|
|
},
|
|
|
+ handleChange(value){
|
|
|
+ this.queryParam.fstatus = value.toString()
|
|
|
+ },
|
|
|
+ handleChangeCstatus(value){
|
|
|
+ this.queryParam.cstatus = value.toString()
|
|
|
+ },
|
|
|
changeCreateTime(){
|
|
|
this.queryParam.dverifyDateE=( this.dverifyDate.length==2)?this.dverifyDate[1].format('YYYY-MM-DD'):''
|
|
|
this.queryParam.dverifyDateB=( this.dverifyDate.length==2)?this.dverifyDate[0].format('YYYY-MM-DD'):''
|