123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <template>
- <div>
- <el-dialog
- v-model="state.showDialog"
- destroy-on-close
- :title="title"
- draggable
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- width="600px"
- >
- <el-form :model="form" ref="formRef" size="default" label-width="80px">
- <el-row :gutter="35">
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <el-form-item label="应用" prop="label">
- <el-input v-model="state.app" clearable disabled />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <el-form-item label="上级分组">
- <el-tree-select
- v-model="form.parentId"
- :data="permissionTreeData"
- node-key="id"
- check-strictly
- default-expand-all
- render-after-expand
- fit-input-width
- clearable
- class="w100"
- />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <el-form-item label="视图">
- <el-tree-select
- v-model="form.viewId"
- :data="state.viewTreeData"
- node-key="id"
- :props="{ label: 'path' }"
- default-expand-all
- render-after-expand
- fit-input-width
- clearable
- filterable
- :filter-node-method="onViewFilterNode"
- class="w100"
- @current-change="onViewCurrentChange"
- >
- <template #default="{ data }">
- <span class="my-flex my-flex-between">
- <span>{{ data.label }}</span>
- <span class="my-line-1 my-ml-12" :title="data.path">
- {{ data.path }}
- </span>
- </span>
- </template>
- </el-tree-select>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <el-form-item label="名称" prop="label" :rules="[{ required: true, message: '请输入名称', trigger: ['blur', 'change'] }]">
- <el-input v-model="form.label" clearable />
- </el-form-item>
- </el-col>
- <!-- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <el-form-item label="路由地址" prop="path" :rules="[{ required: true, message: '请输入路由地址', trigger: ['blur', 'change'] }]">
- <el-input v-model="form.path" clearable />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <el-form-item label="路由命名">
- <el-input v-model="form.name" clearable />
- </el-form-item>
- </el-col> -->
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <el-form-item label="图标" prop="icon">
- <my-select-icon v-model="form.icon" clearable />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
- <el-form-item label="排序">
- <el-input-number v-model="form.sort" />
- </el-form-item>
- </el-col>
- <!-- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
- <el-form-item label="启用">
- <el-switch v-model="form.enabled" />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
- <el-form-item label="链接地址">
- <el-input v-model="form.link" clearable placeholder="内嵌/外链链接地址" />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
- <el-form-item label="内嵌窗口">
- <el-switch v-model="form.isIframe" />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
- <el-form-item label="缓存">
- <el-switch v-model="form.isKeepAlive" />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
- <el-form-item label="固定">
- <el-switch v-model="form.isAffix" />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
- <el-form-item label="隐藏">
- <el-switch v-model="form.hidden" />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
- <el-form-item label="新窗口">
- <el-switch v-model="form.newWindow" />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
- <el-form-item label="链接外显">
- <el-switch v-model="form.external" />
- </el-form-item>
- </el-col> -->
- </el-row>
- </el-form>
- <template #footer>
- <span class="dialog-footer">
- <el-button @click="onCancel" size="default">取 消</el-button>
- <el-button type="primary" @click="onSure" size="default" :loading="state.sureLoading">确 定</el-button>
- </span>
- </template>
- </el-dialog>
- </div>
- </template>
- <script lang="ts" setup name="admin/permission/permission-menu-form">
- import { reactive, toRefs, getCurrentInstance, ref, PropType, defineAsyncComponent } from 'vue'
- import { OauthView,OauthPermission,oauthPermissionDto } from '/@/api/admin/data-contracts'
- import { PermissionApi } from '/@/api/admin/Permission'
- import { ViewApi } from '/@/api/admin/View'
- import { listToTree } from '/@/utils/tree'
- import eventBus from '/@/utils/mitt'
- // 引入组件
- const MySelectIcon = defineAsyncComponent(() => import('/@/components/my-select-icon/index.vue'))
- defineProps({
- title: {
- type: String,
- default: '',
- },
- permissionTreeData: {
- type: Array as PropType<OauthPermission[]>,
- default: () => [],
- },
- })
- const { proxy } = getCurrentInstance() as any
- const formRef = ref()
- const state = reactive({
- showDialog: false,
- sureLoading: false,
- form: {} as oauthPermissionDto,
- viewTreeData: [] as OauthView[],
- app:''
- })
- const { form } = toRefs(state)
- const getViews = async (app) => {
- const appDate=await new PermissionApi().getApplyInfo({Name:app})
- const res = await new PermissionApi().getViewInfo({appid:appDate.data[0].id})
- res.data=res.data.map((item)=>{
- if(item.parentId===''||item.parentId===null){
- item.parentId=Number('0')
- item.type=1
- }
- item.parentId=Number(item.parentId)
- return item
- })
- if (res?.success && res.data && res.data.length > 0) {
- state.viewTreeData = listToTree(res.data) as OauthView[]
- } else {
- state.viewTreeData = []
- }
- }
- // 打开对话框
- const open = async (app:any,row: any = {}) => {
- state.app=app
- proxy.$modal.loading()
- await getViews(app)
- // if (row.id > 0) {
- // const res = await new PermissionApi().getPermissionInfo({appid:0,id: row.id}).catch(() => {
- // proxy.$modal.closeLoading()
- // })
- // if (res?.success) {
- // let formData = res.data as oauthPermissionDto
- // formData.parentId = formData.parentId && Number(formData.parentId) > 0 ? formData.parentId : undefined
- // state.form = formData
- // }
- // } else {
- // state.form = { icon: 'ele-Memo' } as oauthPermissionDto
- // }
- state.form=row
- proxy.$modal.closeLoading()
- state.showDialog = true
- }
- const onViewFilterNode = (value: string, data: OauthView) => {
- if (!value) return true
- return data.label?.indexOf(value) !== -1 || data.path?.indexOf(value) !== -1
- }
- const onViewCurrentChange = (data: OauthView) => {
- if (data) {
- if (!state.form.label) {
- state.form.label = data.label
- }
- if (!state.form.viewPath) {
- state.form.viewPath = '/' + data.path
- }
- }
- }
- // 取消
- const onCancel = () => {
- state.showDialog = false
- }
- // 确定
- const onSure = () => {
- formRef.value.validate(async (valid: boolean) => {
- if (!valid) return
- state.sureLoading = true
- let res = {} as any
- state.form.parentId = state.form.parentId && Number(state.form.parentId) > 0 ? state.form.parentId : undefined
- state.form.type=2
- const appData=await new PermissionApi().getApplyInfo({name:state.app})
- state.form.appID=appData.data[0].id
- console.log(state.form)
- if (state.form.id != undefined && state.form.id > 0) {
- res = await new PermissionApi().addAppPermission(state.form, { showSuccessMessage: true }).catch(() => {
- state.sureLoading = false
- })
- } else {
- res = await new PermissionApi().addAppPermission(state.form, { showSuccessMessage: true }).catch(() => {
- state.sureLoading = false
- })
- }
- state.sureLoading = false
- if (res?.success) {
- eventBus.emit('refreshPermission')
- state.showDialog = false
- }
- })
- }
- defineExpose({
- open,
- })
- </script>
- <style scoped lang="scss">
- .my-ml-12 {
- margin-left: 12px;
- }
- </style>
|