From 24eb9d89423613c7322da715f2a445b4466ffcf4 Mon Sep 17 00:00:00 2001
From: Mr.Shi <1878285526@qq.com>
Date: 星期一, 11 九月 2023 18:16:04 +0800
Subject: [PATCH] Merge branch 'dev' of ssh://139.186.142.91:29418/productDev/dmMes into dev

---
 minipro_standard/components/Preview.vue |   34 ++++++++++++++++++++++++++++++++++
 1 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/minipro_standard/components/Preview.vue b/minipro_standard/components/Preview.vue
new file mode 100644
index 0000000..a6c4844
--- /dev/null
+++ b/minipro_standard/components/Preview.vue
@@ -0,0 +1,34 @@
+<template>
+	<div class="preview">
+		<div class="preview_close" @click="closes">
+			<u-icon name="close" size="20"></u-icon>
+		</div>
+		<div class="preview_content">
+			<u-swiper :list="list" :current="current"></u-swiper>
+		</div>
+	</div>
+</template>
+
+<script>
+	export default {
+		props: {
+			list: {
+				type: Array,
+				default: []
+			},
+			current: {
+				type: Number,
+				default: 0
+			}
+		},
+		methods: {
+			closes() {
+				this.$emit('close')
+			}
+		}
+	}
+</script>
+
+<style lang="scss" scoped>
+
+</style>

--
Gitblit v1.9.3