@@ -83,11 +83,14 @@
<el-table :data="props.row.ticketCheckScenicList" :max-height="200">
<el-table-column
prop="scenicName"
+ width="240"
+ show-overflow-tooltip
label="景点"
></el-table-column>
prop="checkLimitTimes"
label="可检票次数"
+ width="150"
>
<template slot-scope="scope">
{{ scope.row.checkLimitTimes === -1 ? "无限制" : scope.row.checkLimitTimes }}
@@ -95,11 +98,13 @@
</el-table-column>
prop="checkedTimes"
label="已检票次数"
prop="singleCheckLimitTimes"
label="单日可检票次数"
</el-table>
</template>