This commit is contained in:
2025-02-28 17:36:48 +08:00
parent 2314f863e1
commit cc744ec5fb
2 changed files with 43 additions and 21 deletions

View File

@@ -90,12 +90,22 @@
<img
v-if="scope.row.productImages != ''"
:src="scope.row.productImages"
width="70"
height="100"
width="40"
height="60"
class="tableImg"
/>
</template>
</el-table-column>
<el-table-column header-align="center" align="center" label="VIP优惠图书" width="120px">
<template slot-scope="scope">
{{ scope.row.isVipPrice == 1 ? '是' : '否' }}
<!-- <el-switch
v-model="scope.row.isVipPrice"
active-color="#13ce66"
inactive-color="#bbb">
</el-switch> -->
</template>
</el-table-column>
<el-table-column
fixed="right"
header-align="center"
@@ -415,3 +425,10 @@ export default {
}
};
</script>
<style scoped>
::v-deep.el-table .el-table__cell{
padding: 4px 0 !important;
}
</style>