Commit 952edfca authored by youjie's avatar youjie

no message

parent 2185de5d
...@@ -332,7 +332,7 @@ ...@@ -332,7 +332,7 @@
import orderList from "./orderList"; import orderList from "./orderList";
export default { export default {
components: { components: {
orderList, orderList
}, },
props:['pagesTitle'], props:['pagesTitle'],
data() { data() {
......
...@@ -57,18 +57,14 @@ ...@@ -57,18 +57,14 @@
label="商品名称" label="商品名称"
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<el-tooltip class="item" effect="dark" :content="scope.row.Name" placement="top"> <div style="width: 50px;overflow: hidden;">{{scope.row.Name}}</div>
<span style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Name}}</span>
</el-tooltip>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="商品详情" label="商品详情"
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<el-tooltip class="item" effect="dark" :content="scope.row.Description" placement="top"> <div style="width: 50px;overflow: hidden;">{{scope.row.Description}}</div>
<span style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Description}}</span>
</el-tooltip>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
...@@ -286,6 +282,7 @@ export default { ...@@ -286,6 +282,7 @@ export default {
} }
else if (row.OrderType == 7) {//jalan酒店 else if (row.OrderType == 7) {//jalan酒店
this.$message.info('jalan酒店暂不支持查看')
// if(this.pagesTitle=='销售'){ // if(this.pagesTitle=='销售'){
// data[0].path = 'CharterOrderList' // data[0].path = 'CharterOrderList'
// }else{ // }else{
......
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