返回介绍

Popup 弹出

发布于 2020-05-05 22:51:20 字数 5332 浏览 1136 评论 0 收藏 0

import { Popup } from 'feui';
components: {
  [Popup.name]: Popup,
},
data() {
  return {
  };
}
methods: {
}

代码演示

默认Popup

<fe-switch title="Default popup" v-model="show"></fe-switch>
<fe-popup v-model="show" @on-hide="log('hide')" @on-show="log('show')">
  <div class="popup0">
    <fe-group>
      <fe-switch title="另一个 switch" v-model="show"></fe-switch>
      <fe-switch title="显示 Toast" v-model="showToast"></fe-switch>
    </fe-group>
  </div>
</fe-popup>

全屏弹出

<fe-switch title="全屏弹出" v-model="show1"></fe-switch>
<fe-popup v-model="show1" height="100%">
  <div class="popup1">
    <fe-switch title="另一个 switch" v-model="show1"></fe-switch>
  </div>
</fe-popup>

内部滚动

<fe-switch title="with a Scroller" v-model="show2"></fe-switch>
<fe-popup v-model="show2" height="250px" style='overflow:hidden;'  
  @on-first-show="resetScroller">
  <fe-scroll class="page-content"
    :on-refresh="onRefresh"
    :on-infinite="onInfinite">
    <div v-for="(item, index) in items" :key="index" @click.native="onItemClick(index)" 
      class='item' :class="{'item-stable': index % 2 == 0}">
      {{ item }}
    </div>
    <div v-if="infiniteCount >= 2" slot="infinite" class="text-center">没有更多数据</div>
  </fe-scroll>
</fe-popup>

禁用点击mask关闭

<fe-switch title="禁用点击mask关闭" v-model="show5"></fe-switch>
<fe-popup v-model="show5" :hide-on-blur=false>
  <div class="popup2">
    <fe-group>
      <fe-switch title="禁用点击mask关闭" v-model="show5"></fe-switch>
    </fe-group>
    Mask不可点
  </div>
</fe-popup>

背景透明

<fe-group>
  <fe-switch title="背景透明" v-model="show7"></fe-switch>
</fe-group>
<fe-popup v-model="show7" height="270px" is-transparent>
  <div style="width: 95%;background-color:#fff;height:250px;
    margin:0 auto;border-radius:5px;padding-top:10px;">
    <fe-group>
    <fe-cell title="产品名称" value="比特币1个"></fe-cell>
    <fe-cell title="金额" value="¥10.24"></fe-cell>
    </fe-group>
    <div style="padding:20px 15px;">
    <fe-button type="primary">支付</fe-button>
    <fe-button @click.native="show7 = false"> 取消</fe-button>
    </div>
  </div>
</fe-popup>

背景透明

<fe-switch title="左边(100% width)" v-model="show8"></fe-switch>
<fe-popup v-model="show8" position="left" width="100%">
  <div class="position-horizontal-demo">
    <span class="nuim-close" @click="show8 = false"></span>
  </div>
</fe-popup>

API

参数说明类型默认值可选值
value是否关闭,使用v-model绑定Booleanfalsetrue,false
width设置100%宽度必须使用该属性。在positionleft或者right时有效。Stringauto-
height高度,设置100%为整屏高度。当positiontop或者bottom时有效。Stringauto-
show-mask是否显示遮罩Booleantruetrue,false
hide-on-blur指定联动模式下的列数,当不指定时表示非联动Booleantruetrue,false
is-transparent是否为透明背景Booleanfalsetrue,false
position弹出的位置Stringbottomleft, right, top, bottom
popup-style弹窗样式,可以用于强制指定 z-indexObject--
hide-on-deactivated是否在 deactived 事件触发时自动关闭,避免在路由切换时依然显示弹窗Booleantruetrue,false
-----

Slots

Slot名说明备注
default弹窗主体内容-
---

Events

事件名参数说明备注
on-hide-关闭时触发-
on-show-显示时触发-
on-first-show-第一次显示时触发,可以在该事件回调里初始化数据或者界面-
----

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文