fix: 前端功能完善优化相关字段。

This commit is contained in:
tianyongbao
2024-07-31 17:30:01 +08:00
parent 4e8762aaaf
commit dfbf1005dc
29 changed files with 112 additions and 112 deletions

View File

@@ -28,7 +28,7 @@
<div class="operate-btn-con">
<el-button @click="handleAdd" icon="Plus" v-hasPermi="['invest:creditCardBill:add']">新增</el-button>
<el-button :disabled="multiple" icon="Delete" @click="handleDelete" v-hasPermi="['invest:creditCardBill:remove']">删除</el-button>
<el-button @click="handleExport" icon="Download" v-hasPermi="['invest:creditCardBill:export']">导出</el-button>
<!-- <el-button @click="handleExport" icon="Download" v-hasPermi="['invest:creditCardBill:export']">导出</el-button> -->
</div>
</div>
<div class="content-con" v-loading="loading">
@@ -63,7 +63,7 @@
</div>
<!-- 添加或修改信用卡账单对话框 -->
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
<el-form ref="creditCardBillRef" :model="form" :rules="rules" label-width="120px">
<el-form ref="creditCardBillRef" :model="form" :rules="rules" label-width="100px">
<el-form-item label="信用卡" prop="creditCardId">
<el-select v-model="form.creditCardId" placeholder="请选择信用卡" clearable>
<el-option v-for="creditCard in creditCardList" :key="creditCard.id" :label="creditCard.nameCode" :value="creditCard.id" />