瀏覽代碼

fix: flow/form warning

lanceJiang 10 月之前
父節點
當前提交
0174df838a
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/views/flow/form/index.vue

+ 2 - 2
src/views/flow/form/index.vue

@@ -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>