Browse Source

bug 修复

lilei 2 years ago
parent
commit
be15fde740
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/views/dataStatistics/userAnalysis/setModal.vue

+ 3 - 0
src/views/dataStatistics/userAnalysis/setModal.vue

@@ -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
       })