小程序
小游戏
企业微信
微信支付
扫描小程序码分享
想写几套WXSS样式,根据判断后,加载不同的样式文件,所有的页面都读取这套WXSS,小程序里面可以实现吗?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
写成模版,根据条件导入模版
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
能详细说一下具体怎么操作吗?谢谢
<!--用户名-->
<include wx:if="{{infoType=='username'}}" src="/pages/template/modifyInfo/username.wxml"/>
<!--姓名-->
<include wx:if="{{infoType=='name'}}" src="/pages/template/modifyInfo/name.wxml"/>
<!--更换手机号-->
<include wx:if="{{infoType=='mobile'}}" src="/pages/template/modifyInfo/mobile.wxml"/>
<!--邮箱-->
<include wx:if="{{infoType=='mail'}}" src="/pages/template/modifyInfo/mail.wxml"/>
<!--公司信息-->
<include wx:if="{{infoType=='company'}}" src="/pages/template/modifyInfo/company.wxml"/>
<!--修改密码-->
<include wx:if="{{infoType=='password'}}" src="/pages/template/modifyInfo/password.wxml"/>
<!--解绑微信-->
<include wx:if="{{infoType=='wxbound'}}" src="/pages/template/modifyInfo/wxbound.wxml"/>
谢谢
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
写成模版,根据条件导入模版
能详细说一下具体怎么操作吗?谢谢
<!--用户名-->
<include wx:if="{{infoType=='username'}}" src="/pages/template/modifyInfo/username.wxml"/>
<!--姓名-->
<include wx:if="{{infoType=='name'}}" src="/pages/template/modifyInfo/name.wxml"/>
<!--更换手机号-->
<include wx:if="{{infoType=='mobile'}}" src="/pages/template/modifyInfo/mobile.wxml"/>
<!--邮箱-->
<include wx:if="{{infoType=='mail'}}" src="/pages/template/modifyInfo/mail.wxml"/>
<!--公司信息-->
<include wx:if="{{infoType=='company'}}" src="/pages/template/modifyInfo/company.wxml"/>
<!--修改密码-->
<include wx:if="{{infoType=='password'}}" src="/pages/template/modifyInfo/password.wxml"/>
<!--解绑微信-->
<include wx:if="{{infoType=='wxbound'}}" src="/pages/template/modifyInfo/wxbound.wxml"/>
谢谢