【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
@@ -41,17 +41,17 @@
</template>
<script>
import { postAction, getAction, } from '@/api/manage'
import { postAction, getAction } from '@/api/manage'
import Vue from 'vue'
import { ACCESS_TOKEN } from '@/store/mutation-types'
export default {
name: 'RoleAssignment',
components: {},
data() {
data () {
return {
token:Vue.ls.get(ACCESS_TOKEN),
title: "角色配置",
token: Vue.ls.get(ACCESS_TOKEN),
title: '角色配置',
total: 0,
selectedRowKeysDate: {},
loading: false,
@@ -69,7 +69,7 @@ export default {
form: {},
rules: {},
areaTable: [],
flag: false, //表单提交标识
flag: false, // 表单提交标识
spinLoading: false,
confirmLoading: false,
selectedRowKeys: [],
@@ -84,11 +84,11 @@ export default {
require: true
}
},
mounted() {
mounted () {
this.loadData()
},
methods: {
loadData() {
loadData () {
this.loading = true
getAction(`sys/role/queryall`, {}).then(res => {
if (res.success) {
@@ -98,18 +98,18 @@ export default {
this.loading = false
})
},
show(){
this.visible = true;
show () {
this.visible = true
},
handleCancel() {
this.visible = false;
handleCancel () {
this.visible = false
this.$emit('rolevisible', false)
},
//保存
handleSubmit() {
let param = {ids: this.selectedRowKeysArray.join(','), selectedroles: `${this.selectedRole.join(',')}` }
// 保存
handleSubmit () {
const param = { ids: this.selectedRowKeysArray.join(','), selectedroles: `${this.selectedRole.join(',')}` }
postAction('/sys/user/setRole', param).then((res) => {
this.visible = false;
this.visible = false
if (res.success) {
this.$emit('rolevisible', false)
this.$message.success(res.message)
@@ -161,4 +161,4 @@ export default {
}
}
</style>
</style>