Commit 398637c4 authored by Mac's avatar Mac

1

parent dba268ab
......@@ -43,11 +43,12 @@
<template v-slot:body-cell-Title="props">
<q-td :props="props">
<span>{{props.row.Title}}</span>
<div style="width: 200px;overflow: hidden ;
display: -webkit-box ;
-webkit-line-clamp: 2 ;
-webkit-box-orient: vertical ;
word-break: break-all ;" v-if="props.row.Type==2" v-html="props.row.Description"></div>
<div style="width: 200px;overflow: hidden ;max-height: 78px;display: inline-block;white-space:pre-wrap" v-if="props.row.Type==2" v-html="props.row.Description"></div>
<div v-if="props.row.Type==5" style="width: 200px;overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical; white-space:pre-wrap">{{props.row.Description}}</div>
</q-td>
</template>
<template v-slot:body-cell-optioned="props">
......
......@@ -48,11 +48,12 @@
<template v-slot:body-cell-Title="props">
<q-td :props="props">
<span>{{props.row.Title}}</span>
<div style="width: 200px;overflow: hidden ;
display: -webkit-box ;
-webkit-line-clamp: 2 ;
-webkit-box-orient: vertical ;
word-break: break-all ;" v-if="props.row.Type==2" v-html="props.row.Description"></div>
<div style="width: 200px;overflow: hidden ;max-height: 78px;display: inline-block;white-space:pre-wrap" v-if="props.row.Type==2" v-html="props.row.Description"></div>
<div v-if="props.row.Type==5" style="width: 200px;overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical; white-space:pre-wrap">{{props.row.Description}}</div>
</q-td>
</template>
<template v-slot:body-cell-optioned="props">
......
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