-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
更新到1.3.0-beta.5 组件全局样式出问题了 #3239
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
@dawang90 找到问题了,百度小程序的 addGlobalClass 在有 s-if 条件语句的情况下会失效,正在联系解决。 |
Hello~ 您的问题所提供的信息不足,我们无法定位到具体的问题。如果有空的话还请拔冗提供更具体的信息,否则这个 issue 将在 15 天后被自动关闭。 如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。 Good luck and happy coding~ |
@dawang90 等百度下一个版本咯。 |
期待下个版本的优化,我暂时在组件中引入对应样式来解决目前的问题 |
@dawang90 嗯嗯,到时更新下百度开发者工具再试试吧。 |
Hello~ 您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。 如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。 Good luck and happy coding~ |
百度开发者工具,基础库改为 3.60.16 即可修复。 |
环境描述
百度小程序
问题描述
组件全局样式 addGlobalClass: true
有部分样式名还是加上了组件名前缀
复现步骤
[复现问题的步骤]
组件at-modal
<View onTouchMove={this.handleTouchMove} className='at-modal'>
<View className='at-modal__overlay' onClick={this.handleClickOverlay} />
<View className='at-modal__container'>{this.props.children}</View>
</View>
实际输出
<view className='at-modal_at-modal'>
<view className='at-modal__overlay'></view>
<view className='at-modal__container'>{this.props.children}</View>
</view>
期望行为
<view className='at-modal'>
<view className='at-modal__overlay'></view>
<view className='at-modal__container'>{this.props.children}</View>
</view>
The text was updated successfully, but these errors were encountered: