|
|
|
|
@ -55,11 +55,7 @@
|
|
|
|
|
<el-tag v-if="scope.row.fee_type==1" class="ml-2" type="info">收费</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="date" label="预约时间" >
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<span v-if="scope.row.date"> {{scope.row.date.substring(0,10)}} (<span style="color:#1cb9d1">{{scope.row.time}}</span>)</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="created_at" label="创建时间" />
|
|
|
|
|
<!-- <el-table-column label="操作" width="100">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
|
|
|
|
@ -103,11 +99,11 @@
|
|
|
|
|
})
|
|
|
|
|
const PageSizeChange = (e) => { // 修改每页数量
|
|
|
|
|
pageSize.value = e
|
|
|
|
|
GetUserList()
|
|
|
|
|
GetList()
|
|
|
|
|
}
|
|
|
|
|
const PageCurrentChange = (e) => { //切换页码
|
|
|
|
|
currentPage.value = e
|
|
|
|
|
GetUserList()
|
|
|
|
|
GetList()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//获取列表
|
|
|
|
|
|