@@ -143,6 +143,9 @@ export default {
queryStoreLevelParamMap().then(res => {
if (res.status == 200) {
this.form = Object.assign({}, res.data)
+ for (const key in this.form) {
+ this.form[key] = Number(this.form[key])
+ }
}
this.spinning = false
})