天府星2.0搞定

This commit is contained in:
liuye
2022-11-04 16:18:10 +08:00
parent 8fa66aeed5
commit 85ae4d8036
4 changed files with 288 additions and 19 deletions

View File

@@ -4,16 +4,16 @@
<template slot="title">
<ai-title title="等级配置" :isShowBottomBorder="false" :isShowArea="false"></ai-title>
</template>
<template slot="content">
<template #content>
<ai-table :tableData="tableData" :colConfigs="colConfigs" :total="page.total" :current.sync="page.current"
:size.sync="page.size" @getList="getList" class="ai-table">
<el-table-column slot="beginIntegral" label="积分范围" align="center">
<template slot-scope="{ row}">
<template slot-scope="{row}">
<span>{{row.beginIntegral}}-{{row.endIntegral}}</span>
</template>
</el-table-column>
<el-table-column slot="option" label="操作" align="center" width="250">
<template slot-scope="{ row}">
<template slot-scope="{row}">
<el-button type="text" @click="add(row)">编辑</el-button>
</template>
</el-table-column>