欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序自定義彈框效果

 更新時(shí)間:2022年07月07日 13:36:33   作者:asteriaV  
這篇文章主要為大家詳細(xì)介紹了微信小程序自定義彈框效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了微信小程序自定義彈框效果的具體代碼,供大家參考,具體內(nèi)容如下

wxml

<!-- 取消訂單按鈕 -->
<view class="cancelBtn" bindtap="cancelOrder" data-id="{{item.id}}" data-type="{{type}}">取消訂單</view>

<!-- 取消訂單彈框 -->
<view class="modalDlg-mask" wx:if="{{showModal}}"></view>
<view class="modalDlg" wx:if="{{showModal}}">
?? ?<view class="page-body">
?? ??? ?<form bindsubmit="submit">
?? ??? ??? ?<view class="modalDlg-title">
?? ??? ??? ??? ?<text>取消訂單原因</text>
?? ??? ??? ?</view>
?? ??? ??? ?<view class="modalDlg-content">
?? ??? ??? ??? ?<view class="modalDlg-content-item">
?? ??? ??? ??? ??? ?<radio-group bindchange="radioChange">
?? ??? ??? ??? ??? ??? ?<label class="weui-cell weui-check__label" wx:for="{{items}}" wx:key="index">
?? ??? ??? ??? ??? ??? ??? ?<view class="weui-cell__hd">
?? ??? ??? ??? ??? ??? ??? ??? ?<radio value="{{item.value}}" color="#ff5155" />
?? ??? ??? ??? ??? ??? ??? ?</view>
?? ??? ??? ??? ??? ??? ??? ?<view wx:if="{{item.value!=='3'}}" class="weui-cell__bd">{{item.name}}</view>
?? ??? ??? ??? ??? ??? ??? ?<text wx:if="{{item.value==='3'}}" style="width:150rpx;">{{item.name}}</text>
?? ??? ??? ??? ??? ??? ??? ?<textarea wx:if="{{item.value==='3'}}" bindinput="bindTextArea" auto-height="true" placeholder="請(qǐng)輸入其他原因"></textarea>
?? ??? ??? ??? ??? ??? ?</label>
?? ??? ??? ??? ??? ?</radio-group>
?? ??? ??? ??? ?</view>
?? ??? ??? ?</view>
?? ??? ??? ?<view class="modalDlg-footer">
?? ??? ??? ??? ?<view bindtap="closeModal" class="modalDlg-btn closeBtn">取消</view>
?? ??? ??? ??? ?<view bindtap="confirmModal" form-type="submit" class="modalDlg-btn confirmBtn">確定</view>
?? ??? ??? ?</view>
?? ??? ?</form>
?? ?</view>
</view>

js 

data:{
showModal: false, //取消訂單彈框
?
} ,
??
? //取消訂單彈框
? cancelOrder() {
? ? this.setData({
? ? ? showModal: true
? ? })
? },
?
? ? //取消訂單彈框-確定
? confirmModal() {
?
? ?this.setData({
? ? ? ? ? showModal: false
? ? ? ? });
?
?},
?//取消訂單彈框-取消
? closeModal() {
? ? ?
? ? this.setData({
? ? ? showModal: false
? ? })
?
? },

wxss

