【modify】使用ESLint格式化代码

This commit is contained in:
zer0Black
2023-03-01 09:33:58 +08:00
parent 694855ae8b
commit 63369b8b87
400 changed files with 42942 additions and 43132 deletions
@@ -45,67 +45,67 @@
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeroListMixin } from '@/mixins/JeroListMixin'
import GateWayRouteModal from './modules/GateWayRouteModal'
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeroListMixin } from '@/mixins/JeroListMixin'
import GateWayRouteModal from './modules/GateWayRouteModal'
export default {
name: 'TenantList',
mixins: [JeroListMixin, mixinDevice],
components: {
GateWayRouteModal
},
data() {
return {
description: 'adad管理页面',
// 表头
columns: [
{
title: '路由ID',
align: 'center',
dataIndex: 'routerId'
}, {
title: '路由名称',
align: 'center',
dataIndex: 'name'
},
{
title: '路由URI',
align: 'center',
dataIndex: 'uri'
},
{
title: '状态',
align: 'center',
dataIndex: 'status',
scopedSlots: { customRender: 'status' }
},
{
title: '操作',
dataIndex: 'action',
align: 'center',
fixed: 'right',
width: 147,
scopedSlots: { customRender: 'action' }
}
],
url: {
list: '/sys/gatewayRoute/page',
delete: '/sys/gatewayRoute/delete'
export default {
name: 'TenantList',
mixins: [JeroListMixin, mixinDevice],
components: {
GateWayRouteModal
},
data () {
return {
description: 'adad管理页面',
// 表头
columns: [
{
title: '路由ID',
align: 'center',
dataIndex: 'routerId'
}, {
title: '路由名称',
align: 'center',
dataIndex: 'name'
},
dictOptions: {}
}
},
created() {
},
methods: {
showModal(record) {
this.$refs['modalForm'].show(record)
}
{
title: '路由URI',
align: 'center',
dataIndex: 'uri'
},
{
title: '状态',
align: 'center',
dataIndex: 'status',
scopedSlots: { customRender: 'status' }
},
{
title: '操作',
dataIndex: 'action',
align: 'center',
fixed: 'right',
width: 147,
scopedSlots: { customRender: 'action' }
}
],
url: {
list: '/sys/gatewayRoute/page',
delete: '/sys/gatewayRoute/delete'
},
dictOptions: {}
}
},
created () {
},
methods: {
showModal (record) {
this.$refs.modalForm.show(record)
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>
</style>