From 5453ae1464bdd671199940a77b74072e0c1dce67 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 15 Feb 2022 15:00:14 +0800
Subject: [PATCH] 组件封装调整
---
src/pcviews/tool/layer-manage.vue | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/pcviews/tool/layer-manage.vue b/src/pcviews/tool/layer-manage.vue
index b304751..ffb60a1 100644
--- a/src/pcviews/tool/layer-manage.vue
+++ b/src/pcviews/tool/layer-manage.vue
@@ -1,13 +1,13 @@
<template>
- <tool-big-box class="tool-layer">
- <template slot="too-big-box-header">
+ <public-box class="tool-layer">
+ <template slot="public-box-header">
<div class="title">
<img class="icon deblurring" src="/img/icon/tool-layer.png" alt />
<span>图层管理</span>
</div>
<img class="close" src="/img/navicon/close.png" alt @click="closeModel" />
</template>
- <template slot="too-big-box-content">
+ <template slot="public-box-content">
<div class="list-box">
<ul v-show="signList.length > 0">
<li v-for="(item, index) in signList" :key="index">
@@ -22,7 +22,7 @@
</div>
</div>
</template>
- </tool-big-box>
+ </public-box>
</template>
<script>
--
Gitblit v1.9.3