淘先锋技术网

首页 1 2 3 4 5 6 7

问题场景:前端页面点击修改,捅过row.id查询数据,通过路由跳转到新页面,直接将传过来的整个数据赋值给form表单,确认传过来的数据字段有值,但是radio组件不回显,显示为空。

问题原因:因为传过来的数据的值的类型为整型,需要String(数据)进行转换。

      this.form = JSON.parse(this.$route.query.formData)//整个表单赋值
      this.form.isPush = String(JSON.parse(this.$route.query.formData).isPush)//单独转换数据给字段赋值

问题解决,数据回显