您的位置:首页 > 娱乐 > 八卦 > 中国最大的网络公司排名_泾川县门户网_专业网站推广优化_网络营销服务企业

中国最大的网络公司排名_泾川县门户网_专业网站推广优化_网络营销服务企业

2025/1/3 21:47:06 来源:https://blog.csdn.net/weixin_43923808/article/details/144829477  浏览:    关键词:中国最大的网络公司排名_泾川县门户网_专业网站推广优化_网络营销服务企业
中国最大的网络公司排名_泾川县门户网_专业网站推广优化_网络营销服务企业

实现以下弹框样式功能 

 

 1.在components新建一个文件showModel.wpy作为组件,复制下面代码

<style  lang="less" scoped>
.bg_model {display: flex;justify-content: center;align-items: center;// 弹框背景.bg_hui {width: 100%;height: 100%;position: fixed;z-index: 1000;left: 0;top: 0;background: #000;opacity: 0.5;overflow: hidden;}
}
.toastDialog {width: 580rpx;padding-top: 50rpx;position: fixed;top: 55%;left: 0;z-index: 9999;margin: -370rpx 85rpx;background-color: #fff;box-shadow: 0 4rpx 12rpx 0 rgba(59, 79, 150, 0.2);border-radius: 15rpx;display: flex;flex-direction: column;align-items: center;.toastTit {font-size: 34rpx;font-weight: 800;}.toastContent {padding-left: 50rpx;padding-right: 50rpx;margin-top: 30rpx;color: #545454;font-size: 30rpx;display: flex;justify-content: center;}.btn_wai {display: flex;height: 90rpx;border-top: 1rpx solid #f6f6f6;width: 100%;margin-top: 60rpx;.btn1 {width: 50%;display: flex;align-items: center;justify-content: center;font-size: 34rpx;font-weight: 800;color: #919191;}.btn2 {border-left: 1rpx solid #f6f6f6;width: 50%;font-size: 34rpx;display: flex;align-items: center;justify-content: center;font-weight: 800;color: white;background: #2a67ea;border-bottom-right-radius: 15rpx;}}
}
</style><template><view><view class="bg_model" catchtouchmove="true" wx:if='{{tkShowModel}}'><view class="bg_hui"></view><!--stateType=1成功弹框  --><view class="toastDialog"><view class="toastTit">{{title1}}</view><view class="toastContent">{{content1}}</view><view class="btn_wai"><view class="btn1" @tap="cancelClick">取消</view><view class="btn2" @tap="submitClick">{{btnName}}</view></view></view></view></view>
</template><script>
import wepy from 'wepy'export default class showModel extends wepy.component {props = {tkShowModel: {type: Boolean,default: false,//是否显示},title1: {type: String,default: '',//标题},content1: {type: String,default: '',//内容},btnName: {type: String,default: '',//按钮文字},}data = {}watch = {}methods = {
cancelClick(){this.tkShowModel=falsethis.$emit('cancelClick',false)//修改父组件值
},
submitClick(){this.tkShowModel=falsethis.$emit('submitClick',false)//修改父组件值
}}onLoad() { }
}
</script>

2.使用

<template><view>
<showModel :title1.sync="title1" :content1.sync="content1" :btnName="btnName" :tkShowModel.sync="tkShowModel"  @cancelClick.user="cancelClick"   @submitClick.user="submitClick"></showModel></view>
</template><script>
import showModel from '@/components/showModel'components = {showModel,}data = {tkShowModel:false,
title1:'是否确认下单?',
content1:'确认后,售后单将被提交到工厂。若售后单被工厂驳回后,请回到电脑端修改后重新提交!',
btnName:'确认下单',}methods = {submitClick(val){// 点击确认this.tkShowModel=valthis.$apply()},cancelClick(val){// 取消this.tkShowModel=valthis.$apply()},
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com