Skip to content

Commit

Permalink
Merge pull request JakHuang#12 from IWANABETHATGUY/dev
Browse files Browse the repository at this point in the history
fix(typo): typo
  • Loading branch information
JakHuang authored Jan 22, 2020
2 parents 2a0cc46 + 8742d78 commit f4ba8bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/index/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ export default {
}
return tempActiveData
},
AssembleFromData() {
AssembleFormData() {
this.formData = {
fields: JSON.parse(JSON.stringify(this.drawingList)),
...this.formConf
Expand All @@ -313,7 +313,7 @@ export default {
func && func(data)
},
execRun(data) {
this.AssembleFromData()
this.AssembleFormData()
this.drawerVisible = true
},
execDownload(data) {
Expand Down Expand Up @@ -361,7 +361,7 @@ export default {
},
generateCode() {
const { type } = this.generateConf
this.AssembleFromData()
this.AssembleFormData()
const script = vueScript(makeUpJs(this.formData, type))
const html = vueTemplate(makeUpHtml(this.formData, type))
const css = cssStyle(makeUpCss(this.formData))
Expand Down

0 comments on commit f4ba8bc

Please sign in to comment.