Commit 39e5fdbf authored by youjie's avatar youjie

no message

parent e9690919
......@@ -17,7 +17,7 @@
show-overflow-tooltip>
<template slot-scope="scope">
<div>
<p style="font-size: 18px;">{{scope.row.OrderId}} <el-tag style="margin-left: 5px;" size="mini">{{scope.row.OrderTypeName}}</el-tag></p>
<p style="font-size: 18px;display: flex;align-items: center;"><el-tag style="margin-right: 5px;" size="mini">{{scope.row.OrderTypeName}}</el-tag><span>{{scope.row.OrderId}}</span> </p>
<p>下单日期:{{scope.row.CreateTimeStr}}</p>
</div>
</template>
......@@ -58,7 +58,16 @@
show-overflow-tooltip>
<template slot-scope="scope">
<el-tooltip class="item" effect="dark" :content="scope.row.Name" placement="top">
<p style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Name}}</p>
<span style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Name}}</span>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
label="商品详情"
show-overflow-tooltip>
<template slot-scope="scope">
<el-tooltip class="item" effect="dark" :content="scope.row.Description" placement="top">
<span style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Description}}</span>
</el-tooltip>
</template>
</el-table-column>
......@@ -114,15 +123,7 @@
<span>{{scope.row.StateName}}</span>
</template>
</el-table-column>
<el-table-column
label="描述"
show-overflow-tooltip>
<template slot-scope="scope">
<el-tooltip class="item" effect="dark" :content="scope.row.Description" placement="top">
<p style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Description}}</p>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
label="操作"
show-overflow-tooltip>
......
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