|
@@ -5,7 +5,7 @@
|
|
|
<div class="bar__top"></div>
|
|
|
<div class="bar__bottom"></div>
|
|
|
</div>
|
|
|
- <el-card class="h-full border-none menu-card" shadow="hidden">
|
|
|
+ <el-card class="h-full border-none menu-card" shadow="never">
|
|
|
<template #header>
|
|
|
<div class="flex justify-between">
|
|
|
<div class="card-header">
|
|
@@ -71,7 +71,7 @@
|
|
|
</template>
|
|
|
|
|
|
<template #statusSlot="{ row }">
|
|
|
- <el-tag v-if="row.status === 3" type="primary">已绑定</el-tag>
|
|
|
+ <el-tag v-if="row.status === 3">已绑定</el-tag>
|
|
|
<el-switch v-else v-model="row.status" :active-value="1" :inactive-value="0" @change="handleStatusChange(row)"></el-switch>
|
|
|
</template>
|
|
|
|