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

	</view>
</template>

28
<script>
DCloud_JSON's avatar
DCloud_JSON 已提交
29
	import popup from '../uni-popup/popup.js'
30 31 32 33 34
	import {
	initVueI18n
	} from '@dcloudio/uni-i18n'
	import messages from '../uni-popup/i18n/index.js'
	const {	t	} = initVueI18n(messages)
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
	/**
	 * 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 {
56
		name: "uniPopupDialog",
DCloud_JSON's avatar
DCloud_JSON 已提交
57
		mixins: [popup],
58
		emits:['confirm','close'],
59 60 61 62 63 64 65
		props: {
			value: {
				type: [String, Number],
				default: ''
			},
			placeholder: {
				type: [String, Number],
66
				default: ''
67 68 69 70 71 72 73 74 75 76 77
			},
			type: {
				type: String,
				default: 'error'
			},
			mode: {
				type: String,
				default: 'base'
			},
			title: {
				type: String,
78
				default: ''
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
			},
			content: {
				type: String,
				default: ''
			},
			beforeClose: {
				type: Boolean,
				default: false
			}
		},
		data() {
			return {
				dialogType: 'error',
				focus: false,
				val: ""
			}
		},
96 97 98 99 100 101 102 103 104 105 106 107 108 109
		computed: {
			okText() {
				return t("uni-popup.ok")
			},
			cancelText() {
				return t("uni-popup.cancel")
			},
			placeholderText() {
				return this.placeholder || t("uni-popup.placeholder")
			},
			titleText() {
				return this.title || t("uni-popup.title")
			}
		},
110 111 112 113 114 115 116 117 118 119 120 121 122
		watch: {
			type(val) {
				this.dialogType = val
			},
			mode(val) {
				if (val === 'input') {
					this.dialogType = 'info'
				}
			},
			value(val) {
				this.val = val
			}
		},
123
		created() {
124
			// 对话框遮罩不可点击
125
			this.popup.disableMask()
DCloud_JSON's avatar
DCloud_JSON 已提交
126
			// this.popup.closeMask()
127 128 129 130 131 132 133 134 135 136 137 138 139 140
			if (this.mode === 'input') {
				this.dialogType = 'info'
				this.val = this.value
			} else {
				this.dialogType = this.type
			}
		},
		mounted() {
			this.focus = true
		},
		methods: {
			/**
			 * 点击确认按钮
			 */
141 142 143 144 145 146 147
			onOk() {
				if (this.mode === 'input'){
					this.$emit('confirm', this.val)
				}else{
					this.$emit('confirm')
				}
				if(this.beforeClose) return
DCloud_JSON's avatar
DCloud_JSON 已提交
148
				this.popup.close()
149 150 151 152
			},
			/**
			 * 点击取消按钮
			 */
153 154
			closeDialog() {
				this.$emit('close')
DCloud_JSON's avatar
DCloud_JSON 已提交
155
				if(this.beforeClose) return
156
				this.popup.close()
157 158 159
			},
			close(){
				this.popup.close()
160 161 162 163 164
			}
		}
	}
</script>

DCloud_JSON's avatar
DCloud_JSON 已提交
165
<style lang="scss" scoped>
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 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 238 239
	.uni-popup-dialog {
		width: 300px;
		border-radius: 15px;
		background-color: #fff;
	}

	.uni-dialog-title {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
		justify-content: center;
		padding-top: 15px;
		padding-bottom: 5px;
	}

	.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;
		padding: 5px 15px 15px 15px;
	}

	.uni-dialog-content-text {
		font-size: 14px;
		color: #6e6e6e;
	}

	.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 {
		font-size: 14px;
	}

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

	.uni-dialog-input {
		flex: 1;
240 241 242 243 244
		font-size: 14px;
		border: 1px #eee solid;
		height: 40px;
		padding: 0 10px;
		border-radius: 5px;
DCloud_JSON's avatar
DCloud_JSON 已提交
245
		color: #555;
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
	}

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

	.uni-popup__warn {
		color: #f0ad4e;
	}

	.uni-popup__error {
		color: #dd524d;
	}

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