uni-popup-dialog.vue 5.5 KB
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1 2 3 4 5 6 7 8 9 10 11 12
<template>
	<view class="uni-popup-dialog">
		<view class="uni-dialog-title">
			<text class="uni-dialog-title-text" :class="['uni-popup__'+dialogType]">{{titleText}}</text>
		</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>
DCloud_JSON's avatar
2.1.1  
DCloud_JSON 已提交
13
				<input class="uni-dialog-input" v-model="val" :type="inputType" :placeholder="placeholderText" :focus="focus" >
DCloud_JSON's avatar
DCloud_JSON 已提交
14 15 16 17
			</slot>
		</view>
		<view class="uni-dialog-button-group">
			<view class="uni-dialog-button" @click="closeDialog">
18
				<text class="uni-dialog-button-text">{{closeText}}</text>
DCloud_JSON's avatar
DCloud_JSON 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
			</view>
			<view class="uni-dialog-button uni-border-left" @click="onOk">
				<text class="uni-dialog-button-text uni-button-color">{{okText}}</text>
			</view>
		</view>

	</view>
</template>

<script>
	import popup from '../uni-popup/popup.js'
	import {
	initVueI18n
	} from '@dcloudio/uni-i18n'
	import messages from '../uni-popup/i18n/index.js'
34
	const {	t } = initVueI18n(messages)
DCloud_JSON's avatar
DCloud_JSON 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
	/**
	 * 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],
		emits:['confirm','close'],
DCloud_JSON's avatar
2.1.1  
DCloud_JSON 已提交
59 60 61 62 63
		props: {
			inputType:{
				type: String,
				default: 'text'
			},
DCloud_JSON's avatar
DCloud_JSON 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
			value: {
				type: [String, Number],
				default: ''
			},
			placeholder: {
				type: [String, Number],
				default: ''
			},
			type: {
				type: String,
				default: 'error'
			},
			mode: {
				type: String,
				default: 'base'
			},
			title: {
				type: String,
				default: ''
			},
			content: {
				type: String,
				default: ''
			},
			beforeClose: {
				type: Boolean,
				default: false
DCloud_JSON's avatar
2.1.1  
DCloud_JSON 已提交
91 92 93 94 95 96 97 98
			},
			cancelText:{
				type: String,
				default: ''
			},
			confirmText:{
				type: String,
				default: ''
DCloud_JSON's avatar
DCloud_JSON 已提交
99 100 101 102 103 104 105 106 107 108 109
			}
		},
		data() {
			return {
				dialogType: 'error',
				focus: false,
				val: ""
			}
		},
		computed: {
			okText() {
110
				return this.confirmText || t("uni-popup.ok")
DCloud_JSON's avatar
DCloud_JSON 已提交
111
			},
112 113
			closeText() {
				return this.cancelText || t("uni-popup.cancel")
DCloud_JSON's avatar
DCloud_JSON 已提交
114 115 116 117 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 173 174 175 176
			},
			placeholderText() {
				return this.placeholder || t("uni-popup.placeholder")
			},
			titleText() {
				return this.title || t("uni-popup.title")
			}
		},
		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>

177
<style lang="scss" >
DCloud_JSON's avatar
DCloud_JSON 已提交
178 179
	.uni-popup-dialog {
		width: 300px;
180
		border-radius: 11px;
DCloud_JSON's avatar
DCloud_JSON 已提交
181 182 183 184 185 186 187 188 189
		background-color: #fff;
	}

	.uni-dialog-title {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		justify-content: center;
190
		padding-top: 25px;
DCloud_JSON's avatar
DCloud_JSON 已提交
191 192 193 194 195 196 197 198 199 200 201 202 203 204
	}

	.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;
205
		padding: 20px;
DCloud_JSON's avatar
DCloud_JSON 已提交
206 207 208 209
	}

	.uni-dialog-content-text {
		font-size: 14px;
210
		color: #6C6C6C;
DCloud_JSON's avatar
DCloud_JSON 已提交
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 238 239 240 241
	}

	.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 {
242
		font-size: 16px;
243
		color: #333;
DCloud_JSON's avatar
DCloud_JSON 已提交
244 245 246
	}

	.uni-button-color {
DCloud_JSON's avatar
2.1.1  
DCloud_JSON 已提交
247
		color: #007aff;
DCloud_JSON's avatar
DCloud_JSON 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260
	}

	.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 {
DCloud_JSON's avatar
2.1.1  
DCloud_JSON 已提交
261
		color: #4cd964;
DCloud_JSON's avatar
DCloud_JSON 已提交
262 263 264
	}

	.uni-popup__warn {
DCloud_JSON's avatar
2.1.1  
DCloud_JSON 已提交
265
		color: #f0ad4e;
DCloud_JSON's avatar
DCloud_JSON 已提交
266 267 268
	}

	.uni-popup__error {
DCloud_JSON's avatar
2.1.1  
DCloud_JSON 已提交
269
		color: #dd524d;
DCloud_JSON's avatar
DCloud_JSON 已提交
270 271 272 273 274 275
	}

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