Commit 3a2c4314 authored by 涂伟's avatar 涂伟

fix: '维保方案月周期新增半月一次配置'

parent 20b1f17e
Pipeline #86904 passed with stages
...@@ -310,7 +310,7 @@ const BaseConfig = (props, ref) => { ...@@ -310,7 +310,7 @@ const BaseConfig = (props, ref) => {
<Select <Select
value={CycleLen} value={CycleLen}
style={{ style={{
width: 60, width: 80,
marginLeft: '3px', marginLeft: '3px',
}} }}
onChange={value => { onChange={value => {
...@@ -326,8 +326,8 @@ const BaseConfig = (props, ref) => { ...@@ -326,8 +326,8 @@ const BaseConfig = (props, ref) => {
} }
} }
}} }}
options={[1, 2, 3, 6, 12].map(province => ({ options={[0.5, 1, 2, 3, 6, 12].map(province => ({
label: province, label: province === 0.5 ? '半月' : province,
value: province, value: province,
}))} }))}
/> />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment