```plaintextfeat(workbench): 实现rate页面的初始布局和功能

包括余额展示和接口列表的展示。页面使用Element UI的卡片和表格组件,通过调用API获取用户余额和接口列表数据。在创建页面时自动获取数据以显示。布局通过flexbox实现,分为左右两部分。
```
master
wxy 2024-08-29 18:36:25 +08:00
parent b4d5777881
commit 4f722fb288
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
<h3>接口列表</h3> <h3>接口列表</h3>
<el-divider></el-divider> <el-divider></el-divider>
<el-table :data="tableData"> <el-table :data="tableData">
<el-table-column> <el-table-column label="">
<template slot-scope="scope"> <template slot-scope="scope">
<span style="margin-left: 10px">{{ scope.row.connectorName }}</span> <span style="margin-left: 10px">{{ scope.row.connectorName }}</span>
</template> </template>