Merge branch '250213-prod-master_1202-gx' into test20250220

This commit is contained in:
gengxin
2025-02-21 10:27:50 +08:00

View File

@@ -24,6 +24,7 @@
v-on:keydown.enter="enterPressHadlerSearch"
>
<!-- 0正常数据 1待审核 2审核中 3审核通过 4拒绝 5撤回 -->
<a-select-option :value="0">全部</a-select-option>
<a-select-option :value="1">待审核</a-select-option>
<a-select-option :value="2">审核中</a-select-option>
<a-select-option :value="3">审核通过</a-select-option>
@@ -753,6 +754,10 @@ export default {
approvalType:1
};
if(objA.status == 0){
objA.approvalType = null; //全部数据
}
if(objA.status == 3){ //审核通过
objA.approvalType = 0
}