Compare commits

..

No commits in common. "2d586c19de3d16216df68694faa4ca568b1cb6b7" and "19fd321a4ed463c1e9eaaa785e5f3c1046bc5b2e" have entirely different histories.

4 changed files with 10 additions and 7 deletions

View File

@ -69,8 +69,8 @@ export default {
width: 100%;
& .sidebar-logo {
width: 26px;
height: 26px;
width: 36px;
height: 36px;
vertical-align: middle;
margin-right: 12px;
}

View File

@ -1,7 +1,7 @@
<template>
<div class="app-container">
<head-form :form-config="headFormConfig" @headBtnClick="btnClick" />
<div style="text-align:left">
<div style="text-align:right">
<span>合计 265395</span>
</div>
<base-table

View File

@ -9,7 +9,7 @@
<template>
<div class="app-container">
<head-form :form-config="headFormConfig" @headBtnClick="btnClick" />
<div style="text-align:left">
<div style="text-align:right">
<span>合计 265395</span>
</div>
<base-table

View File

@ -61,10 +61,12 @@ const tableProps = [{
align: 'center'
}, {
prop: 'name',
label: i18n.t('roleManage.roleName')
label: i18n.t('roleManage.roleName'),
align: 'center'
}, {
prop: 'enabled',
label: i18n.t('roleManage.status')
label: i18n.t('roleManage.status'),
align: 'center'
},
// {
// prop: 'category',
@ -74,7 +76,8 @@ const tableProps = [{
// },
{
prop: 'remark',
label: i18n.t('roleManage.remark')
label: i18n.t('roleManage.remark'),
align: 'center'
}]
import AddForm from './AddForm'
import EditForm from './EditForm'