uni-popup-dialog.vue 5.2 KB
Newer Older
study夏羽's avatar
study夏羽 已提交
1 2 3
<template>
	<view class="uni-popup-dialog">
		<view class="uni-dialog-title">
study夏羽's avatar
study夏羽 已提交
4
			<text class="uni-dialog-title-text" :class="['uni-popup__'+dialogType]">{{titleText}}</text>
study夏羽's avatar
study夏羽 已提交
5 6 7 8 9 10 11 12
		</view>
		<view v-if="mode === 'base'" class="uni-dialog-content">
			<slot>
				<text class="uni-dialog-content-text">{{content}}</text>
			</slot>
		</view>
		<view v-else class="uni-dialog-content">
			<slot>
study夏羽's avatar
study夏羽 已提交
13
				<input class="uni-dialog-input" v-model="val" type="text" :placeholder="placeholderText" :focus="focus" >
study夏羽's avatar
study夏羽 已提交
14 15 16 17
			</slot>
		</view>
		<view class="uni-dialog-button-group">
			<view class="uni-dialog-button" @click="closeDialog">
study夏羽's avatar
study夏羽 已提交
18
				<text class="uni-dialog-button-text">{{closeText}}</text>
study夏羽's avatar
study夏羽 已提交
19 20
			</view>
			<view class="uni-dialog-button uni-border-left" @click="onOk">
study夏羽's avatar
study夏羽 已提交
21
				<text class="uni-dialog-button-text uni-button-color">{{okText}}</text>
study夏羽's avatar
study夏羽 已提交
22 23 24 25 26 27 28 29
			</view>
		</view>

	</view>
</template>

<script>
	import popup from '../uni-popup/popup.js'
study夏羽's avatar
study夏羽 已提交
30 31 32 33 34
	import {
	initVueI18n
	} from '@dcloudio/uni-i18n'
	import messages from '../uni-popup/i18n/index.js'
	const {	t } = initVueI18n(messages)
study夏羽's avatar
study夏羽 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
	/**
	 * PopUp 弹出层-对话框样式
	 * @description 弹出层-对话框样式
	 * @tutorial https://ext.dcloud.net.cn/plugin?id=329
	 * @property {String} value input 模式下的默认值
	 * @property {String} placeholder input 模式下输入提示
	 * @property {String} type = [success|warning|info|error] 主题样式
	 *  @value success 成功
	 * 	@value warning 提示
	 * 	@value info 消息
	 * 	@value error 错误
	 * @property {String} mode = [base|input] 模式、
	 * 	@value base 基础对话框
	 * 	@value input 可输入对话框
	 * @property {String} content 对话框内容
	 * @property {Boolean} beforeClose 是否拦截取消事件
	 * @event {Function} confirm 点击确认按钮触发
	 * @event {Function} close 点击取消按钮触发
	 */

	export default {
		name: "uniPopupDialog",
		mixins: [popup],
study夏羽's avatar
study夏羽 已提交
58
		emits:['confirm','close'],
study夏羽's avatar
study夏羽 已提交
59 60 61 62 63 64 65
		props: {
			value: {
				type: [String, Number],
				default: ''
			},
			placeholder: {
				type: [String, Number],
study夏羽's avatar
study夏羽 已提交
66
				default: ''
study夏羽's avatar
study夏羽 已提交
67 68 69 70 71 72 73 74 75 76 77
			},
			type: {
				type: String,
				default: 'error'
			},
			mode: {
				type: String,
				default: 'base'
			},
			title: {
				type: String,
study夏羽's avatar
study夏羽 已提交
78
				default: ''
study夏羽's avatar
study夏羽 已提交
79 80 81 82 83 84 85 86
			},
			content: {
				type: String,
				default: ''
			},
			beforeClose: {
				type: Boolean,
				default: false
study夏羽's avatar
study夏羽 已提交
87 88 89 90 91 92 93 94
			},
			cancelText:{
				type: String,
				default: ''
			},
			confirmText:{
				type: String,
				default: ''
study夏羽's avatar
study夏羽 已提交
95 96 97 98 99 100 101 102 103
			}
		},
		data() {
			return {
				dialogType: 'error',
				focus: false,
				val: ""
			}
		},
study夏羽's avatar
study夏羽 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117
		computed: {
			okText() {
				return this.confirmText || t("uni-popup.ok")
			},
			closeText() {
				return this.cancelText || t("uni-popup.cancel")
			},
			placeholderText() {
				return this.placeholder || t("uni-popup.placeholder")
			},
			titleText() {
				return this.title || t("uni-popup.title")
			}
		},
study夏羽's avatar
study夏羽 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
		watch: {
			type(val) {
				this.dialogType = val
			},
			mode(val) {
				if (val === 'input') {
					this.dialogType = 'info'
				}
			},
			value(val) {
				this.val = val
			}
		},
		created() {
			// 对话框遮罩不可点击
			this.popup.disableMask()
			// this.popup.closeMask()
			if (this.mode === 'input') {
				this.dialogType = 'info'
				this.val = this.value
			} else {
				this.dialogType = this.type
			}
		},
		mounted() {
			this.focus = true
		},
		methods: {
			/**
			 * 点击确认按钮
			 */
			onOk() {
				if (this.mode === 'input'){
					this.$emit('confirm', this.val)
				}else{
					this.$emit('confirm')
				}
				if(this.beforeClose) return
				this.popup.close()
			},
			/**
			 * 点击取消按钮
			 */
			closeDialog() {
				this.$emit('close')
				if(this.beforeClose) return
				this.popup.close()
			},
			close(){
				this.popup.close()
			}
		}
	}
