Commit 1579ce0b authored by 吴春's avatar 吴春

1

parent bd6c1064
......@@ -293,6 +293,8 @@
{{scope.row.TCNUM}}{{scope.row.TCID}}
</template>
</el-table-column>
<el-table-column prop="DMCNum" label="地接团号">
</el-table-column>
<el-table-column prop="TeamTypeStr" label="团队类型">
</el-table-column>
<el-table-column prop="StartDate" label="出发日期">
......@@ -301,12 +303,19 @@
</el-table-column>
<el-table-column prop="DNum" label="大/中/小人数">
<template slot-scope="scope">
{{scope.row.DNum}}/ {{scope.row.ZNum}}/ {{scope.row.XNum}}
<span style="text-decoration:underline;cursor:pointer;" type="info" @click="goUrl('bookDinnerStatisticsDetails',scope.row.TCID)"> {{(scope.row.DNum>0&&scope.row.DUnitPrice>0)?scope.row.DNum:0}}
/{{(scope.row.ZNum>0&&scope.row.ZUnitPrice>0)?scope.row.ZNum:0}}
/{{(scope.row.XNum>0&&scope.row.XUnitPrice>0)?scope.row.XNum:0}}</span>
</template>
</el-table-column>
<el-table-column prop="DUnitPrice" label="大/中/小价格">
<template slot-scope="scope">
{{scope.row.DUnitPrice}}/ {{scope.row.ZUnitPrice}}/{{scope.row.XUnitPrice}}
<span style="text-decoration:underline;cursor:pointer;" type="info" @click="goUrl('bookDinnerStatisticsDetails',scope.row.TCID)">
{{(scope.row.DNum>0&&scope.row.DUnitPrice>0)?scope.row.DUnitPrice:0}}
/{{(scope.row.ZNum>0&&scope.row.ZUnitPrice>0)?scope.row.ZUnitPrice:0}}
/{{(scope.row.XNum>0&&scope.row.XUnitPrice>0)?scope.row.XUnitPrice:0}}
</span>
</template>
</el-table-column>
......@@ -436,7 +445,7 @@
query: {
id: id,
blank: 'y',
tab: '套餐查询'
tab: '餐厅预定详情'
}
});
},
......
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