uni-popup-share.vue 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<template>
	<view class="uni-popup-share">
		<view class="uni-share-title"><text class="uni-share-title-text">{{title}}</text></view>
		<view class="uni-share-content">
			<view class="uni-share-content-box">
				<view class="uni-share-content-item" v-for="(item,index) in bottomData" :key="index" @click.stop="select(item,index)">
					<image class="uni-share-image" :src="item.icon" mode="aspectFill"></image>
					<text class="uni-share-text">{{item.text}}</text>
				</view>

			</view>
		</view>
		<view class="uni-share-button-box">
			<button class="uni-share-button" @click="close">取消</button>
		</view>
	</view>
</template>

DCloud_JSON's avatar
DCloud_JSON 已提交
19 20
<script>
	import popup from '../uni-popup/popup.js'
21
	export default {
DCloud_JSON's avatar
DCloud_JSON 已提交
22 23
		name: 'UniPopupShare',
		mixins:[popup],
24
		emits:['select'],
25 26 27 28
		props: {
			title: {
				type: String,
				default: '分享到'
DCloud_JSON's avatar
DCloud_JSON 已提交
29 30 31 32
			},
			beforeClose: {
				type: Boolean,
				default: false
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
			}
		},
		data() {
			return {
				bottomData: [{
						text: '微信',
						icon: 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-dc-site/c2b17470-50be-11eb-b680-7980c8a877b8.png',
						name: 'wx'
					},
					{
						text: '支付宝',
						icon: 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-dc-site/d684ae40-50be-11eb-8ff1-d5dcf8779628.png',
						name: 'wx'
					},
					{
						text: 'QQ',
						icon: 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-dc-site/e7a79520-50be-11eb-b997-9918a5dda011.png',
						name: 'qq'
					},
					{
						text: '新浪',
						icon: 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-dc-site/0dacdbe0-50bf-11eb-8ff1-d5dcf8779628.png',
						name: 'sina'
					},
					{
						text: '百度',
						icon: 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-dc-site/1ec6e920-50bf-11eb-8a36-ebb87efcf8c0.png',
						name: 'copy'
					},
					{
						text: '其他',
						icon: 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-dc-site/2e0fdfe0-50bf-11eb-b997-9918a5dda011.png',
						name: 'more'
					}
				]
			}
		},
		created() {},
		methods: {
			/**
			 * 选择内容
			 */
			select(item, index) {
				this.$emit('select', {
					item,
					index
DCloud_JSON's avatar
DCloud_JSON 已提交
79 80 81
				})
				this.close()
				
82 83 84 85
			},
			/**
			 * 关闭窗口
			 */
DCloud_JSON's avatar
DCloud_JSON 已提交
86 87
			close() {
				if(this.beforeClose) return
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
				this.popup.close()
			}
		}
	}
</script>
<style lang="scss" scoped>
	.uni-popup-share {
		background-color: #fff;
	}
	.uni-share-title {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		align-items: center;
		justify-content: center;
		height: 40px;
	}
	.uni-share-title-text {
		font-size: 14px;
		color: #666;
	}
	.uni-share-content {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		justify-content: center;
		padding-top: 10px;
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
118

119 120 121 122 123 124 125 126
	.uni-share-content-box {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		flex-wrap: wrap;
		width: 360px;
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
127

128 129 130 131 132 133 134 135 136 137
	.uni-share-content-item {
		width: 90px;
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: column;
		justify-content: center;
		padding: 10px 0;
		align-items: center;
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
138

139 140 141
	.uni-share-content-item:active {
		background-color: #f5f5f5;
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
142

143 144 145 146
	.uni-share-image {
		width: 30px;
		height: 30px;
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
147

148 149 150 151 152
	.uni-share-text {
		margin-top: 10px;
		font-size: 14px;
		color: #3B4144;
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
153

154 155 156 157 158 159 160
	.uni-share-button-box {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		padding: 10px 15px;
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
161

162 163 164 165 166 167
	.uni-share-button {
		flex: 1;
		border-radius: 50px;
		color: #666;
		font-size: 16px;
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
168

169 170 171 172
	.uni-share-button::after {
		border-radius: 50px;
	}
</style>