We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
#999
2.9.2
All operating system / All browser
2.5.17
<template> <group class="form" label-width="4.5em" label-margin-right="1em" label-align="right"> <x-input title="姓  名" v-model="name" placeholder="请填写姓名"> </x-input> <popup-picker title="性  别" v-model="gender" placeholder="请选择性别" :data="genderData" show-name value-text-align="left" @on-change="onGenderChange"> </popup-picker> </group> </template> <script> import { Group, XInput, PopupPicker, } from 'vux'; export default { name: 'test-form', components: { Group, XInput, PopupPicker, }, data() { return { name: '', gender: [], genderData: [[{ name: '男', value: 'MALE', }, { name: '女', value: 'FEMALE', }]], }; }, }; </script> <style> .form { color: red; } </style>
XInput
PopupPicker
.form
表单上的XInput控件的标题字体为红色,,输入的内容字体也为红色; PopupPicker控件的标题字体颜色为红色,但选择后显示的内容字体颜色也应该为红色;
表单上的XInput控件的标题字体为红色,,输入的内容字体也为红色; PopupPicker控件的标题字体颜色为红色,但选择后显示的内容字体颜色永远固定为#999;
The text was updated successfully, but these errors were encountered:
fix airyland#3263
d60903f
解决了吗 我浏览器模拟强制改颜色是可以的 到了手机端完全是灰的
Sorry, something went wrong.
No branches or pull requests
VUX version
2.9.2
OS/Browsers version
All operating system / All browser
Vue version
2.5.17
Code
Steps to reproduce
XInput
和一个PopupPicker
控件;.form
的字体颜色设置为红色;XInput
控件的标题字体为红色,输入的内容字体也为红色;PopupPicker
控件的标题字体颜色为红色,但选择后显示的内容字体颜色永远固定为#999
;What is Expected?
表单上的
XInput
控件的标题字体为红色,,输入的内容字体也为红色;PopupPicker
控件的标题字体颜色为红色,但选择后显示的内容字体颜色也应该为红色;What is actually happening?
表单上的
XInput
控件的标题字体为红色,,输入的内容字体也为红色;PopupPicker
控件的标题字体颜色为红色,但选择后显示的内容字体颜色永远固定为#999
;The text was updated successfully, but these errors were encountered: