mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-09 19:06:45 +08:00
请先修改热点标签状态
This commit is contained in:
@@ -71,11 +71,22 @@
|
|||||||
|
|
||||||
<!-- 前台公共显示列 -->
|
<!-- 前台公共显示列 -->
|
||||||
<template v-else-if="column.key === 'isPublic'">
|
<template v-else-if="column.key === 'isPublic'">
|
||||||
|
<a-tooltip
|
||||||
|
v-if="record.isHot"
|
||||||
|
title="热点标签必须是公共标签,请先修改热点标签状态"
|
||||||
|
>
|
||||||
<a-switch
|
<a-switch
|
||||||
v-model:checked="record.isPublic"
|
v-model:checked="record.isPublic"
|
||||||
:disabled="record.isHot"
|
:disabled="record.isHot"
|
||||||
@change="handlePublicChange(record)"
|
@change="handlePublicChange(record)"
|
||||||
/>
|
/>
|
||||||
|
</a-tooltip>
|
||||||
|
<a-switch
|
||||||
|
v-else
|
||||||
|
v-model:checked="record.isPublic"
|
||||||
|
:disabled="record.isHot"
|
||||||
|
@change="handlePublicChange(record)"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<!-- 热点标签展示列 -->
|
<!-- 热点标签展示列 -->
|
||||||
|
|||||||
Reference in New Issue
Block a user