mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
96 lines
3.0 KiB
Vue
Executable File
96 lines
3.0 KiB
Vue
Executable File
<template>
|
|
<div class="role-dialog">
|
|
<el-dialog :title="title" v-model="dvisible" :show-close="false" :before-close="cancel" width="500px" :destroy-on-close="true">
|
|
<el-form :model="form" label-width="90px">
|
|
<el-form-item prop="name" label="角色名称:" required>
|
|
<el-input v-model="form.name" auto-complete="off"></el-input>
|
|
</el-form-item>
|
|
<el-form-item prop="code" label="角色code:" required>
|
|
<el-input
|
|
:disabled="form.id != null"
|
|
v-model="form.code"
|
|
placeholder="COMMON开头则为所有账号共有角色"
|
|
auto-complete="off"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="角色描述:">
|
|
<el-input v-model="form.remark" type="textarea" :rows="3" placeholder="请输入角色描述"></el-input>
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<el-button @click="cancel()">取 消</el-button>
|
|
<el-button type="primary" :loading="btnLoading" @click="btnOk">确 定</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { toRefs, reactive, watch, defineComponent } from 'vue';
|
|
import { roleApi } from '../api';
|
|
|
|
export default defineComponent({
|
|
name: 'RoleEdit',
|
|
props: {
|
|
visible: {
|
|
type: Boolean,
|
|
},
|
|
data: {
|
|
type: [Boolean, Object],
|
|
},
|
|
title: {
|
|
type: String,
|
|
},
|
|
},
|
|
setup(props: any, { emit }) {
|
|
const state = reactive({
|
|
dvisible: false,
|
|
form: {
|
|
id: null,
|
|
name: '',
|
|
status: 1,
|
|
remark: '',
|
|
},
|
|
btnLoading: false,
|
|
});
|
|
|
|
watch(props, (newValue) => {
|
|
state.dvisible = newValue.visible;
|
|
if (newValue.data) {
|
|
state.form = { ...newValue.data };
|
|
} else {
|
|
state.form = {} as any;
|
|
}
|
|
});
|
|
|
|
const cancel = () => {
|
|
// 更新父组件visible prop对应的值为false
|
|
emit('update:visible', false);
|
|
// 若父组件有取消事件,则调用
|
|
emit('cancel');
|
|
};
|
|
|
|
const btnOk = async () => {
|
|
// let p = state.form.id ? roleApi.update : roleApi.save;
|
|
await roleApi.save.request(state.form);
|
|
emit('val-change', state.form);
|
|
cancel();
|
|
state.btnLoading = true;
|
|
setTimeout(() => {
|
|
state.btnLoading = false;
|
|
}, 1000);
|
|
};
|
|
|
|
return {
|
|
...toRefs(state),
|
|
btnOk,
|
|
cancel,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
<style lang="scss">
|
|
</style>
|