mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-27 01:32:03 +08:00
pref: footer 添加字体尺寸
This commit is contained in:
parent
270b68bd7b
commit
9532570491
@ -17,6 +17,6 @@ const title = computed(() => appStore.getTitle)
|
|||||||
:class="prefixCls"
|
:class="prefixCls"
|
||||||
class="text-center text-[var(--el-text-color-placeholder)] bg-[var(--app-contnet-bg-color)] h-[var(--app-footer-height)] leading-[var(--app-footer-height)] dark:bg-[var(--el-bg-color)]"
|
class="text-center text-[var(--el-text-color-placeholder)] bg-[var(--app-contnet-bg-color)] h-[var(--app-footer-height)] leading-[var(--app-footer-height)] dark:bg-[var(--el-bg-color)]"
|
||||||
>
|
>
|
||||||
Copyright ©2022-{{ title }}
|
<p style="font-size: 14px">Copyright ©2022-{{ title }}</p>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import './dataTimePicker'
|
import './dataTimePicker'
|
||||||
import './dict'
|
import './dict'
|
||||||
|
import './html'
|
||||||
import './link'
|
import './link'
|
||||||
import './img'
|
import './img'
|
||||||
|
@ -182,7 +182,6 @@ const submitForm = async () => {
|
|||||||
const data = unref(formRef)?.formModel as DeptApi.DeptVO
|
const data = unref(formRef)?.formModel as DeptApi.DeptVO
|
||||||
data.parentId = deptParentId.value
|
data.parentId = deptParentId.value
|
||||||
data.leaderUserId = leaderUserId.value
|
data.leaderUserId = leaderUserId.value
|
||||||
console.info(data)
|
|
||||||
if (actionType.value === 'create') {
|
if (actionType.value === 'create') {
|
||||||
await DeptApi.createDeptApi(data)
|
await DeptApi.createDeptApi(data)
|
||||||
message.success(t('common.createSuccess'))
|
message.success(t('common.createSuccess'))
|
||||||
|
@ -188,7 +188,6 @@ const handleDataUpdate = async (rowId: number) => {
|
|||||||
const parentType = ref('')
|
const parentType = ref('')
|
||||||
const tableTypeSelect = ref(false)
|
const tableTypeSelect = ref(false)
|
||||||
const cellClickEvent: VxeTableEvents.CellClick = async ({ row }) => {
|
const cellClickEvent: VxeTableEvents.CellClick = async ({ row }) => {
|
||||||
console.info(row['type'])
|
|
||||||
tableTypeSelect.value = true
|
tableTypeSelect.value = true
|
||||||
queryParams.dictType = row['type']
|
queryParams.dictType = row['type']
|
||||||
await dataGetList(xDataGrid)
|
await dataGetList(xDataGrid)
|
||||||
|
Loading…
Reference in New Issue
Block a user