fix: 前端功能优化完善相关字段。
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
<div class="item" v-hasPermi="['invest:onlineLend']">
|
||||
<img src="./assets/one.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">未结清网贷本息</div>
|
||||
<div class="title">未结清贷款本息</div>
|
||||
<div class="num">{{ unClearedOnlineDebt }}<span>元</span></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -327,14 +327,14 @@
|
||||
<div class="item" >
|
||||
<img src="./assets/one.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">网贷账户</div>
|
||||
<div class="title">贷款账户</div>
|
||||
<div class="num">{{ onlineLendCount }}<span>个</span></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<img src="./assets/ticketSum.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">未结清网贷本息</div>
|
||||
<div class="title">未结清贷款本息</div>
|
||||
<div class="num">{{ unClearedOnlineDebt }}<span>元</span></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -382,7 +382,7 @@
|
||||
<div class="item">
|
||||
<img src="./assets/ticketSum.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">未结清网贷</div>
|
||||
<div class="title">未结清贷款</div>
|
||||
<div class="num">{{ unclearedOnlineDebtCount }}<span>笔</span></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -392,14 +392,14 @@
|
||||
<div class="item">
|
||||
<img src="./assets/one.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">未结清网贷本金</div>
|
||||
<div class="title">未结清贷款本金</div>
|
||||
<div class="num">{{ unClearedOnlineDebtPrinciple }}<span>元</span></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<img src="./assets/ticketSum.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">未结清网贷利息</div>
|
||||
<div class="title">未结清贷款利息</div>
|
||||
<div class="num">{{ unClearedOnlineDebtInterest }}<span>元</span></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -408,14 +408,14 @@
|
||||
<div class="item">
|
||||
<img src="./assets/one.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">已结清网贷</div>
|
||||
<div class="title">已结清贷款</div>
|
||||
<div class="num">{{ clearedOnlineDebtCount }}<span>笔</span></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<img src="./assets/ticketSum.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">已结清网贷本金</div>
|
||||
<div class="title">已结清贷款本金</div>
|
||||
<div class="num">{{ clearedOnlineDebtPrinciple }}<span>元</span></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -424,7 +424,7 @@
|
||||
<div class="item">
|
||||
<img src="./assets/one.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">已结清网贷利息</div>
|
||||
<div class="title">已结清贷款利息</div>
|
||||
<div class="num">{{ clearedOnlineDebtInterest }}<span>元</span></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -734,18 +734,18 @@ const debitTotalBalance = ref(0) //储蓄账户余额
|
||||
//借贷账户信息
|
||||
const peopleLendHistory = ref(0) //人情借贷余额
|
||||
const peopleLendCount = ref(0) //人情账户
|
||||
const onlineLendCount = ref(0) //网贷账户
|
||||
const unclearedOnlineDebtCount = ref(0) //未结清网贷账户数
|
||||
const unClearedOnlineDebt = ref(0) //未结清网贷本息
|
||||
const unClearedOnlineDebtPrinciple = ref(0) //未结清网贷本金
|
||||
const unClearedOnlineDebtInterest = ref(0) //未结清网贷利息
|
||||
const clearedOnlineDebtCount = ref(0) //已结清网贷账户数
|
||||
const clearedOnlineDebt = ref(0) //已结清网贷本息
|
||||
const clearedOnlineDebtPrinciple = ref(0) //已结清网贷本金
|
||||
const clearedOnlineDebtInterest = ref(0) //已结清网贷利息
|
||||
const dueOnlineDebt = ref(0) //本月应还网贷
|
||||
const repaidOnlineDebt = ref(0) //本月已还网贷
|
||||
const leftOnlineDebt = ref(0) //本月剩余应还网贷
|
||||
const onlineLendCount = ref(0) //贷款账户
|
||||
const unclearedOnlineDebtCount = ref(0) //未结清贷款账户数
|
||||
const unClearedOnlineDebt = ref(0) //未结清贷款本息
|
||||
const unClearedOnlineDebtPrinciple = ref(0) //未结清贷款本金
|
||||
const unClearedOnlineDebtInterest = ref(0) //未结清贷款利息
|
||||
const clearedOnlineDebtCount = ref(0) //已结清贷款账户数
|
||||
const clearedOnlineDebt = ref(0) //已结清贷款本息
|
||||
const clearedOnlineDebtPrinciple = ref(0) //已结清贷款本金
|
||||
const clearedOnlineDebtInterest = ref(0) //已结清贷款利息
|
||||
const dueOnlineDebt = ref(0) //本月应还贷款
|
||||
const repaidOnlineDebt = ref(0) //本月已还贷款
|
||||
const leftOnlineDebt = ref(0) //本月剩余应还贷款
|
||||
|
||||
//信用卡信息
|
||||
const creditInstallmentHistory = ref(0)
|
||||
|
||||
@@ -132,7 +132,7 @@
|
||||
<div class="item">
|
||||
<img src="@/static/images/ticketSum.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">网贷利息</div>
|
||||
<div class="title">贷款利息</div>
|
||||
<div class="num">{{ account.onLineInterest }}<span>元</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<u-sticky offsetTop="8rpx" customNavHeight="8rpx">
|
||||
|
||||
<view class="search-view">
|
||||
<u-input v-model="queryParams.accountName" border="false" type="select" @click="handleAccount" placeholder="请选择网贷机构" suffixIcon="search"
|
||||
<u-input v-model="queryParams.accountName" border="false" type="select" @click="handleAccount" placeholder="请选择贷款机构" suffixIcon="search"
|
||||
suffixIconStyle="color: #909399" class="search-input">
|
||||
</u-input>
|
||||
</view>
|
||||
@@ -70,7 +70,7 @@
|
||||
<div class="item">
|
||||
<img src="@/static/images/one.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">未结清网贷</div>
|
||||
<div class="title">未结清贷款</div>
|
||||
<div class="num">{{ historyObj.unclearedDetailCount }}<span>笔</span></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -270,7 +270,7 @@ const end = `${endDate.getFullYear()}-${(endDate.getMonth() + 1).toString().padS
|
||||
function handleAccount() {
|
||||
if (accountList.value[0].length === 0) {
|
||||
proxy.$refs['uToast'].show({
|
||||
message: '网贷机构为空 ', type: 'warning'
|
||||
message: '贷款机构为空 ', type: 'warning'
|
||||
})
|
||||
} else {
|
||||
showAccount.value = true
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<u-sticky offsetTop="8rpx" customNavHeight="8rpx">
|
||||
|
||||
<view class="search-view">
|
||||
<u-input v-model="queryParams.accountName" border="false" type="select" @click="handleAccount" placeholder="请选择网贷机构" suffixIcon="search"
|
||||
<u-input v-model="queryParams.accountName" border="false" type="select" @click="handleAccount" placeholder="请选择贷款机构" suffixIcon="search"
|
||||
suffixIconStyle="color: #909399" class="search-input">
|
||||
</u-input>
|
||||
</view>
|
||||
@@ -70,7 +70,7 @@
|
||||
<div class="item">
|
||||
<img src="@/static/images/one.png" alt="" />
|
||||
<div class="info-sum">
|
||||
<div class="title">已结清网贷</div>
|
||||
<div class="title">已结清贷款</div>
|
||||
<div class="num">{{ historyObj.clearedCount }}<span>笔</span></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -254,7 +254,7 @@ const start = dayjs(end).add(-239, 'months')
|
||||
function handleAccount() {
|
||||
if (accountList.value[0].length === 0) {
|
||||
proxy.$refs['uToast'].show({
|
||||
message: '网贷机构为空 ', type: 'warning'
|
||||
message: '贷款机构为空 ', type: 'warning'
|
||||
})
|
||||
} else {
|
||||
showAccount.value = true
|
||||
|
||||
@@ -48,30 +48,30 @@
|
||||
{ path: '/pages/statistic/accounts/accountsBalance/index', text: '记账账户统计', icon: 'staff-filled' , permission: 'invest:accountsBalance:list' },
|
||||
{ path: '/pages/statistic/accounts/dailyExpensesAnalysis/index', text: '日常支出统计', icon: 'wallet' , permission: 'invest:dailyExpensesAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/posAnalysis/index', text: 'POS机刷卡统计', icon: 'shop-filled' , permission: 'invest:posAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/creditCardDealAnalysis/index', text: '信用卡收支统计', icon: 'wallet' , permission: 'invest:creditCard' },
|
||||
{ path: '/pages/statistic/bill/creditBillAnalysis/index', text: '信用卡账单统计', icon: 'map', permission: 'invest:creditAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/creditCardDealAnalysis/index', text: '信用卡收支统计', icon: 'wallet' , permission: 'invest:creditCard' },
|
||||
{ path: '/pages/statistic/accounts/accountDealAnalysis/index', text: '账户收支统计', icon: 'person', permission: 'invest:accountDealAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/investDealAnalysis/index', text: '投资收益统计', icon: 'arrow-down', permission: 'invest:investDealAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/onlineLendAnalysis/index', text: '网贷待还统计', icon: 'cloud-upload', permission: 'invest:onlineLendAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/onlineLendAnalysis/index', text: '贷款待还统计', icon: 'cloud-upload', permission: 'invest:onlineLendAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/creditInstallmentAnalysis/index', text: '信用卡分期待还', icon: 'map-filled', permission: 'invest:creditInstallment:list' },
|
||||
{ path: '/pages/statistic/bill/creditRecordAnalysis/index', text: '征信查询统计', icon: 'search', permission: 'invest:creditRecordAnalysis:list' }
|
||||
])
|
||||
const billGridList=ref([
|
||||
// { path: '/pages/page1/page1', text: '账户总览', icon: 'person-filled', permission: 'invest:accountAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/investAnalysis/index', text: '收益统计分析', icon: 'arrow-down', permission: 'invest:investAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/futuresAnalysis/index', text: '期货统计分析', icon: 'settings', permission: 'invest:futuresAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/stocksAnalysis/index', text: '股票统计分析', icon: 'left', permission: 'invest:stocksAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/onlineLendAnalysis/index', text: '网贷待还统计', icon: 'cloud-upload', permission: 'invest:onlineLendAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/onlineLendSettledAnalysis/index', text: '网贷已还统计', icon: 'download', permission: 'invest:onlineLendSettledAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/creditBillAnalysis/index', text: '信用卡账单统计', icon: 'map', permission: 'invest:creditAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/creditInstallmentAnalysis/index', text: '信用卡分期待还', icon: 'map-filled', permission: 'invest:creditInstallment:list' },
|
||||
{ path: '/pages/statistic/bill/creditInstallmentSettledAnalysis/index', text: '信用卡分期已还', icon: 'map-pin-ellipse', permission: 'invest:creditInstallmentSettledAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/onlineLendAnalysis/index', text: '贷款待还统计', icon: 'cloud-upload', permission: 'invest:onlineLendAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/onlineLendSettledAnalysis/index', text: '贷款已还统计', icon: 'download', permission: 'invest:onlineLendSettledAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/investAnalysis/index', text: '收益统计分析', icon: 'arrow-down', permission: 'invest:investAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/futuresAnalysis/index', text: '期货统计分析', icon: 'settings', permission: 'invest:futuresAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/stocksAnalysis/index', text: '股票统计分析', icon: 'left', permission: 'invest:stocksAnalysis:list' },
|
||||
{ path: '/pages/statistic/bill/creditRecordAnalysis/index', text: '征信查询统计', icon: 'search', permission: 'invest:creditRecordAnalysis:list' }
|
||||
])
|
||||
const accountGridList=ref([
|
||||
{ path: '/pages/statistic/accounts/accountsBalance/index', text: '记账账户统计', icon: 'staff-filled' , permission: 'invest:accountsBalance:list' },
|
||||
{ path: '/pages/statistic/accounts/posAnalysis/index', text: 'POS机刷卡统计', icon: 'shop-filled' , permission: 'invest:posAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/debitDealAnalysis/index', text: '储蓄卡收支统计', icon: 'wallet-filled', permission: 'invest:accountDealRecord:list' },
|
||||
{ path: '/pages/statistic/accounts/debitDealAnalysis/index', text: '储蓄账户统计', icon: 'wallet-filled', permission: 'invest:accountDealRecord:list' },
|
||||
{ path: '/pages/statistic/accounts/creditCardDealAnalysis/index', text: '信用卡收支统计', icon: 'wallet' , permission: 'invest:creditCard' },
|
||||
{ path: '/pages/statistic/accounts/investDealAnalysis/index', text: '投资收益统计', icon: 'arrow-down', permission: 'invest:investDealAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/accountDealAnalysis/index', text: '账户收支统计', icon: 'person', permission: 'invest:accountDealAnalysis:list' },
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
</view>
|
||||
<view class="filter-title">账户状态</view>
|
||||
<view class="state-list">
|
||||
<view v-for="item in accountState" :key="item.id" class="state-item"
|
||||
<view v-for="item in accountStatus" :key="item.id" class="state-item"
|
||||
:class="item.selected ? 'active' : ''" @click="selectStatus(item)">{{ item.dictLabel }}</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -46,6 +46,10 @@
|
||||
<text class="row-label">储蓄账户类型:</text>
|
||||
<text class="row-value">{{ dictStr(item.debitType, debitType) }}</text>
|
||||
</view>
|
||||
<view class="item-row" >
|
||||
<text class="row-label">账户状态:</text>
|
||||
<text class="row-value">{{ dictStr(item.status, accountStatus) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</u-list-item>
|
||||
<view>
|
||||
@@ -71,7 +75,7 @@ const isShow = ref(false)
|
||||
const status = ref('loadmore')
|
||||
const accountType = ref([])
|
||||
const debitType = ref([])
|
||||
const accountState= ref([])
|
||||
const accountStatus= ref([])
|
||||
const showAccount = ref(false)
|
||||
const accountList = ref([])
|
||||
const settingPickShow = ref(false)
|
||||
@@ -135,8 +139,8 @@ function getDict() {
|
||||
})
|
||||
|
||||
// 类型
|
||||
getDicts('account_state').then(res => {
|
||||
accountState.value = res.data
|
||||
getDicts('account_status').then(res => {
|
||||
accountStatus.value = res.data
|
||||
})
|
||||
// 类型
|
||||
getDicts('debit_type').then(res => {
|
||||
@@ -173,7 +177,7 @@ function selectType(item) {
|
||||
}
|
||||
function selectStatus(item) {
|
||||
queryParams.value.state = item.dictValue
|
||||
accountState.value.map(ele => {
|
||||
accountStatus.value.map(ele => {
|
||||
if (ele.dictValue == item.dictValue) {
|
||||
ele.selected = true
|
||||
Reflect.set(ele, 'selected', true)
|
||||
@@ -221,7 +225,7 @@ function selectType(item) {
|
||||
accountType.value.map(ele => {
|
||||
Reflect.set(ele, 'selected', false)
|
||||
})
|
||||
accountState.value.map(ele => {
|
||||
accountStatus.value.map(ele => {
|
||||
Reflect.set(ele, 'selected', false)
|
||||
})
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<u-cell title="账单日:" v-if="detailInfo.type=='信用卡账户'" titleStyle="font-weight:bolder" center :value="detailInfo.billDateName"> </u-cell>
|
||||
<u-cell title="还款日:" v-if="detailInfo.type=='信用卡账户'" titleStyle="font-weight:bolder" center :value="detailInfo.payDateName"> </u-cell>
|
||||
<u-cell title="储蓄卡类型:" v-if="detailInfo.type=='储蓄卡账户'" titleStyle="font-weight:bolder" center :value="detailInfo.debitType"> </u-cell>
|
||||
<u-cell title="账户状态:" titleStyle="font-weight:bolder" center :value="detailInfo.state"> </u-cell>
|
||||
<u-cell title="账户状态:" titleStyle="font-weight:bolder" center :value="detailInfo.status"> </u-cell>
|
||||
<u-cell title="备注:" titleStyle="font-weight:bolder" center :value="detailInfo.remark"> </u-cell>
|
||||
</u-cell-group>
|
||||
</view>
|
||||
@@ -48,8 +48,8 @@ onLoad((option) => {
|
||||
detailInfo.value.type=dictStr(detailInfo.value.type, result.data)
|
||||
})
|
||||
// 类型
|
||||
getDicts('account_state').then(result => {
|
||||
detailInfo.value.state=dictStr(detailInfo.value.state, result.data)
|
||||
getDicts('account_status').then(result => {
|
||||
detailInfo.value.status=dictStr(detailInfo.value.status, result.data)
|
||||
})
|
||||
// 类型
|
||||
getDicts('debit_type').then(result => {
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
</view>
|
||||
<view class="filter-title">账户状态</view>
|
||||
<view class="state-list">
|
||||
<view v-for="item in accountState" :key="item.id" class="state-item"
|
||||
<view v-for="item in accountStatus" :key="item.id" class="state-item"
|
||||
:class="item.selected ? 'active' : ''" @click="selectStatus(item)">{{ item.dictLabel }}</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -73,7 +73,7 @@
|
||||
</view>
|
||||
<view class="item-row">
|
||||
<text class="row-label">账户状态:</text>
|
||||
<text class="row-value">{{ dictStr(item.state, accountState) }}</text>
|
||||
<text class="row-value">{{ dictStr(item.status, accountStatus) }}</text>
|
||||
</view>
|
||||
<view class="item-row">
|
||||
<text class="row-label">备注:</text>
|
||||
@@ -110,7 +110,7 @@ const isShow = ref(false)
|
||||
const status = ref('loadmore')
|
||||
const accountType = ref([])
|
||||
const debitType = ref([])
|
||||
const accountState= ref([])
|
||||
const accountStatus= ref([])
|
||||
const showAccount = ref(false)
|
||||
const accountList = ref([])
|
||||
const settingPickShow = ref(false)
|
||||
@@ -174,8 +174,8 @@ function getDict() {
|
||||
})
|
||||
|
||||
// 类型
|
||||
getDicts('account_state').then(res => {
|
||||
accountState.value = res.data
|
||||
getDicts('account_status').then(res => {
|
||||
accountStatus.value = res.data
|
||||
})
|
||||
// 类型
|
||||
getDicts('debit_type').then(res => {
|
||||
@@ -211,8 +211,8 @@ function selectType(item) {
|
||||
})
|
||||
}
|
||||
function selectStatus(item) {
|
||||
queryParams.value.state = item.dictValue
|
||||
accountState.value.map(ele => {
|
||||
queryParams.value.status = item.dictValue
|
||||
accountStatus.value.map(ele => {
|
||||
if (ele.dictValue == item.dictValue) {
|
||||
ele.selected = true
|
||||
Reflect.set(ele, 'selected', true)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<u-navbar
|
||||
leftIconSize="40rpx"
|
||||
leftIconColor="#333333"
|
||||
title="网贷账单"
|
||||
title="贷款账单"
|
||||
>
|
||||
</u-navbar>
|
||||
<view class="section">
|
||||
@@ -11,8 +11,8 @@
|
||||
<view class="form-view">
|
||||
<u--form labelPosition="left" :model="form" :rules="rules" ref="uForm" label-width="auto"
|
||||
:labelStyle="{ color: '#333333', fontSize: '30rpx' }">
|
||||
<u-form-item label="网贷机构" prop="onlineLendName" required @click="handleOnlineLend">
|
||||
<u--input v-model="form.onlineLendName" disabled disabledColor="#ffffff" placeholder="请选择网贷机构"
|
||||
<u-form-item label="贷款机构" prop="onlineLendName" required @click="handleOnlineLend">
|
||||
<u--input v-model="form.onlineLendName" disabled disabledColor="#ffffff" placeholder="请选择贷款机构"
|
||||
inputAlign="right" border="none"></u--input>
|
||||
<u-icon slot="right" name="arrow-down"></u-icon>
|
||||
</u-form-item>
|
||||
@@ -104,7 +104,7 @@ const datePickShow = ref(false)
|
||||
const closeDatePickShow = ref(false)
|
||||
const showTeam = ref(false)
|
||||
const showOnlineLend = ref(false)
|
||||
const title = ref("网贷账单")
|
||||
const title = ref("贷款账单")
|
||||
const bankCardLendList = ref([])
|
||||
const settleStateList = ref([])
|
||||
const data = reactive({
|
||||
@@ -139,7 +139,7 @@ const data = reactive({
|
||||
pageSize: 1000
|
||||
},
|
||||
rules: {
|
||||
onlineLendName: [{ type: 'string', required: true, message: '网贷机构不能为空', trigger: ['change', 'blur'] }],
|
||||
onlineLendName: [{ type: 'string', required: true, message: '贷款机构不能为空', trigger: ['change', 'blur'] }],
|
||||
billDate: [{ type: 'string', required: true, message: '借款日期不能为空', trigger: ['change', 'blur'] }],
|
||||
settleStateName: [{ type: 'string', required: true, message: '结清状态不能为空', trigger: ['change', 'blur'] }],
|
||||
installmentAmount: [{ type: 'number', required: true, message: '借款金额不能为空', trigger: ['change', 'blur'] }],
|
||||
@@ -154,9 +154,9 @@ const { form, queryBankCardLendParams, rules} = toRefs(data)
|
||||
onLoad((option) => {
|
||||
form.value.id = option.id
|
||||
if(form.value.id!=null){
|
||||
title.value="网贷账单-修改"
|
||||
title.value="贷款账单-修改"
|
||||
}else{
|
||||
title.value="网贷账单-新增"
|
||||
title.value="贷款账单-新增"
|
||||
}
|
||||
getDict()
|
||||
})
|
||||
@@ -213,7 +213,7 @@ onLoad((option) => {
|
||||
function handleOnlineLend() {
|
||||
if (bankCardLendList.value[0].length === 0) {
|
||||
proxy.$refs['uToast'].show({
|
||||
message: '网贷机构为空 ', type: 'warning'
|
||||
message: '贷款机构为空 ', type: 'warning'
|
||||
})
|
||||
} else {
|
||||
showOnlineLend.value = true
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<u-navbar
|
||||
leftIconSize="40rpx"
|
||||
leftIconColor="#333333"
|
||||
title="网贷账单还款明细"
|
||||
title="贷款账单还款明细"
|
||||
>
|
||||
</u-navbar>
|
||||
<view class="section">
|
||||
@@ -75,7 +75,7 @@ import {
|
||||
import {reactive ,toRefs,ref,computed ,getCurrentInstance }from "vue";
|
||||
const datePickShow = ref(false)
|
||||
const showTeam = ref(false)
|
||||
const title = ref("网贷账单还款明细")
|
||||
const title = ref("贷款账单还款明细")
|
||||
const postingStateList = ref([])
|
||||
const data = reactive({
|
||||
form: {},
|
||||
@@ -94,9 +94,9 @@ onLoad((option) => {
|
||||
form.value.installmentHistoryId = option.installmentHistoryId
|
||||
form.value.name = option.name
|
||||
if(form.value.id!=null){
|
||||
title.value="网贷账单还款明细-修改"
|
||||
title.value="贷款账单还款明细-修改"
|
||||
}else{
|
||||
title.value="网贷账单还款明细-新增"
|
||||
title.value="贷款账单还款明细-新增"
|
||||
}
|
||||
getDict()
|
||||
})
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<view class="container">
|
||||
<u-sticky offsetTop="8rpx" customNavHeight="8rpx">
|
||||
<view class="search-view">
|
||||
<u-input v-model="queryParams.onlineLendName" border="false" type="select" @click="handleOnlineLend" placeholder="请选择网贷机构" suffixIcon="search"
|
||||
<u-input v-model="queryParams.onlineLendName" border="false" type="select" @click="handleOnlineLend" placeholder="请选择贷款机构" suffixIcon="search"
|
||||
suffixIconStyle="color: #909399" class="search-input">
|
||||
</u-input>
|
||||
<u-icon :name="filterPanel ? 'arrow-up-fill' : 'arrow-down-fill'" color="#666666" size="28" label="筛选"
|
||||
@@ -215,7 +215,7 @@ function selectStatus(item) {
|
||||
function handleOnlineLend() {
|
||||
if (bankCardLendList.value[0].length === 0) {
|
||||
proxy.$refs['uToast'].show({
|
||||
message: '网贷机构为空 ', type: 'warning'
|
||||
message: '贷款机构为空 ', type: 'warning'
|
||||
})
|
||||
} else {
|
||||
showOnlineLend.value = true
|
||||
|
||||
@@ -82,25 +82,25 @@ import auth from "@/plugins/auth"; // 建议使用auth进行鉴权操作
|
||||
{ path: '/pages/work/accounts/debitTransferRecord/list', text: '储蓄账户记账', icon: 'tune', permission: 'invest:debitCard' },
|
||||
{ path: '/pages/work/accounts/accounts/commonList', text: '记账账户', icon: 'staff', permission: 'invest:accounts:list' },
|
||||
{ path: '/pages/work/bill/creditCardBill/list', text: '信用卡账单', icon: 'list', permission: 'invest:creditCardBill:list' },
|
||||
{ path: '/pages/work/bill/onlineLendHistory/list', text: '网贷账单', icon: 'settings', permission: 'invest:onlineLend' },
|
||||
{ path: '/pages/work/bill/onlineLendHistory/list', text: '贷款账单', icon: 'settings', permission: 'invest:onlineLend' },
|
||||
{ path: '/pages/work/bill/creditInstallmentHistory/list', text: '信用卡分期账单', icon: 'bars', permission: 'invest:creditCard' },
|
||||
{ path: '/pages/work/bill/creditQueryRecord/list', text: '征信查询记录', icon: 'search', permission: 'invest:creditQueryRecord:list' }
|
||||
])
|
||||
const baseGridList=ref([
|
||||
{ path: '/pages/work/base/posmachine/list', text: 'pos机管理', icon: 'shop-filled', permission: 'invest:posmachine:list' },
|
||||
{ path: '/pages/work/base/debitCard/list', text: '储蓄账户管理', icon: 'wallet-filled', permission: 'invest:debitCard' },
|
||||
{ path: '/pages/work/base/creditCard/list', text: '信用卡管理', icon: 'wallet', permission: 'invest:creditCard' },
|
||||
{ path: '/pages/work/base/debitCard/list', text: '储蓄卡管理', icon: 'wallet-filled', permission: 'invest:debitCard' },
|
||||
{ path: '/pages/work/base/lend/list', text: '借贷账户管理', icon: 'upload', permission: 'invest:onlineLend' },
|
||||
{ path: '/pages/work/base/posmachine/list', text: 'pos机管理', icon: 'shop-filled', permission: 'invest:posmachine:list' },
|
||||
{ path: '/pages/work/base/stocks/list', text: '股票账户管理', icon: 'calendar', permission: 'invest:futureStocks:list' },
|
||||
{ path: '/pages/work/base/futures/list', text: '期货账户管理', icon: 'paperplane-filled', permission: 'invest:futureStocks:list' }
|
||||
])
|
||||
const billGridList=ref([
|
||||
{ path: '/pages/work/bill/creditCardBill/list', text: '信用卡账单', icon: 'list', permission: 'invest:creditCardBill:list' },
|
||||
{ path: '/pages/work/bill/creditInstallmentHistory/list', text: '信用卡分期账单', icon: 'bars', permission: 'invest:creditCard' },
|
||||
{ path: '/pages/work/bill/onlineLendHistory/list', text: '贷款账单', icon: 'settings', permission: 'invest:onlineLend' },
|
||||
{ path: '/pages/work/bill/peopleLendHistory/list', text: '人情账单', icon: 'staff-filled', permission: 'invest:onlineLend' },
|
||||
{ path: '/pages/work/bill/futuresBill/list', text: '期货账单', icon: 'map', permission: 'invest:futureStocksBill:list' },
|
||||
{ path: '/pages/work/bill/stocksBill/list', text: '股票账单', icon: 'paperplane', permission: 'invest:futureStocksBill:list' },
|
||||
{ path: '/pages/work/bill/onlineLendHistory/list', text: '网贷账单', icon: 'settings', permission: 'invest:onlineLend' },
|
||||
{ path: '/pages/work/bill/creditCardBill/list', text: '信用卡账单', icon: 'list', permission: 'invest:creditCardBill:list' },
|
||||
{ path: '/pages/work/bill/creditInstallmentHistory/list', text: '信用卡分期账单', icon: 'bars', permission: 'invest:creditCard' },
|
||||
{ path: '/pages/work/bill/peopleLendHistory/list', text: '人情账单', icon: 'staff-filled', permission: 'invest:onlineLend' },
|
||||
{ path: '/pages/work/bill/creditQueryRecord/list', text: '征信查询记录', icon: 'search', permission: 'invest:creditQueryRecord:list' }
|
||||
])
|
||||
const accountGridList=ref([
|
||||
|
||||
Reference in New Issue
Block a user