Commit 48707f17 authored by Mac's avatar Mac

1

parent f51b09fb
...@@ -130,7 +130,7 @@ ...@@ -130,7 +130,7 @@
</div> </div>
</div> </div>
<div class="page-content"> <div class="page-content">
<q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat class="sticky-tow-column-table" <q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat class="sticky-tow-column-table sticky-right-column-table"
separator="none" :data="data" :columns="columns" row-key="name"> separator="none" :data="data" :columns="columns" row-key="name">
<template v-slot:top="props"> <template v-slot:top="props">
<div class="col-2 q-table__title">活动列表</div> <div class="col-2 q-table__title">活动列表</div>
...@@ -183,6 +183,13 @@ ...@@ -183,6 +183,13 @@
</div> </div>
</q-td> </q-td>
</template> </template>
<template v-slot:body-cell-LocationName="props">
<q-td :props="props">
<div style="width:200px;white-space: pre-line;">
{{props.row.LocationName}}
</div>
</q-td>
</template>
<template v-slot:body-cell-JoinNum="props"> <template v-slot:body-cell-JoinNum="props">
<q-td :props="props"> <q-td :props="props">
<div> <div>
...@@ -299,12 +306,14 @@ import ActiveForm from '../../components/activity/active-from' ...@@ -299,12 +306,14 @@ import ActiveForm from '../../components/activity/active-from'
name: "Id", name: "Id",
label: "编号", label: "编号",
field: "Id", field: "Id",
align: "left" align: "left",
required:true,
}, },
{ {
name: "activeName", name: "activeName",
label: "活动名称", label: "活动名称",
align: "left" align: "left",
required:true,
}, },
{ {
name: "ActivityTypeName", name: "ActivityTypeName",
...@@ -332,7 +341,7 @@ import ActiveForm from '../../components/activity/active-from' ...@@ -332,7 +341,7 @@ import ActiveForm from '../../components/activity/active-from'
label: "位置", label: "位置",
field:"LocationName", field:"LocationName",
align: "left", align: "left",
width:80 style:"width:100px"
}, },
{ {
name: "activeStutes", name: "activeStutes",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment