提交 21f7a854 编写于 作者: 无木

fix(demo): account list page validate and save

上级 8e4f486f
......@@ -16,6 +16,7 @@
emits: ['success', 'register'],
setup(_, { emit }) {
const isUpdate = ref(true);
const rowId = ref('');
const [registerForm, { setFieldsValue, updateSchema, resetFields, validate }] = useForm({
labelWidth: 100,
......@@ -32,6 +33,7 @@
isUpdate.value = !!data?.isUpdate;
if (unref(isUpdate)) {
rowId.value = data.record.id;
setFieldsValue({
...data.record,
});
......@@ -59,7 +61,7 @@
// TODO custom api
console.log(values);
closeModal();
emit('success');
emit('success', { isUpdate: unref(isUpdate), values: { ...values, id: rowId.value } });
} finally {
setModalProps({ confirmLoading: false });
}
......
......@@ -61,7 +61,7 @@ export const accountFormSchema: FormSchema[] = [
label: '密码',
component: 'InputPassword',
required: true,
show: false,
ifShow: false,
},
{
label: '角色',
......
......@@ -45,9 +45,10 @@
components: { BasicTable, PageWrapper, DeptTree, AccountModal, TableAction },
setup() {
const [registerModal, { openModal }] = useModal();
const [registerTable, { reload }] = useTable({
const [registerTable, { reload, updateTableDataRecord }] = useTable({
title: '账号列表',
api: getAccountList,
rowKey: 'id',
columns,
formConfig: {
labelWidth: 120,
......@@ -82,8 +83,15 @@
console.log(record);
}
function handleSuccess() {
reload();
function handleSuccess({ isUpdate, values }) {
if (isUpdate) {
// 演示不刷新表格直接更新内部数据。
// 注意:updateTableDataRecord要求表格的rowKey属性为string并且存在于每一行的record的keys中
const result = updateTableDataRecord(values.id, values);
console.log(result);
} else {
reload();
}
}
function handleSelect(deptId = '') {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册