mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
feat: add the configuration of disable animation; 🌟
新增:禁用页面切换动画的功能;
This commit is contained in:
parent
d78f6d61d7
commit
9d5c100960
@ -67,6 +67,10 @@
|
|||||||
<a-divider />
|
<a-divider />
|
||||||
<setting-item :title="$t('animate.title')">
|
<setting-item :title="$t('animate.title')">
|
||||||
<a-list :split="false">
|
<a-list :split="false">
|
||||||
|
<a-list-item>
|
||||||
|
{{$t('animate.disable')}}
|
||||||
|
<a-switch :checked="animate.disabled" slot="actions" size="small" @change="val => setAnimate({...animate, disabled: val})" />
|
||||||
|
</a-list-item>
|
||||||
<a-list-item>
|
<a-list-item>
|
||||||
{{$t('animate.effect')}}
|
{{$t('animate.effect')}}
|
||||||
<a-select
|
<a-select
|
||||||
@ -139,17 +143,17 @@ export default {
|
|||||||
const dftValue = setting[key], myValue = mySetting[key]
|
const dftValue = setting[key], myValue = mySetting[key]
|
||||||
// 只提取与默认配置不同的配置项
|
// 只提取与默认配置不同的配置项
|
||||||
if (dftValue != undefined && !fastEqual(dftValue, myValue)) {
|
if (dftValue != undefined && !fastEqual(dftValue, myValue)) {
|
||||||
console.log(myValue)
|
|
||||||
config[key] = myValue
|
config[key] = myValue
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.copyConfig = '// 自定义配置,参考 ./default/setting.js,需要自定义的属性在这里配置即可\n'
|
this.copyConfig = '// 自定义配置,参考 ./default/setting.config.js,需要自定义的属性在这里配置即可\n'
|
||||||
this.copyConfig += 'module.exports = '
|
this.copyConfig += 'module.exports = '
|
||||||
this.copyConfig += formatConfig(config)
|
this.copyConfig += formatConfig(config)
|
||||||
|
|
||||||
let clipboard = new Clipboard('#copyBtn')
|
let clipboard = new Clipboard('#copyBtn')
|
||||||
const _this = this
|
const _this = this
|
||||||
clipboard.on('success', function () {
|
clipboard.on('success', function () {
|
||||||
_this.$message.success(`复制成功`)
|
_this.$message.success(`复制成功,覆盖文件 src/config/config.js 然后重启项目即可生效`)
|
||||||
clipboard.destroy()
|
clipboard.destroy()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -28,6 +28,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
animate: {
|
animate: {
|
||||||
title: '页面切换动画',
|
title: '页面切换动画',
|
||||||
|
disable: '禁用动画',
|
||||||
effect: '动画效果',
|
effect: '动画效果',
|
||||||
direction: '动画方向'
|
direction: '动画方向'
|
||||||
},
|
},
|
||||||
@ -62,6 +63,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
animate: {
|
animate: {
|
||||||
title: '頁面切換動畫',
|
title: '頁面切換動畫',
|
||||||
|
disable: '禁用動畫',
|
||||||
effect: '動畫效果',
|
effect: '動畫效果',
|
||||||
direction: '動畫方向'
|
direction: '動畫方向'
|
||||||
},
|
},
|
||||||
@ -96,6 +98,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
animate: {
|
animate: {
|
||||||
title: 'Page Toggle Animation',
|
title: 'Page Toggle Animation',
|
||||||
|
disable: 'Disable',
|
||||||
effect: 'Effect',
|
effect: 'Effect',
|
||||||
direction: 'Direction'
|
direction: 'Direction'
|
||||||
},
|
},
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<transition
|
<transition
|
||||||
:enter-active-class="`animated ${enterAnimate} page-toggle-enter-active`"
|
:enter-active-class="disabled ? 'animate-disabled' : `animated ${enterAnimate} page-toggle-enter-active`"
|
||||||
:leave-active-class="`animated ${leaveAnimate} page-toggle-leave-active`"
|
:leave-active-class="disabled ? 'animate-disabled' : `animated ${leaveAnimate} page-toggle-leave-active`"
|
||||||
>
|
>
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</transition>
|
</transition>
|
||||||
@ -13,6 +13,10 @@
|
|||||||
export default {
|
export default {
|
||||||
name: 'PageToggleTransition',
|
name: 'PageToggleTransition',
|
||||||
props: {
|
props: {
|
||||||
|
disabled: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
animate: {
|
animate: {
|
||||||
type: String,
|
type: String,
|
||||||
validator(value) {
|
validator(value) {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// 自定义配置,参考 ./default/setting.js,需要自定义的属性在这里配置即可
|
// 自定义配置,参考 ./default/setting.config.js,需要自定义的属性在这里配置即可
|
||||||
module.exports = {
|
module.exports = {
|
||||||
theme: {
|
theme: {
|
||||||
color: '#13c2c2',
|
color: '#13c2c2',
|
||||||
|
@ -14,6 +14,7 @@ module.exports = {
|
|||||||
systemName: 'Vue Antd Admin', //系统名称
|
systemName: 'Vue Antd Admin', //系统名称
|
||||||
copyright: '2018 ICZER 工作室出品', //copyright
|
copyright: '2018 ICZER 工作室出品', //copyright
|
||||||
animate: { //动画设置
|
animate: { //动画设置
|
||||||
|
disabled: false, //禁用动画,true:禁用,false:启用
|
||||||
name: 'bounce', //动画效果,支持的动画效果可参考 ./animate.config.js
|
name: 'bounce', //动画效果,支持的动画效果可参考 ./animate.config.js
|
||||||
direction: 'left' //动画方向,切换页面时动画的方向,参考 ./animate.config.js
|
direction: 'left' //动画方向,切换页面时动画的方向,参考 ./animate.config.js
|
||||||
},
|
},
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<page-toggle-transition :animate="animate.name" :direction="animate.direction">
|
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
||||||
<keep-alive v-if="multiPage">
|
<keep-alive v-if="multiPage">
|
||||||
<router-view />
|
<router-view />
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<div v-if="this.extraImage && !isMobile" slot="extra" class="extraImg">
|
<div v-if="this.extraImage && !isMobile" slot="extra" class="extraImg">
|
||||||
<img :src="extraImage"/>
|
<img :src="extraImage"/>
|
||||||
</div>
|
</div>
|
||||||
<page-toggle-transition :animate="animate.name" :direction="animate.direction">
|
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
||||||
<keep-alive v-if="multiPage">
|
<keep-alive v-if="multiPage">
|
||||||
<router-view ref="page" />
|
<router-view ref="page" />
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
</a-tabs>
|
</a-tabs>
|
||||||
<div class="tabs-view-content">
|
<div class="tabs-view-content">
|
||||||
<page-toggle-transition :animate="animate.name" :direction="animate.direction">
|
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
||||||
<keep-alive v-if="multiPage">
|
<keep-alive v-if="multiPage">
|
||||||
<router-view />
|
<router-view />
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user