</script>

study夏羽's avatar
study夏羽 已提交
173
<style lang="scss" >
study夏羽's avatar
study夏羽 已提交
174 175
	.uni-popup-dialog {
		width: 300px;
study夏羽's avatar
study夏羽 已提交
176
		border-radius: 11px;
study夏羽's avatar
study夏羽 已提交
177 178 179 180 181 182 183 184 185
		background-color: #fff;
	}

	.uni-dialog-title {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		justify-content: center;
study夏羽's avatar
study夏羽 已提交
186
		padding-top: 25px;
study夏羽's avatar
study夏羽 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200
	}

	.uni-dialog-title-text {
		font-size: 16px;
		font-weight: 500;
	}

	.uni-dialog-content {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		justify-content: center;
		align-items: center;
study夏羽's avatar
study夏羽 已提交
201
		padding: 20px;
study夏羽's avatar
study夏羽 已提交
202 203 204 205
	}

	.uni-dialog-content-text {
		font-size: 14px;
study夏羽's avatar
study夏羽 已提交
206
		color: #6C6C6C;
study夏羽's avatar
study夏羽 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
	}

	.uni-dialog-button-group {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		border-top-color: #f5f5f5;
		border-top-style: solid;
		border-top-width: 1px;
	}

	.uni-dialog-button {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */

		flex: 1;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		height: 45px;
	}

	.uni-border-left {
		border-left-color: #f0f0f0;
		border-left-style: solid;
		border-left-width: 1px;
	}

	.uni-dialog-button-text {
study夏羽's avatar
study夏羽 已提交
238 239
		font-size: 16px;
		color: #333;
study夏羽's avatar
study夏羽 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
	}

	.uni-button-color {
		color: #007aff;
	}

	.uni-dialog-input {
		flex: 1;
		font-size: 14px;
		border: 1px #eee solid;
		height: 40px;
		padding: 0 10px;
		border-radius: 5px;
		color: #555;
	}

	.uni-popup__success {
		color: #4cd964;
	}

	.uni-popup__warn {
		color: #f0ad4e;
	}

	.uni-popup__error {
		color: #dd524d;
	}

	.uni-popup__info {
		color: #909399;
	}
</style>