|
|
@@ -1,11 +1,11 @@
|
|
|
<template>
|
|
|
- <CellGroup>
|
|
|
+ <!-- <CellGroup>
|
|
|
<Field name="operateType" :label="$t('banksign.fundstype')" is-link>
|
|
|
<template #input>
|
|
|
<app-select v-model="operatetype" :placeholder="$t('banksign.pleasechoicefundstype')" :options="operateTypeSearchList" :optionProps="{ label: 'label', value: 'value' }" @confirm="onConfirm"/>
|
|
|
</template>
|
|
|
</Field>
|
|
|
- </CellGroup>
|
|
|
+ </CellGroup> -->
|
|
|
<table cellspacing="0" cellpadding="0">
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
@@ -50,7 +50,7 @@
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
import { shallowRef } from 'vue'
|
|
|
-import { CellGroup, Field } from 'vant'
|
|
|
+// import { CellGroup, Field } from 'vant'
|
|
|
import { formatDate } from '@/filters'
|
|
|
import { useRequest } from '@/hooks/request'
|
|
|
import { queryAmountLog, queryHisAmountLog } from '@/services/api/bank'
|
|
|
@@ -66,7 +66,7 @@ const dataList = shallowRef<Model.AmountLogRsp[]>([])
|
|
|
const hisDataList = shallowRef<Model.HisAmountLogRsp[]>([])
|
|
|
const error = shallowRef(false)
|
|
|
/// 资金类型
|
|
|
-const operatetype = shallowRef(0)
|
|
|
+// const operatetype = shallowRef(0)
|
|
|
const pullRefreshRef = shallowRef()
|
|
|
|
|
|
const dateType = shallowRef(0)
|