|
|
@@ -12,7 +12,7 @@ export function queryTableList(type: 'in' | 'out') {
|
|
|
queryResultLoadingAndInfo(queryAccountInOutApply, loading)
|
|
|
.then(res => {
|
|
|
//申请类型 - 1:出金 2:入金 3: 单边账调整:入金; 4:单边账调整:出金 5:外部母账户调整:入金 6:外部母账户调整:出金 7:外部子账户:入金 8:外部子账户:出金
|
|
|
- const arr = type === 'in' ? [1, 3, 5, 7] : [2, 4, 6, 8]
|
|
|
+ const arr = type === 'in' ? [2, 4, 6, 8] : [1, 3, 5, 7]
|
|
|
tableList.value = res.filter((e: QhjAccountOutInApply) => arr.includes(e.executetype))
|
|
|
})
|
|
|
}
|