mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-26 17:36:35 +08:00
88 lines
2.6 KiB
Vue
88 lines
2.6 KiB
Vue
|
|
<template>
|
||
|
|
<div class="role-dialog">
|
||
|
|
<el-dialog :title="title" v-model="visible" :show-close="false" :before-close="cancel" width="500px">
|
||
|
|
<el-form :model="form" size="small" label-width="90px">
|
||
|
|
<el-form-item label="角色名称:" required>
|
||
|
|
<el-input v-model="form.name" 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 type="primary" :loading="btnLoading" @click="btnOk" size="small">确 定</el-button>
|
||
|
|
<el-button @click="cancel()" size="small">取 消</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({
|
||
|
|
visible: false,
|
||
|
|
form: {
|
||
|
|
id: null,
|
||
|
|
name: '',
|
||
|
|
status: 1,
|
||
|
|
remark: '',
|
||
|
|
},
|
||
|
|
btnLoading: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
watch(props, (newValue, oldValue) => {
|
||
|
|
state.visible = 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>
|