This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 903
wxc-mask content内容 绑定data数据 #111
Comments
Thank you for your feedback. I've been working on a forthcoming release, and you can upgrade to [email protected] for the time being.
|
真机测试。。。弹框会有闪屏……(通过this的setData改变弹框内容的时候,会有闪屏) |
try |
那不是用不了动画了…… |
闪屏的问题只能靠把动画禁掉解决吗?而且即便禁掉动画,弹窗内部数据更新的时候还是会闪屏。 |
@wilson-0422 :hack="shouldShow" 是那个weex-ui组件的配置啊?找不到 |
你好,关闭动画后安卓手机上更新数据 还是会闪动,iOS没这个问题 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
content的通过data绑定的数据,再通过click来改变的时候,会让wxc的弹框消失
//html
<wxc-mask height="800"
width="702"
border-radius="0"
duration="300"
mask-bg-color="#FFFFFF"
:has-overlay="true"
:show-close="true"
:show="show"
:has-animation="hasAnimation"
@wxcMaskSetHidden="wxcMaskSetHidden">
{{input_text}}
<div class="grid-option" @click="edit_input(1)" bubble="false">1
//.js
edit_input (e) {
this.input_text = '2323'
console.log(this.input_text)
},
点击事件去改变this的data值,渲染页面的时候,会让弹框消失
The text was updated successfully, but these errors were encountered: