Browse Source

11.29

Hongxilin
donghaolin 6 months ago
parent
commit
1c02af32bd
  1. 12
      vue/gold-system/src/views/managerecharge/rate.vue

12
vue/gold-system/src/views/managerecharge/rate.vue

@ -9,13 +9,15 @@
const rateList = ref([])
//
async function handleSearch(){
const user = await axios({
URL: 'http://192.168.8.174:10200/search',
const response = await axios({
URL: 'http://192.168.8.93:10010/rates/search',
method: 'post',
data: {}
data: { pageNum:1,pageSize:2}
})
}
rateList.value = response.data.data.list
};
handleSearch();
const rateAdd = ref({})
//
const add = () => {
@ -119,7 +121,7 @@ const user = await axios({
</div>
<!-- 分页 -->
<div class="pagination" >
<el-pagination background layout="prev, pager, next" :total="rateList.total" />
<el-pagination background layout="prev, pager, next" :total="100" />
</div>
</el-card>

Loading…
Cancel
Save