Commit 88729829 authored by zhengke's avatar zhengke

修改

parent c263c974
...@@ -33,7 +33,11 @@ ...@@ -33,7 +33,11 @@
.marketRules .singeRowTable tr th { .marketRules .singeRowTable tr th {
border: 1px solid #d2d2d2; border: 1px solid #d2d2d2;
} }
.border-bottom {
border-bottom: 1px dashed #EEE;
padding-bottom: 5px;
margin-bottom: 5px;
}
</style> </style>
<template> <template>
<div class="page-body marketRules"> <div class="page-body marketRules">
...@@ -54,6 +58,13 @@ ...@@ -54,6 +58,13 @@
<q-btn color="accent" size="sm" class="q-mr-md" icon="add" label="新增规则" @click="AddMsg(null)" /> <q-btn color="accent" size="sm" class="q-mr-md" icon="add" label="新增规则" @click="AddMsg(null)" />
</div> </div>
</template> </template>
<template v-slot:body-cell-DetailList="props">
<q-td>
<div class="border-bottom" v-for="(item,index) in props.row.DetailList" :key="index">
{{item.StartNum}} - {{item.EndNum}} <span style="margin-left:10px;">{{item.Money}}</span>
</div>
</q-td>
</template>
<template v-slot:body-cell-Id="props"> <template v-slot:body-cell-Id="props">
<q-td :props="props"> <q-td :props="props">
<div> <div>
...@@ -154,6 +165,12 @@ ...@@ -154,6 +165,12 @@
field: "NotUseCourseIds", field: "NotUseCourseIds",
align: "left", align: "left",
}, },
{
name: "DetailList",
label: "社會班招生人頭達標獎金",
field: "DetailList",
align: "left"
},
{ {
name: 'Id', name: 'Id',
label: '操作', label: '操作',
......
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