给单据增加账户、状态和备注的筛选
This commit is contained in:
@@ -63,6 +63,19 @@
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :md="6" :sm="24">
|
||||
<a-form-item label="单据状态" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-select placeholder="选择单据状态" v-model="queryParam.status">
|
||||
<a-select-option value="0">未审核</a-select-option>
|
||||
<a-select-option value="1">已审核</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :md="6" :sm="24">
|
||||
<a-form-item label="单据备注" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-input placeholder="请输入单据备注" v-model="queryParam.remark"></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</template>
|
||||
</a-row>
|
||||
</a-form>
|
||||
@@ -153,6 +166,8 @@
|
||||
organId: "",
|
||||
creator: "",
|
||||
handsPersonId: "",
|
||||
status: "",
|
||||
remark: "",
|
||||
roleType: Vue.ls.get('roleType')
|
||||
},
|
||||
// 表头
|
||||
@@ -190,6 +205,7 @@
|
||||
this.initRetail()
|
||||
this.initUser()
|
||||
this.initPerson()
|
||||
this.initAccount()
|
||||
},
|
||||
methods: {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user