修正单词拼写错误
This commit is contained in:
		
							parent
							
								
									612c4293d1
								
							
						
					
					
						commit
						a29201a248
					
				| 
						 | 
					@ -5,11 +5,11 @@ let confGlobal
 | 
				
			||||||
let someSpanIsNot24
 | 
					let someSpanIsNot24
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function dialogWrapper(str) {
 | 
					export function dialogWrapper(str) {
 | 
				
			||||||
  return `<el-dialog v-bind="$attrs" v-on="$listeners" @open="onOpen" @close="onClose" title="Dialog Titile">
 | 
					  return `<el-dialog v-bind="$attrs" v-on="$listeners" @open="onOpen" @close="onClose" title="Dialog Title">
 | 
				
			||||||
    ${str}
 | 
					    ${str}
 | 
				
			||||||
    <div slot="footer">
 | 
					    <div slot="footer">
 | 
				
			||||||
      <el-button @click="close">取消</el-button>
 | 
					      <el-button @click="close">取消</el-button>
 | 
				
			||||||
      <el-button type="primary" @click="handelConfirm">确定</el-button>
 | 
					      <el-button type="primary" @click="handleConfirm">确定</el-button>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  </el-dialog>`
 | 
					  </el-dialog>`
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -98,7 +98,7 @@ function mixinMethod(type) {
 | 
				
			||||||
        close: `close() {
 | 
					        close: `close() {
 | 
				
			||||||
        this.$emit('update:visible', false)
 | 
					        this.$emit('update:visible', false)
 | 
				
			||||||
      },`,
 | 
					      },`,
 | 
				
			||||||
        handelConfirm: `handelConfirm() {
 | 
					        handleConfirm: `handleConfirm() {
 | 
				
			||||||
        this.$refs['${confGlobal.formRef}'].validate(valid => {
 | 
					        this.$refs['${confGlobal.formRef}'].validate(valid => {
 | 
				
			||||||
          if(!valid) return
 | 
					          if(!valid) return
 | 
				
			||||||
          this.close()
 | 
					          this.close()
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -41,7 +41,7 @@
 | 
				
			||||||
        <el-button @click="close">
 | 
					        <el-button @click="close">
 | 
				
			||||||
          取消
 | 
					          取消
 | 
				
			||||||
        </el-button>
 | 
					        </el-button>
 | 
				
			||||||
        <el-button type="primary" @click="handelConfirm">
 | 
					        <el-button type="primary" @click="handleConfirm">
 | 
				
			||||||
          确定
 | 
					          确定
 | 
				
			||||||
        </el-button>
 | 
					        </el-button>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
| 
						 | 
					@ -94,7 +94,7 @@ export default {
 | 
				
			||||||
    close(e) {
 | 
					    close(e) {
 | 
				
			||||||
      this.$emit('update:visible', false)
 | 
					      this.$emit('update:visible', false)
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    handelConfirm() {
 | 
					    handleConfirm() {
 | 
				
			||||||
      this.$refs.elForm.validate(valid => {
 | 
					      this.$refs.elForm.validate(valid => {
 | 
				
			||||||
        if (!valid) return
 | 
					        if (!valid) return
 | 
				
			||||||
        this.$emit('confirm', { ...this.formData })
 | 
					        this.$emit('confirm', { ...this.formData })
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -59,7 +59,7 @@
 | 
				
			||||||
      <div slot="footer">
 | 
					      <div slot="footer">
 | 
				
			||||||
        <el-button
 | 
					        <el-button
 | 
				
			||||||
          type="primary"
 | 
					          type="primary"
 | 
				
			||||||
          @click="handelConfirm"
 | 
					          @click="handleConfirm"
 | 
				
			||||||
        >
 | 
					        >
 | 
				
			||||||
          确定
 | 
					          确定
 | 
				
			||||||
        </el-button>
 | 
					        </el-button>
 | 
				
			||||||
| 
						 | 
					@ -133,7 +133,7 @@ export default {
 | 
				
			||||||
    close() {
 | 
					    close() {
 | 
				
			||||||
      this.$emit('update:visible', false)
 | 
					      this.$emit('update:visible', false)
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    handelConfirm() {
 | 
					    handleConfirm() {
 | 
				
			||||||
      this.$refs.elForm.validate(valid => {
 | 
					      this.$refs.elForm.validate(valid => {
 | 
				
			||||||
        if (!valid) return
 | 
					        if (!valid) return
 | 
				
			||||||
        if (this.dataType === 'number') {
 | 
					        if (this.dataType === 'number') {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -146,7 +146,7 @@ import { beautifierConf, titleCase } from '@/utils/index'
 | 
				
			||||||
import { makeUpHtml, vueTemplate, vueScript, cssStyle } from '@/utils/generator/html'
 | 
					import { makeUpHtml, vueTemplate, vueScript, cssStyle } from '@/utils/generator/html'
 | 
				
			||||||
import { makeUpJs } from '@/utils/generator/js'
 | 
					import { makeUpJs } from '@/utils/generator/js'
 | 
				
			||||||
import { makeUpCss } from '@/utils/generator/css'
 | 
					import { makeUpCss } from '@/utils/generator/css'
 | 
				
			||||||
import drawingDefalut from '@/utils/generator/drawingDefalut'
 | 
					import drawingDefault from '@/utils/generator/drawingDefault'
 | 
				
			||||||
import logo from '@/assets/logo/logo.png'
 | 
					import logo from '@/assets/logo/logo.png'
 | 
				
			||||||
import CodeTypeDialog from './CodeTypeDialog'
 | 
					import CodeTypeDialog from './CodeTypeDialog'
 | 
				
			||||||
import DraggableItem from './DraggableItem'
 | 
					import DraggableItem from './DraggableItem'
 | 
				
			||||||
| 
						 | 
					@ -171,15 +171,15 @@ export default {
 | 
				
			||||||
      selectComponents,
 | 
					      selectComponents,
 | 
				
			||||||
      layoutComponents,
 | 
					      layoutComponents,
 | 
				
			||||||
      labelWidth: 100,
 | 
					      labelWidth: 100,
 | 
				
			||||||
      drawingList: drawingDefalut,
 | 
					      drawingList: drawingDefault,
 | 
				
			||||||
      drawingData: {},
 | 
					      drawingData: {},
 | 
				
			||||||
      activeId: drawingDefalut[0].formId,
 | 
					      activeId: drawingDefault[0].formId,
 | 
				
			||||||
      drawerVisible: false,
 | 
					      drawerVisible: false,
 | 
				
			||||||
      formData: {},
 | 
					      formData: {},
 | 
				
			||||||
      dialogVisible: false,
 | 
					      dialogVisible: false,
 | 
				
			||||||
      generateConf: null,
 | 
					      generateConf: null,
 | 
				
			||||||
      showFileName: false,
 | 
					      showFileName: false,
 | 
				
			||||||
      activeData: drawingDefalut[0]
 | 
					      activeData: drawingDefault[0]
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  created() {
 | 
					  created() {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue