fix: 新功能增加,原有功能优化。

This commit is contained in:
tianyongbao
2024-06-15 15:52:47 +08:00
parent 2f1175183f
commit 7ce6161b01
33 changed files with 4630 additions and 86 deletions

View File

@@ -3,10 +3,7 @@
<u-sticky offsetTop="8rpx" customNavHeight="8rpx">
<view class="search-view">
<u--input v-model="queryParams.name" border="false" placeholder="请输入投资账户名称" class="search-input"
@blur="searchBlur">
<template slot="prefix">
<u-icon name="search" color="#B8B8B8" size="48"></u-icon>
</template>
@blur="searchBlur" suffixIcon="search" suffixIconStyle="color: #909399">
</u--input>
<u-icon :name="filterPanel ? 'arrow-up-fill' : 'arrow-down-fill'" color="#666666" size="28" label="筛选"
labelPos="left" labelSize="32rpx" labelColor="#666666" @click="filterPanel = !filterPanel"></u-icon>
@@ -94,8 +91,8 @@
<text class="row-value">{{ item.remark }}</text>
</view>
<view class="operate" >
<view class="btn filling" @click="enterDetails(item)">查看</view>
<view class="btn filling" @click="handleEdit(item)">修改</view>
<!-- <view class="btn filling" @click="enterDetails(item)">查看</view> -->
<!-- <view class="btn filling" @click="handleEdit(item)">修改</view> -->
<view class="btn filling" @click="handleDelete(item)">删除</view>
</view>
</view>
@@ -258,11 +255,11 @@ function selectAccountType(item) {
}
function resetQuery() {
queryParams.value.name = ''
queryParams.value.type = ''
queryParams.value.type = '5'
queryParams.value.dealType = ''
queryParams.value.startTime = ''
queryParams.value.endTime = ''
queryParams.value.dealCategory = ''
queryParams.value.dealCategory = '2'
accountTypeList.value.map(ele => {
Reflect.set(ele, 'selected', false)
})