fix: 分期历史,股票基本信息bug修复。
This commit is contained in:
@@ -182,7 +182,7 @@
|
||||
<div class="title-con">
|
||||
<div class="title">基本信息</div>
|
||||
<div class="operate-btn-con">
|
||||
<el-button @click="handleAddDetail" icon="Plus" v-hasPermi="['invest:installmentHistory:add']">新增</el-button>
|
||||
<!-- <el-button @click="handleAddDetail" icon="Plus" v-hasPermi="['invest:installmentHistory:add']">新增</el-button> -->
|
||||
<el-button icon="Delete" @click="handleDeleteDetail" v-hasPermi="['invest:installmentHistory:remove']">删除明细</el-button>
|
||||
<el-button @click="handleUpdateInterest" icon="Expand" v-hasPermi="['invest:installmentHistory:add']">总利息汇总</el-button>
|
||||
</div>
|
||||
|
||||
@@ -130,7 +130,7 @@
|
||||
</el-dialog>
|
||||
|
||||
<!-- 添加或修改分期历史明细对话框 -->
|
||||
<el-dialog title="添加分期历史明细" v-model="openDetail" width="500px" append-to-body>
|
||||
<el-dialog :title="titleDetail" v-model="openDetail" width="500px" append-to-body>
|
||||
<el-form ref="installmentDetailRef" :model="formDetail" :rules="rulesDetail" label-width="120px">
|
||||
<el-form-item label="还款日期" prop="repaymentDate">
|
||||
<el-date-picker clearable v-model="formDetail.repaymentDate" type="date" value-format="YYYY-MM-DD" placeholder="请选择还款日期"> </el-date-picker>
|
||||
@@ -171,7 +171,7 @@
|
||||
<div class="title-con">
|
||||
<div class="title">基本信息</div>
|
||||
<div class="operate-btn-con">
|
||||
<el-button @click="handleAddDetail" icon="Plus" v-hasPermi="['invest:installmentHistory:add']">新增</el-button>
|
||||
<!-- <el-button @click="handleAddDetail" icon="Plus" v-hasPermi="['invest:installmentHistory:add']">新增</el-button> -->
|
||||
<el-button @click="handleUpdateInterest" icon="Expand" v-hasPermi="['invest:installmentHistory:add']">总利息汇总</el-button>
|
||||
</div>
|
||||
</div>
|
||||
@@ -453,7 +453,7 @@ function handleAdd() {
|
||||
/** 新增按钮操作 */
|
||||
function handleAddDetail() {
|
||||
resetDetail()
|
||||
titleDetail.value = '添加分期历史明细'
|
||||
titleDetail.value = '添加贷款明细'
|
||||
openDetail.value = true
|
||||
}
|
||||
|
||||
@@ -506,7 +506,7 @@ function handleUpdateDetail(row) {
|
||||
getInstallmentDetail(row.id).then((response) => {
|
||||
formDetail.value = response.data
|
||||
openDetail.value = true
|
||||
titleDetail.value = '修改分期历史明细'
|
||||
titleDetail.value = '修改贷款明细'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -31,14 +31,14 @@
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="名称" align="center" prop="name" />
|
||||
<el-table-column label="账号" align="center" prop="code" />
|
||||
<el-table-column label="账户状态" align="center" prop="status">
|
||||
<el-table-column label="账户状态" align="center" prop="status" width="120">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="account_status" :value="scope.row.status" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column label="手续费" align="center" prop="commission" /> -->
|
||||
<el-table-column label="佣金费率" align="center" prop="commission" width="120" />
|
||||
<el-table-column label="关联储蓄卡" align="center" prop="bankNameCode" />
|
||||
<el-table-column label="开户日期" align="center" prop="activationDate" width="180">
|
||||
<el-table-column label="开户日期" align="center" prop="activationDate" width="120">
|
||||
<template #default="scope">
|
||||
<span>{{ parseTime(scope.row.activationDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
@@ -88,7 +88,7 @@
|
||||
<el-form-item label="开户日期" prop="activationDate">
|
||||
<el-date-picker clearable v-model="form.activationDate" type="date" value-format="YYYY-MM-DD" placeholder="请选择开户日期"> </el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="手续费" prop="commission">
|
||||
<el-form-item label="佣金费率" prop="commission">
|
||||
<el-input v-model="form.commission" placeholder="请输入手续费" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" style="width: 812px" prop="remark">
|
||||
|
||||
Reference in New Issue
Block a user