fix: 底脚版权声明样式
This commit is contained in:
@@ -3,12 +3,14 @@ import { GlobalFooter } from '@ant-design-vue/pro-layout';
|
||||
import { message } from 'ant-design-vue/lib';
|
||||
import { reactive, onMounted } from 'vue';
|
||||
import useUserStore from '@/store/modules/user';
|
||||
import useAppStore from '@/store/modules/app';
|
||||
import { getCaptchaImage } from '@/api/login';
|
||||
import { useRouter, useRoute } from 'vue-router';
|
||||
import useI18n from '@/hooks/useI18n';
|
||||
import { toRaw } from 'vue';
|
||||
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
||||
const { t, changeLocale } = useI18n();
|
||||
const appStore = useAppStore();
|
||||
const router = useRouter();
|
||||
const route = useRoute();
|
||||
|
||||
@@ -20,9 +22,9 @@ let state = reactive({
|
||||
/**表单属性 */
|
||||
from: {
|
||||
/**账号 */
|
||||
username: '',
|
||||
username: 'AGrand',
|
||||
/**密码 */
|
||||
password: '',
|
||||
password: 'AGrand@1234',
|
||||
/**验证码 */
|
||||
code: '',
|
||||
/**验证码uuid */
|
||||
@@ -251,16 +253,7 @@ function fnChangeLocale(e: any) {
|
||||
</a-form>
|
||||
</div>
|
||||
|
||||
<GlobalFooter
|
||||
class="footer"
|
||||
:links="[
|
||||
{ blankTarget: false, title: t('globalFooter.help'), href: '/' },
|
||||
{ blankTarget: false, title: t('globalFooter.privacy'), href: '/' },
|
||||
{ blankTarget: false, title: t('globalFooter.term'), href: '/' },
|
||||
]"
|
||||
copyright="Copyright ©2023 For AGrand 千通"
|
||||
>
|
||||
</GlobalFooter>
|
||||
<GlobalFooter class="footer" :links="false" :copyright="appStore.copyright" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user