123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <template>
- <u-popup v-model="showDialog" mode="bottom" border-radius="28" @close="close">
- <view class="dialog-content">
- <image :src="QINIU_URL + 'Fqb-i2uJWlZOg8EvUXHr_1qhlndf'" class="icon"/>
- <view class="title">{{ title }}</view>
- <view class="tips">
- <text v-if="type=='bluetoothPail'">{{text}}</text>
- <text v-else-if="type=='register'">{{$t('我们已向')}} <span style="color: #0A59F7;">{{email}}</span> {{$t('发送注册邮件,请您登录邮箱点击链接完成注册。')}}</text>
- <text v-else-if="type=='forgetPassword'">{{$t('我们已向')}} <span style="color: #0A59F7;">{{email}}</span> {{$t('发送了一封密码重置邮件,请您登录邮箱操作处理。')}}</text>
- </view>
- <view class="btn" @tap="close">{{ btnText }}</view>
- </view>
- </u-popup>
- </template>
- <script>
- import { QINIU_URL } from '@/common/constant'
- export default {
- props: {
- value: {
- type: Boolean,
- default: false
- },
- title: {
- type: String,
- default: ''
- },
- type: {
- type: String,
- default: ''
- },
- email: {
- type: String,
- default: ''
- },
- text: {
- type: String,
- default: ''
- },
- btnText: {
- type: String,
- default: '确定'
- }
- },
- data() {
- return {
- QINIU_URL,
- showDialog: this.value
- }
- },
- watch: {
- value(newValue) {
- this.showDialog = newValue
- }
- },
- methods: {
- close() {
- uni.navigateTo({
- url: '/pages/loginRegister/login',
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .dialog-content {
- width: 100%;
- height: 100%;
- background: #F1F3F4;
- padding: 64rpx 32rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .icon {
- width: 88rpx;
- height: 88rpx;
- }
- .title {
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- font-size: 40rpx;
- color: #060809;
- margin: 32rpx 0 24rpx;
- }
- .tips {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #8B939C;
- line-height: 42rpx;
- text-align: center;
- padding: 0 80rpx;
- }
- .btn {
- margin-top: 68rpx;
- width: 100%;
- height: 80rpx;
- background: #060809;
- border-radius: 40rpx;
- color: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- &:active {
- opacity: 0.8;
- }
- }
- }
- </style></style>
|