From 9ab4955166b7b1370fc2a49b152353241ca9e64a Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期一, 16 十月 2023 09:22:23 +0800
Subject: [PATCH] 小程序

---
 minipro_standard/uni_modules/uview-ui/components/u-slider/u-slider.vue |   55 -------------------------------------------------------
 1 files changed, 0 insertions(+), 55 deletions(-)

diff --git a/minipro_standard/uni_modules/uview-ui/components/u-slider/u-slider.vue b/minipro_standard/uni_modules/uview-ui/components/u-slider/u-slider.vue
index 9b5ee36..e69de29 100644
--- a/minipro_standard/uni_modules/uview-ui/components/u-slider/u-slider.vue
+++ b/minipro_standard/uni_modules/uview-ui/components/u-slider/u-slider.vue
@@ -1,55 +0,0 @@
-<template>
-	<view
-		class="u-slider"
-		:style="[$u.addStyle(customStyle)]"
-	>
-		<slider
-			:min="min"
-			:max="max"
-			:step="step"
-			:value="value"
-			:activeColor="activeColor"
-			:inactiveColor="inactiveColor"
-			:blockSize="$u.getPx(blockSize)"
-			:blockColor="blockColor"
-			:showValue="showValue"
-			:disabled="disabled"
-			@changing="changingHandler"
-			@change="changeHandler"
-		></slider>
-	</view>
-</template>
-
-<script>
-	import props from './props.js'
-	export default {
-		name: 'u--slider',
-		mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
-		methods: {
-			// 鎷栧姩杩囩▼涓Е鍙�
-			changingHandler(e) {
-				const {
-					value
-				} = e.detail
-				// 鏇存柊v-model鐨勫��
-				this.$emit('input', value)
-				// 瑙﹀彂浜嬩欢
-				this.$emit('changing', value)
-			},
-			// 婊戝姩缁撴潫鏃惰Е鍙�
-			changeHandler(e) {
-				const {
-					value
-				} = e.detail
-				// 鏇存柊v-model鐨勫��
-				this.$emit('input', value)
-				// 瑙﹀彂浜嬩欢
-				this.$emit('change', value)
-			}
-		},
-	}
-</script>
-
-<style lang="scss" scoped>
-	@import "../../libs/css/components.scss";
-</style>

--
Gitblit v1.9.3