/* 取消訂單彈框 */
.page-body {
? width: 100%;
}
?
/* 遮罩層 */
.modalDlg-mask {
? width: 100%;
? height: 100%;
? position: fixed;
? top: 0;
? left: 0;
? background: #000;
? z-index: 9000;
? opacity: 0.5;
}
?
/* 彈出層 */
.modalDlg {
? width: 70%;
? position: fixed;
? top: 25%;
? left: 0;
? right: 0;
? z-index: 9999;
? margin: 0 auto;
? background-color: #fff;
? border-radius: 5px;
? display: flex;
? flex-direction: column;
? align-items: center;
}
.modalDlg-title{
? width: 100%;
? display: flex;
? align-items: center;
? justify-content: center;
? padding: 20rpx 0rpx;
}
?
?
.modalDlg-content {
? width: 100%;
? display: flex;
? flex-direction: column;
? justify-content: center;
? padding: 10rpx 0;
}
.modalDlg-content .modalDlg-content-item{
display: flex;
align-items: center;
justify-content: space-between;
?}
?
?.modalDlg-content .modalDlg-content-item radio-group{
? ?width: 100%;
? ?color: #666;
?}
?.modalDlg-content .modalDlg-content-item .weui-check__label{
display: flex;
align-items: center;
}
.modalDlg-content .modalDlg-content-item .weui-cell__bd{
? line-height: 48rpx;
? }
.modalDlg-content .modalDlg-content-item .weui-cell{
? padding: 20rpx;
? display: flex;
? flex-direction: row;
}
?
.modalDlg-footer {
? width: 100%;
? height: 100rpx;
? border-top: 1rpx solid #ededed;
? display: flex;
? align-items: center;
? flex-wrap: nowrap;
? justify-content: space-between;
}?
?
/* 彈出層里面的文字 */
.modalDlg .modalDlg-content text {
? text-align: justify;
? font-size: 28rpx;
? color: #666;
? /* margin-left: 10px; */
}
?
/* 彈出層里面的按鈕 */
.modalDlg-btn {
? width: 80px;
? height: 70rpx;
? line-height: 70rpx;
? text-align: center;
? font-size: 28rpx;
? border-radius: 40rpx;
? margin: 0 auto;
}
?
.modalDlg .modalDlg-footer .closeBtn {
? background: #fff;
? color: #fc4141;
? border: 1rpx solid #fc4141;
}
?
.modalDlg .modalDlg-footer .confirmBtn {
? background: #fc4141;
? color: #fff;
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • JavaScript中的FileReader示例詳解

    JavaScript中的FileReader示例詳解

    FileReader主要用于將文件內(nèi)容讀入內(nèi)存,通過(guò)一系列異步接口,可以在主線(xiàn)程中訪(fǎng)問(wèn)本地文件,這篇文章主要給大家介紹了關(guān)于JavaScript中FileReader的相關(guān)資料,需要的朋友可以參考下
    2022-03-03
  • js+jquery常用知識(shí)點(diǎn)匯總

    js+jquery常用知識(shí)點(diǎn)匯總

    本文主要介紹了jquery源碼中常見(jiàn)的知識(shí)點(diǎn)以及javascript中原型鏈常見(jiàn)的知識(shí)點(diǎn),非常的全面,這里推薦給小伙伴們。
    2015-03-03
  • bootstrap fileinput 插件使用項(xiàng)目總結(jié)(經(jīng)驗(yàn))

    bootstrap fileinput 插件使用項(xiàng)目總結(jié)(經(jīng)驗(yàn))

    這篇文章主要介紹了bootstrap fileinput 插件使用項(xiàng)目總結(jié),是小編日常碰到的問(wèn)題及解決方法,需要的朋友可以參考下
    2017-02-02
  • JavaScript生成隨機(jī)字符串的方法

    JavaScript生成隨機(jī)字符串的方法

    這篇文章主要介紹了JavaScript生成隨機(jī)字符串的方法,涉及javascript中random的使用技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下
    2015-03-03
  • JS 對(duì)象屬性相關(guān)(檢查屬性、枚舉屬性等)

    JS 對(duì)象屬性相關(guān)(檢查屬性、枚舉屬性等)

    這篇文章主要介紹了JS 對(duì)象屬性相關(guān)(檢查屬性、枚舉屬性等),需要的朋友可以參考下
    2015-04-04
  • JavaScript中常用的數(shù)組操作方法總結(jié)

    JavaScript中常用的數(shù)組操作方法總結(jié)

    這篇文章為大家總結(jié)了一些JavaScript中常用的數(shù)組操作方法,文中通過(guò)示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-07-07
  • Nuxt.js開(kāi)啟SSR渲染的教程詳解

    Nuxt.js開(kāi)啟SSR渲染的教程詳解

    Nuxt.js 是一個(gè)基于 Vue.js 的通用應(yīng)用框架。 通過(guò)對(duì)客戶(hù)端/服務(wù)端基礎(chǔ)架構(gòu)的抽象組織,Nuxt.js 主要關(guān)注的是應(yīng)用的 UI渲染。這篇文章主要介紹了Nuxt.js開(kāi)啟SSR渲染 ,需要的朋友可以參考下
    2018-11-11
  • JS PromiseLike的判定與使用詳解

    JS PromiseLike的判定與使用詳解

    本文主要介紹了JS PromiseLike的判定與使用詳解, 文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2023-11-11
  • 使用uni-app打包H5的圖文教程

    使用uni-app打包H5的圖文教程

    uni-app是一個(gè)使用Vue.js開(kāi)發(fā)所有前端應(yīng)用的框架,開(kāi)發(fā)者編寫(xiě)一套代碼,可發(fā)布到iOS,Android,H5,以及各種小程序(微信/支付寶/百度/頭條/?QQ?/釘釘)等多個(gè)平臺(tái),這篇文章主要給大家介紹了關(guān)于使用uni-app打包H5的相關(guān)資料,需要的朋友可以參考下
    2022-11-11
  • javascript數(shù)組去掉重復(fù)

    javascript數(shù)組去掉重復(fù)

    去tx面試過(guò)幾次,基本都會(huì)考到數(shù)組去重。其實(shí)平時(shí)工作中幾乎不會(huì)用到,再者也沒(méi)認(rèn)真去了解過(guò),所以基本上每次面到這里都會(huì)露出很大的馬腳,面試自然也over了
    2011-05-05

最新評(píng)論