活动bug
This commit is contained in:
parent
8dd38e5a93
commit
27b81b2096
@ -38,7 +38,7 @@
|
||||
<!-- <el-table-column type="selection" width="55" align="center" />-->
|
||||
<el-table-column v-if="true" label="ID" align="center" prop="id" fixed width="180px" />
|
||||
<el-table-column label="活动名称" align="center" fixed prop="activityName" width="180px" />
|
||||
<el-table-column label="活动描述" align="center" fixed prop="activityDescription" width="180px" show-overflow-tooltip />
|
||||
<el-table-column label="活动描述" align="center" prop="activityDescription" width="180px" show-overflow-tooltip />
|
||||
<el-table-column label="活动图片" align="center" prop="" />
|
||||
<el-table-column label="活动人数" align="center" prop="activityUserCount" />
|
||||
<el-table-column label="报名人数" align="center" prop="registrationCount">
|
||||
@ -78,9 +78,7 @@
|
||||
<el-tag v-if="scope.row.status == 3" type="primary">已发布</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="发布时间" align="center" prop="publishTime" />
|
||||
<el-table-column label="发布人员" align="center" prop="publishName" />
|
||||
<el-table-column label="操作人员" align="center" prop="updateName" />
|
||||
<el-table-column label="操作时间" align="center" prop="updateTime" width="180px" />
|
||||
<el-table-column label="操作" align="center" width="150px" fixed="right" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
|
@ -28,17 +28,11 @@
|
||||
<el-col :span="1.5">
|
||||
<el-button v-hasPermi="['manage:hotel:add']" type="primary" plain icon="Plus" @click="handleAdd">新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button v-hasPermi="['manage:hotel:remove']" type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()"
|
||||
>删除</el-button
|
||||
>
|
||||
</el-col>
|
||||
<right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
|
||||
</el-row>
|
||||
</template>
|
||||
|
||||
<el-table v-loading="loading" :data="hotelList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table v-loading="loading" :data="hotelList">
|
||||
<el-table-column v-if="true" label="ID" align="center" prop="id" />
|
||||
<el-table-column label="住宿商家名称" align="center" prop="name" />
|
||||
<el-table-column label="商家图片" align="center" prop="imageUrl" />
|
||||
|
Loading…
Reference in New Issue
Block a user