index.vue 7.1 KB
Newer Older
1 2
<template>
    <div>
Mr.奇淼('s avatar
Mr.奇淼( 已提交
3
        <!-- 初始版本自动化代码工具 -->
4 5 6 7 8
        <el-form ref="autoCodeForm" :rules="rules" :model="form" label-width="120px" :inline="true">
            <el-form-item label="Struct名称" prop="structName">
                <el-input v-model="form.structName" placeholder="首字母自动转换大写"></el-input>
            </el-form-item>
            <el-form-item label="Struct简称" prop="abbreviation">
9
                <el-input v-model="form.abbreviation" placeholder="简称会作为入参对象名和路由group"></el-input>
10
            </el-form-item>
11
            <el-form-item label="文件名称" prop="packageName">
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
                <el-input v-model="form.packageName"></el-input>
            </el-form-item>
        </el-form>
        <!-- 组件列表 -->
        <div class="button-box clearflex">
            <el-button @click="editAndAddField()" type="primary">新增Field</el-button>
        </div>
         <el-table
            :data="form.fields"
             border stripe>
             <el-table-column
                type="index"
                label="序列"
                width="280">
            </el-table-column>
            <el-table-column
                prop="fieldName"
                label="Field名"
                width="280">
31 32 33 34 35
            </el-table-column>
             <el-table-column
                type="fieldDesc"
                label="中文名"
                width="280">
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
            </el-table-column>
            <el-table-column
                prop="fieldJson"
                label="FieldJson"
                width="280">
            </el-table-column>
            <el-table-column
                prop="fieldType"
                label="Field数据类型"
                width="280">
            </el-table-column>
            <el-table-column
                label="操作">
                <template slot-scope="scope">
                    <el-button type="primary" @click="editAndAddField(scope.row)">编辑</el-button>
                    <el-popover
                    placement="top"
                    width="280"
                    v-model="scope.row.visible">
                    <p>这是一段内容这是一段内容确定删除吗?</p>
                    <div style="text-align: right; margin: 0">
                        <el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button>
                        <el-button type="primary" size="mini"  @click="deleteField(scope.$index)">确定</el-button>
                    </div>
                    <el-button type="danger" slot="reference">删除</el-button>
                    </el-popover>
                </template>
            </el-table-column>
            </el-table>
            <!-- 组件列表 -->
        <div class="button-box clearflex">
            <el-button @click="enterForm" type="primary">生成代码包</el-button>
        </div>
    <!-- 组件弹窗 -->
            <el-dialog title="组件内容" :visible.sync="dialogFlag">
                <FieldDialog :dialogMiddle="dialogMiddle" ref="fieldDialog"/>
                <div slot="footer" class="dialog-footer">
                    <el-button @click="closeDialog">取 消</el-button>
                    <el-button type="primary" @click="enterDialog">确 定</el-button>
                </div>
            </el-dialog>
    </div>
</template>
<script>
const fieldTemplate={
            fieldName:"",
82
            fieldDesc:"",
83 84 85 86 87 88
            fieldType:"",
            fieldJson:"",
            columnName:"",
        }

import FieldDialog from "@/view/systemTools/autoCode/component/fieldDialog.vue"
89
import {toUpperCase} from "@/utils/stringFun.js"
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
import {createTemp} from "@/api/autoCode.js"
export default {
    name:"autoCode",
    data(){
        return{
            addFlag:"",
            form:{
                structName:"",
                packageName:"",
                abbreviation:"",
                fields:[]
            },
            rules:{
                structName:[{required: true, message: '请输入结构体名称', trigger: 'blur'}],
                abbreviation:[{required: true, message: '请输入结构体简称', trigger: 'blur'}],
                packageName:[{required: true, message: '请输入包名称', trigger: 'blur'}]
            },
            dialogMiddle:{},
            bk:{},
            dialogFlag:false
        }
    },
    components:{
        FieldDialog
    },
    methods:{
        editAndAddField(item){
            this.dialogFlag = true
            if(item){
                this.addFlag="edit"
                 this.bk=JSON.parse(JSON.stringify(item))
                 this.dialogMiddle = item
            }else{
                this.addFlag="add"
                this.dialogMiddle = JSON.parse(JSON.stringify(fieldTemplate))
            }
        },
        enterDialog(){
            this.$refs.fieldDialog.$refs.fieldDialogFrom.validate((valid) => {
          if (valid) {
            this.dialogMiddle.fieldName = toUpperCase(this.dialogMiddle.fieldName)
            if(this.addFlag=="add"){
                this.form.fields.push(this.dialogMiddle)
            }
            this.dialogFlag = false
          } else {
            return false;
          }
        });
            
        },
        closeDialog(){
            if(this.addFlag=="edit"){
                this.dialogMiddle = this.bk
            }
            this.dialogFlag = false
        },
        deleteField(index){
            this.form.fields.splice(index,1)
        },
        async enterForm(){
Mr.奇淼('s avatar
Mr.奇淼( 已提交
151 152 153 154 155 156 157
            if(this.form.fields.length<=0){
                this.$message({
                    type:"error",
                    message:"请填写至少一个field"
                })
                return false
            }
158 159 160
            this.$refs.autoCodeForm.validate(async (valid) => {
          if (valid) {
            this.form.structName = toUpperCase(this.form.structName)
161 162 163 164 165 166 167
            if(this.form.structName == this.form.abbreviation){
                this.$message({
                    type:"error",
                    message:"structName和struct简称不能相同"
                })
                return false
            }
168
            const data = await createTemp(this.form)
Mr.奇淼('s avatar
Mr.奇淼( 已提交
169
            const blob = new Blob([data])
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
            const fileName = 'ginvueadmin.zip'
            if ('download' in document.createElement('a')) { // 不是IE浏览器
                let url = window.URL.createObjectURL(blob)
                let link = document.createElement('a')
                link.style.display = 'none'
                link.href = url
                link.setAttribute('download', fileName)
                document.body.appendChild(link)
                link.click()
                document.body.removeChild(link) // 下载完成移除元素
                window.URL.revokeObjectURL(url) // 释放掉blob对象
            } else { // IE 10+
                window.navigator.msSaveBlob(blob, fileName)
            }
          } else {
            return false;
          }
        });
        }
    }
}
</script>
<style scope lang="scss">
.button-box {
  padding: 10px 20px;
  .el-button {
    float: right;
  }
}
</style>