Commit 3ecd0dfb authored by superman's avatar superman

1.3.7-3

parent 176c13e0
This diff is collapsed.
This diff is collapsed.
......@@ -117,8 +117,8 @@ export default class ShouyiYongjingForm extends Component {
if (/^[\d]+$/g.test(key)) {
const d = formData[key];
const dr = {
min: String(d.min).trim(),
max: String(d.max).trim(),
min: (typeof d.min === 'undefined') ? '' : String(d.min).trim(),
max: (typeof d.max === 'undefined') ? '' : String(d.max).trim(),
result: {
yj: String(d.yj).trim(),
sy: String(d.sy).trim()
......
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