| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <title>Tpamis</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1, maximum-scale=1"
- />
- <link rel="icon" type="image/x-ico" href=""/>
- <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
- <!-- amis 部分代码 -->
- <link rel="stylesheet" href="./public/static/amis-sdk/sdk.css">
- <link rel="stylesheet" href="./public/static/amis-sdk/helper.css">
- <link rel="stylesheet" href="./public/static/amis-sdk/iconfont.css">
- <link rel="stylesheet" href="./public/static/fonts/remixicon.css">
- </head>
- <body>
- <script type='text/javascript' src='./public/static/amis-sdk/sdk.js'></script>
- <script type='text/javascript' src='./public/static/amis-static/history.js'></script>
- <div id="root" class="app-wrapper"></div>
- <style>
- :root {
- --Layout-header-bg: #f5f5f5;
- }
- </style>
- <script>
- (function () {
- let amis = amisRequire('amis/embed');
- const match = amisRequire('path-to-regexp').match;
- // 如果想用 browserHistory 请切换下这处代码, 其他不用变
- const history = History.createBrowserHistory();
- // const history = History.createHashHistory();
- const header = {
- "type": "page",
- "initApi": "/api/sys_user_info",
- "body": {
- "type": "flex",
- "justify": "flex-end",
- "items": [
- {
- "size": 30,
- "type": "avatar",
- "fit": "contain",
- "src": "${avatar}"
- },
- {
- "type": "dropdown-button",
- "label": "名字e",
- "className": "header-menu",
- "buttons": [
- {
- "type": "button",
- "label": "个人信息",
- "actionType": "link",
- "link": "/view/user_info"
- },
- {
- "type": "button",
- "actionType": "url",
- "url": "/login/out",
- "blank": false,
- "confirmText": "确定要退出吗",
- "label": "退出登录"
- }
- ]
- }
- ]
- }
- }
- const asideBefore = {
- "type": "service",
- "className": "bg-none p-3",
- "api": "/api/sys_user_info",
- "body": [
- {
- "type": "button-group",
- "tiled": true,
- "buttons": [
- {
- "type": "button",
- "label": "名字",
- "level": "dark",
- "actionType": "link",
- "link": "/view/user_info"
- },
- {
- "type": "button",
- "label": "退出",
- "actionType": "url",
- "confirmText": "确定要退出吗",
- "url": "/login/out",
- "blank": false,
- "level": "dark"
- }
- ]
- }
- ]
- }
- const app = {
- type: 'app',
- brandName: '应用名称',
- className: 'schema-wrapper',
- // logo: '{$Think.config.amis.logo}',
- // header: {com:slot code="sys_header_pc" platform="pc"},
- header:{
- "type": "page",
- "initApi": "/api/sys_user_info",
- "body": {
- "type": "flex",
- "justify": "flex-end",
- "items": [
- {
- "size": 30,
- "type": "avatar",
- "fit": "contain",
- "src": "${avatar}"
- },
- {
- "type": "dropdown-button",
- "label": "名字e",
- "className": "header-menu",
- "buttons": [
- {
- "type": "button",
- "label": "个人信息",
- "actionType": "link",
- "link": "/view/user_info"
- },
- {
- "type": "button",
- "actionType": "url",
- "url": "/login/out",
- "blank": false,
- "confirmText": "确定要退出吗",
- "label": "退出登录"
- }
- ]
- }
- ]
- }
- },
- // asideBefore: {com:slot code="sys_userinfo_mobile" platform="mobile"},
-
- api: '/sys/menu'
- };
- function normalizeLink(to, location = history.location) {
- to = to || '';
- if (to && to[0] === '#') {
- to = location.pathname + location.search + to;
- } else if (to && to[0] === '?') {
- to = location.pathname + to;
- }
- const idx = to.indexOf('?');
- const idx2 = to.indexOf('#');
- let pathname = ~idx
- ? to.substring(0, idx)
- : ~idx2
- ? to.substring(0, idx2)
- : to;
- let search = ~idx ? to.substring(idx, ~idx2 ? idx2 : undefined) : '';
- let hash = ~idx2 ? to.substring(idx2) : location.hash;
- if (!pathname) {
- pathname = location.pathname;
- } else if (pathname[0] != '/' && !/^https?\:\/\//.test(pathname)) {
- let relativeBase = location.pathname;
- const paths = relativeBase.split('/');
- paths.pop();
- let m;
- while ((m = /^\.\.?\//.exec(pathname))) {
- if (m[0] === '../') {
- paths.pop();
- }
- pathname = pathname.substring(m[0].length);
- }
- pathname = paths.concat(pathname).join('/');
- }
- return pathname + search + hash;
- }
- function isCurrentUrl(to, ctx) {
- if (!to) {
- return false;
- }
- const pathname = history.location.pathname;
- const link = normalizeLink(to, {
- ...location,
- pathname,
- hash: ''
- });
- if (!~link.indexOf('http') && ~link.indexOf(':')) {
- let strict = ctx && ctx.strict;
- return match(link, {
- decode: decodeURIComponent,
- strict: typeof strict !== 'undefined' ? strict : true
- })(pathname);
- }
- return decodeURI(pathname) === link;
- }
- let amisInstance = amis.embed(
- '#root',
- app,
- {
- location: history.location
- },
- {
- // watchRouteChange: fn => {
- // return history.listen(fn);
- // },
- updateLocation: (location, replace) => {
- location = normalizeLink(location);
- if (location === 'goBack') {
- return history.goBack();
- } else if (
- (!/^https?\:\/\//.test(location) &&
- location ===
- history.location.pathname + history.location.search) ||
- location === history.location.href
- ) {
- // 目标地址和当前地址一样,不处理,免得重复刷新
- return;
- } else if (/^https?\:\/\//.test(location) || !history) {
- return (window.location.href = location);
- }
- history[replace ? 'replace' : 'push'](location);
- },
- jumpTo: (to, action) => {
- if (to === 'goBack') {
- return history.goBack();
- }
- to = normalizeLink(to);
- if (isCurrentUrl(to)) {
- return;
- }
- if (action && action.actionType === 'url') {
- action.blank === false
- ? (window.location.href = to)
- : window.open(to, '_blank');
- return;
- } else if (action && action.blank) {
- window.open(to, '_blank');
- return;
- }
- if (/^https?:\/\//.test(to)) {
- window.location.href = to;
- } else if (
- (!/^https?\:\/\//.test(to) &&
- to === history.pathname + history.location.search) ||
- to === history.location.href
- ) {
- // do nothing
- } else {
- history.push(to);
- }
- },
- isCurrentUrl: isCurrentUrl
- // theme: '{$Think.config.amis.amis_theme}'
- }
- );
- history.listen(state => {
- amisInstance.updateProps({
- location: state.location || state
- });
- });
- })();
- </script>
- </body>
- </html>
|