BUG 27748

This commit is contained in:
aixianling
2022-03-01 10:24:16 +08:00
parent 04b2f02a13
commit c0a7716606
2 changed files with 14 additions and 6 deletions

View File

@@ -31,7 +31,7 @@
</el-table-column>
<el-table-column slot="interestRateMin" label="参考利率" align="center">
<template slot-scope="{row}">
{{row.interestRateMin}}%~{{row.interestRateMax}}%
{{ row.interestRateMin }}%~{{ row.interestRateMax }}%
</template>
</el-table-column>
<el-table-column slot="options" label="操作" fixed="right" align="center" width="200px">
@@ -120,13 +120,12 @@ export default {
this.$message.success("修改成功!")
this.getTableData()
} else {
}
})
}
},
created() {
this.dict.load("enterpriseName")
this.getTableData()
}
}
@@ -134,5 +133,6 @@ export default {
<style lang="scss" scoped>
.productList {
height: 100%;
}
</style>