文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

uniapp组件深度修改样式问题

2023-09-08 10:50

关注

问题一:样式类型scss/less/css

如果公共样式为common.scss
对应的App.vue文件必须加上lang=“scss”

<style lang="scss">@import "@/common/css/common.scss";page{}</style>

问题二:深入修改样式

①当前页面修改,带scoped,css样式;

<style scoped>.index_list_bar >>> .uni-section{background-color:#fff;margin:0px; font-weight:700; height:80rpx;}</style>

备注:对子组件样式不生效;且微信小程序会报错,需使用条件编译作区分

②当前页面修改,带scoped,css样式/scss样式

<style scoped>/deep/ .index_list_bar .uni-section{background-color:#fff;margin:0px; font-weight:700; height:80rpx;}</style><style lang="scss" scoped>/deep/ .index_list_bar{.uni-section{background-color:#fff;margin:0px; font-weight:700; height:80rpx;}}</style><style lang="scss" scoped>/deep/ .index_list_bar .uni-section{background-color:#fff;margin:0px; font-weight:700; height:80rpx;}</style>

备注:子组件,h5,APP,小程序均可生效

③当前页面修改,带scoped,scss样式;

<style lang="scss" scoped>::v-deep .index_list_bar{.uni-section{background-color:#fff!important;margin:0px!important; font-weight:700!important; height:80rpx!important;}}</style>

备注:子组件亦能生效;h5生效,但APP无效

④common.scss公共样式中

::v-deep .index_list_bar{.uni-section{background-color:#fff!important;margin:0px!important; font-weight:700!important; height:80rpx!important;}}

备注:APP不生效,H5及微信小程序、子组件均生效

总结:可使用第四种方法,APP使用条件编译语句在需修改样式的页面配合②一起使用

//common.scss::v-deep .index_list_bar{.uni-section{background-color:#fff!important;margin:0px!important; font-weight:700!important; height:80rpx!important;}}//index.vue首页中/deep/ .index_list_bar{.uni-section{background-color:#fff;margin:0px; font-weight:700; height:80rpx;}}

来源地址:https://blog.csdn.net/qq_43628158/article/details/128329901

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