前端eslint调整

This commit is contained in:
piexlMax
2023-09-14 18:47:47 +08:00
parent 636204bbaf
commit a4f86354d3
64 changed files with 3302 additions and 1096 deletions

View File

@@ -2,21 +2,54 @@
<div>
<div class="gva-table-box">
<div class="gva-btn-list">
<el-button type="primary" icon="plus" @click="goAutoCode(null)">新增</el-button>
<el-button
type="primary"
icon="plus"
@click="goAutoCode(null)"
>新增</el-button>
</div>
<el-table :data="tableData">
<el-table-column
type="selection"
width="55"
/>
<el-table-column align="left" label="id" width="60" prop="ID" />
<el-table-column align="left" label="日期" width="180">
<el-table-column
align="left"
label="id"
width="60"
prop="ID"
/>
<el-table-column
align="left"
label="日期"
width="180"
>
<template #default="scope">{{ formatDate(scope.row.CreatedAt) }}</template>
</el-table-column>
<el-table-column align="left" label="结构体名" min-width="150" prop="structName" />
<el-table-column align="left" label="结构体描述" min-width="150" prop="structCNName" />
<el-table-column align="left" label="表名称" min-width="150" prop="tableName" />
<el-table-column align="left" label="回滚标记" min-width="150" prop="flag">
<el-table-column
align="left"
label="结构体名"
min-width="150"
prop="structName"
/>
<el-table-column
align="left"
label="结构体描述"
min-width="150"
prop="structCNName"
/>
<el-table-column
align="left"
label="表名称"
min-width="150"
prop="tableName"
/>
<el-table-column
align="left"
label="回滚标记"
min-width="150"
prop="flag"
>
<template #default="scope">
<el-tag
v-if="scope.row.flag"
@@ -36,13 +69,35 @@
</el-tag>
</template>
</el-table-column>
<el-table-column align="left" label="操作" min-width="240">
<el-table-column
align="left"
label="操作"
min-width="240"
>
<template #default="scope">
<div>
<el-button type="primary" link :disabled="scope.row.flag === 1" @click="rollbackFunc(scope.row,true)">回滚(删表)</el-button>
<el-button type="primary" link :disabled="scope.row.flag === 1" @click="rollbackFunc(scope.row,false)">回滚(不删表)</el-button>
<el-button type="primary" link @click="goAutoCode(scope.row)">复用</el-button>
<el-button type="primary" link @click="deleteRow(scope.row)">删除</el-button>
<el-button
type="primary"
link
:disabled="scope.row.flag === 1"
@click="rollbackFunc(scope.row,true)"
>回滚(删表)</el-button>
<el-button
type="primary"
link
:disabled="scope.row.flag === 1"
@click="rollbackFunc(scope.row,false)"
>回滚(不删表)</el-button>
<el-button
type="primary"
link
@click="goAutoCode(scope.row)"
>复用</el-button>
<el-button
type="primary"
link
@click="deleteRow(scope.row)"
>删除</el-button>
</div>
</template>
</el-table-column>
@@ -62,18 +117,17 @@
</div>
</template>
<script>
export default {
name: 'AutoCodeAdmin',
}
</script>
<script setup>
import { getSysHistory, rollback, delSysHistory } from '@/api/autoCode.js'
import { useRouter } from 'vue-router'
import { ElMessage, ElMessageBox } from 'element-plus'
import { ref } from 'vue'
import { formatDate } from '@/utils/format'
defineOptions({
name: 'AutoCodeAdmin'
})
const router = useRouter()
const page = ref(1)