You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
398 lines
9.6 KiB
398 lines
9.6 KiB
<template> |
|
<basic-container> |
|
<avue-crud |
|
:option="option" |
|
:table-loading="loading" |
|
:data="data" |
|
v-model:page="page" |
|
@row-del="rowDel" |
|
v-model="form" |
|
ref="crud" |
|
:permission="permissionList" |
|
@row-update="rowUpdate" |
|
@row-save="rowSave" |
|
:before-open="beforeOpen" |
|
@search-change="searchChange" |
|
@search-reset="searchReset" |
|
@selection-change="selectionChange" |
|
@current-change="currentChange" |
|
@size-change="sizeChange" |
|
@refresh-change="refreshChange" |
|
@on-load="onLoad" |
|
> |
|
<template #menu-left> |
|
<el-button |
|
type="danger" |
|
icon="el-icon-delete" |
|
plain |
|
v-if="permission.client_delete" |
|
@click="handleDelete" |
|
>删 除 |
|
</el-button> |
|
</template> |
|
</avue-crud> |
|
</basic-container> |
|
</template> |
|
|
|
<script> |
|
import { getList, getDetail, add, update, remove } from '@/api/system/client'; |
|
import { mapGetters } from 'vuex'; |
|
|
|
export default { |
|
data() { |
|
return { |
|
form: {}, |
|
query: {}, |
|
loading: true, |
|
page: { |
|
pageSize: 10, |
|
currentPage: 1, |
|
total: 0, |
|
}, |
|
selectionList: [], |
|
option: { |
|
height: 'auto', |
|
calcHeight: 32, |
|
tip: false, |
|
searchShow: true, |
|
searchMenuSpan: 6, |
|
border: true, |
|
index: true, |
|
viewBtn: true, |
|
grid: true, |
|
selection: true, |
|
dialogClickModal: false, |
|
searchLabelPosition:'left', |
|
searchLabelPosition:'left', |
|
searchGutter:24, |
|
searchSpan:6, |
|
menuAlign: 'left', |
|
gridBtn:false, |
|
searchMenuPosition:'right', |
|
addBtnIcon: ' ', |
|
viewBtnIcon: ' ', |
|
delBtnIcon: ' ', |
|
editBtnIcon: ' ', |
|
searchShowBtn:false, |
|
align: 'center', |
|
column: [ |
|
{ |
|
label: '应用id', |
|
prop: 'clientId', |
|
search: true, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请输入客户端id', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '应用密钥', |
|
prop: 'clientSecret', |
|
search: true, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请输入客户端密钥', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '授权类型', |
|
prop: 'authorizedGrantTypes', |
|
type: 'checkbox', |
|
value: 'refresh_token,password,authorization_code,captcha,social,sms_code,register', |
|
dicData: [ |
|
{ |
|
label: 'refresh_token', |
|
value: 'refresh_token', |
|
}, |
|
{ |
|
label: 'password', |
|
value: 'password', |
|
}, |
|
{ |
|
label: 'authorization_code', |
|
value: 'authorization_code', |
|
}, |
|
{ |
|
label: 'captcha', |
|
value: 'captcha', |
|
}, |
|
{ |
|
label: 'social', |
|
value: 'social', |
|
}, |
|
{ |
|
label: 'sms_code', |
|
value: 'sms_code', |
|
}, |
|
{ |
|
label: 'register', |
|
value: 'register', |
|
}, |
|
], |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请输入授权类型', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '授权范围', |
|
prop: 'scope', |
|
value: 'all', |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请输入授权范围', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '令牌秒数', |
|
prop: 'accessTokenValidity', |
|
type: 'number', |
|
value: 3600, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请输入令牌过期秒数', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '刷新秒数', |
|
prop: 'refreshTokenValidity', |
|
type: 'number', |
|
value: 604800, |
|
hide: true, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请输入刷新令牌过期秒数', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '回调地址', |
|
prop: 'webServerRedirectUri', |
|
hide: true, |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请输入回调地址', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '自动授权', |
|
prop: 'autoapprove', |
|
hide: true, |
|
type: 'radio', |
|
dicData: [ |
|
{ |
|
label: '是', |
|
value: 'true', |
|
}, |
|
{ |
|
label: '否', |
|
value: 'false', |
|
}, |
|
], |
|
value: 'true', |
|
rules: [ |
|
{ |
|
required: true, |
|
message: '请输入自动授权', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '资源集合', |
|
prop: 'resourceIds', |
|
hide: true, |
|
rules: [ |
|
{ |
|
message: '请输入资源集合', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '权限', |
|
prop: 'authorities', |
|
hide: true, |
|
rules: [ |
|
{ |
|
message: '请输入权限', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
{ |
|
label: '附加说明', |
|
hide: true, |
|
prop: 'additionalInformation', |
|
span: 24, |
|
rules: [ |
|
{ |
|
message: '请输入附加说明', |
|
trigger: 'blur', |
|
}, |
|
], |
|
}, |
|
], |
|
}, |
|
data: [], |
|
}; |
|
}, |
|
computed: { |
|
...mapGetters(['permission']), |
|
permissionList() { |
|
return { |
|
addBtn: this.validData(this.permission.client_add), |
|
viewBtn: this.validData(this.permission.client_view), |
|
delBtn: this.validData(this.permission.client_delete), |
|
editBtn: this.validData(this.permission.client_edit), |
|
}; |
|
}, |
|
ids() { |
|
let ids = []; |
|
this.selectionList.forEach(ele => { |
|
ids.push(ele.id); |
|
}); |
|
return ids.join(','); |
|
}, |
|
}, |
|
methods: { |
|
rowSave(row, done, loading) { |
|
add(row).then( |
|
() => { |
|
this.onLoad(this.page); |
|
this.$message({ |
|
type: 'success', |
|
message: '操作成功!', |
|
}); |
|
done(); |
|
}, |
|
error => { |
|
window.console.log(error); |
|
loading(); |
|
} |
|
); |
|
}, |
|
rowUpdate(row, index, done, loading) { |
|
update(row).then( |
|
() => { |
|
this.onLoad(this.page); |
|
this.$message({ |
|
type: 'success', |
|
message: '操作成功!', |
|
}); |
|
done(); |
|
}, |
|
error => { |
|
window.console.log(error); |
|
loading(); |
|
} |
|
); |
|
}, |
|
rowDel(row) { |
|
this.$confirm('确定将选择数据删除?', { |
|
confirmButtonText: '确定', |
|
cancelButtonText: '取消', |
|
type: 'warning', |
|
}) |
|
.then(() => { |
|
return remove(row.id); |
|
}) |
|
.then(() => { |
|
this.onLoad(this.page); |
|
this.$message({ |
|
type: 'success', |
|
message: '操作成功!', |
|
}); |
|
}); |
|
}, |
|
searchReset() { |
|
this.query = {}; |
|
this.onLoad(this.page); |
|
}, |
|
searchChange(params, done) { |
|
this.query = params; |
|
this.page.currentPage = 1; |
|
this.onLoad(this.page, params); |
|
done(); |
|
}, |
|
selectionChange(list) { |
|
this.selectionList = list; |
|
}, |
|
selectionClear() { |
|
this.selectionList = []; |
|
this.$refs.crud.toggleSelection(); |
|
}, |
|
handleDelete() { |
|
if (this.selectionList.length === 0) { |
|
this.$message.warning('请选择至少一条数据'); |
|
return; |
|
} |
|
this.$confirm('确定将选择数据删除?', { |
|
confirmButtonText: '确定', |
|
cancelButtonText: '取消', |
|
type: 'warning', |
|
}) |
|
.then(() => { |
|
return remove(this.ids); |
|
}) |
|
.then(() => { |
|
this.onLoad(this.page); |
|
this.$message({ |
|
type: 'success', |
|
message: '操作成功!', |
|
}); |
|
this.$refs.crud.toggleSelection(); |
|
}); |
|
}, |
|
beforeOpen(done, type) { |
|
if (['edit', 'view'].includes(type)) { |
|
getDetail(this.form.id).then(res => { |
|
this.form = res.data.data; |
|
}); |
|
} |
|
done(); |
|
}, |
|
currentChange(currentPage) { |
|
this.page.currentPage = currentPage; |
|
}, |
|
sizeChange(pageSize) { |
|
this.page.pageSize = pageSize; |
|
}, |
|
refreshChange() { |
|
this.onLoad(this.page, this.query); |
|
}, |
|
onLoad(page, params = {}) { |
|
this.loading = true; |
|
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
|
const data = res.data.data; |
|
this.page.total = data.total; |
|
this.data = data.records; |
|
this.loading = false; |
|
this.selectionClear(); |
|
}); |
|
}, |
|
}, |
|
}; |
|
</script> |
|
|
|
<style></style>
|
|
|