├── _config.yml ├── dist ├── robots.txt ├── img │ ├── logo.15eb1df8.png │ ├── star_back.a22700c5.png │ ├── icons │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── mstile-150x150.png │ │ ├── apple-touch-icon.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── msapplication-icon-144x144.png │ │ ├── android-chrome-maskable-192x192.png │ │ ├── android-chrome-maskable-512x512.png │ │ └── safari-pinned-tab.svg │ ├── add.d47d282b.svg │ ├── delete.b6bbbf94.svg │ ├── close.b2ffde26.svg │ ├── back.bade37cb.svg │ ├── about.facbd5bf.svg │ ├── menu.c6c92fec.svg │ └── qrcode0.ccd4d4ec.svg ├── manifest.json ├── service-worker.js ├── index.html ├── precache-manifest.26e87d138469847cd1d0c15b97bb39d5.js └── js │ └── app.2414cbfa.js ├── public ├── robots.txt ├── img │ └── icons │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── mstile-150x150.png │ │ ├── apple-touch-icon.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── msapplication-icon-144x144.png │ │ ├── android-chrome-maskable-192x192.png │ │ ├── android-chrome-maskable-512x512.png │ │ └── safari-pinned-tab.svg └── index.html ├── src ├── assets │ ├── logo.png │ ├── add.svg │ ├── delete.svg │ ├── close.svg │ ├── about.svg │ ├── back.svg │ └── menu.svg ├── components │ └── fake │ │ ├── stars.png │ │ ├── star_back.png │ │ ├── 4c338eb8.chunk.css │ │ ├── QRCode.vue │ │ ├── Fake.vue │ │ ├── a843def6.chunk.css │ │ ├── 41a291b0.chunk.css │ │ ├── 8593bd49.chunk.css │ │ ├── 5de02372.chunk.css │ │ ├── 9c25fb71.chunk.css │ │ └── qrcode0.svg ├── main.js ├── registerServiceWorker.js ├── app.css └── App.vue ├── babel.config.js ├── jsconfig.json ├── .gitignore ├── vue.config.js ├── README.md ├── LICENSE └── package.json /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal -------------------------------------------------------------------------------- /dist/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /dist/img/logo.15eb1df8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/logo.15eb1df8.png -------------------------------------------------------------------------------- /dist/img/star_back.a22700c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/star_back.a22700c5.png -------------------------------------------------------------------------------- /src/components/fake/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/stars.png -------------------------------------------------------------------------------- /dist/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /dist/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /dist/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /src/components/fake/star_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/star_back.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /dist/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /dist/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /dist/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue' 2 | import App from './App.vue' 3 | import './registerServiceWorker' 4 | 5 | createApp(App).mount('#app') -------------------------------------------------------------------------------- /dist/img/icons/android-chrome-maskable-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/android-chrome-maskable-192x192.png -------------------------------------------------------------------------------- /dist/img/icons/android-chrome-maskable-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/android-chrome-maskable-512x512.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-maskable-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/android-chrome-maskable-192x192.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-maskable-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/android-chrome-maskable-512x512.png -------------------------------------------------------------------------------- /src/assets/add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/assets/delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dist/img/add.d47d282b.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/assets/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dist/img/delete.b6bbbf94.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dist/img/close.b2ffde26.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/assets/about.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dist/img/back.bade37cb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dist/img/about.facbd5bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /dist/img/menu.c6c92fec.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /dist/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2015", 4 | "module": "esnext", 5 | "baseUrl": "./", 6 | "paths": { 7 | "@/*": ["components/*"] 8 | } 9 | }, 10 | "include": [ 11 | "src/**/*.vue", 12 | "src/**/*.js" 13 | ] 14 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | #/dist 4 | 5 | 6 | # local env files 7 | .env.local 8 | .env.*.local 9 | 10 | # Log files 11 | npm-debug.log* 12 | yarn-debug.log* 13 | yarn-error.log* 14 | pnpm-debug.log* 15 | 16 | # Editor directories and files 17 | .idea 18 | .vscode 19 | *.suo 20 | *.ntvs* 21 | *.njsproj 22 | *.sln 23 | *.sw? 24 | -------------------------------------------------------------------------------- /dist/manifest.json: -------------------------------------------------------------------------------- 1 | {"name":"Fake Yiban: 不一般的易班","short_name":"Fake Yiban","theme_color":"#6cb0f9","icons":[{"src":"./img/icons/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"./img/icons/android-chrome-512x512.png","sizes":"512x512","type":"image/png"},{"src":"./img/icons/android-chrome-maskable-192x192.png","sizes":"192x192","type":"image/png","purpose":"maskable"},{"src":"./img/icons/android-chrome-maskable-512x512.png","sizes":"512x512","type":"image/png","purpose":"maskable"}],"start_url":".","display":"standalone","background_color":"white"} -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | const publicPath = process.env.NODE_ENV === 'production' 2 | ? '/fake-yiban/dist/' 3 | : '/'; 4 | 5 | module.exports = { 6 | publicPath, 7 | pwa: { 8 | name: 'Fake Yiban', 9 | assetsVersion: '0.2.3', 10 | themeColor: '#6cb0f9', 11 | msTileColor: '#6cb0f9', 12 | manifestOptions: { 13 | name: 'Fake Yiban: 不一般的易班', 14 | background_color: 'white' 15 | }, 16 | 17 | workboxOptions: { 18 | cleanupOutdatedCaches: true 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | <%= htmlWebpackPlugin.options.title %> 8 | 9 | 10 | 11 | 14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-console */ 2 | 3 | import { register } from 'register-service-worker' 4 | 5 | if (process.env.NODE_ENV === 'production') { 6 | register(`${process.env.BASE_URL}service-worker.js`, { 7 | ready () { 8 | console.log( 9 | 'App is being served from cache by a service worker.\n' + 10 | 'For more details, visit https://goo.gl/AFskqB' 11 | ) 12 | }, 13 | registered () { 14 | console.log('Service worker has been registered.') 15 | }, 16 | cached () { 17 | console.log('Content has been cached for offline use.') 18 | }, 19 | updatefound () { 20 | console.log('New content is downloading.') 21 | }, 22 | updated () { 23 | console.log('New content is available; please refresh.') 24 | }, 25 | offline () { 26 | console.log('No internet connection found. App is running in offline mode.') 27 | }, 28 | error (error) { 29 | console.error('Error during service worker registration:', error) 30 | } 31 | }) 32 | } 33 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Fake Yiban: 不一般的易班 2 | 3 | # [Start](https://supertsy5.github.io/fake-yiban/dist/) 4 | 5 | WARNING: This program is only used for demonstration and should not be abused. Use it at your own risk. 6 | 7 | 警告:本程序仅供演示,请勿滥用。一切后果自负。 8 | 9 | ## Installing on mobile devices 10 | 11 | I use Android as an example here: 12 | 13 | 此处以Android为例: 14 | 15 | 1. Download and install Chrome or Firefox(if you don't have). 16 | 下载并安装Chrome或Firefox(如果你没有)。 17 | 2. Go to settings and allow it to install shortcuts. 18 | 进入设置,允许其在桌面创建快捷方式。 19 | 3. Open the "Start" link above in Chrome or Firefox. 20 | 在Chrome或Firefox中打开上面的“Start”链接。 21 | 4. Go to the menu and tap "Install App"(or something similar). 22 | 进入菜单,点击“安装应用”(或者类似的)。 23 | 24 | ## Project setup 25 | ``` 26 | npm install 27 | ``` 28 | 29 | ### Compiles and hot-reloads for development 30 | ``` 31 | npm run serve 32 | ``` 33 | 34 | ### Compiles and minifies for production 35 | ``` 36 | npm run build 37 | ``` 38 | 39 | ### Lints and fixes files 40 | ``` 41 | npm run lint 42 | ``` 43 | 44 | ### Customize configuration 45 | See [Configuration Reference](https://cli.vuejs.org/config/). 46 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 SUPERTSY5 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fake-yiban", 3 | "version": "1.0.0", 4 | "private": true, 5 | "scripts": { 6 | "serve": "vue-cli-service serve", 7 | "build": "vue-cli-service build", 8 | "lint": "vue-cli-service lint" 9 | }, 10 | "dependencies": { 11 | "core-js": "^3.6.5", 12 | "register-service-worker": "^1.7.2", 13 | "source-map-js": "^0.6.2", 14 | "vue": "^3.0.0" 15 | }, 16 | "devDependencies": { 17 | "@vue/cli-plugin-babel": "~4.5.0", 18 | "@vue/cli-plugin-eslint": "~4.5.0", 19 | "@vue/cli-plugin-pwa": "~4.5.0", 20 | "@vue/cli-service": "~4.5.0", 21 | "@vue/compiler-sfc": "^3.0.0", 22 | "babel-eslint": "^10.1.0", 23 | "eslint": "^6.7.2", 24 | "eslint-plugin-vue": "^7.0.0" 25 | }, 26 | "eslintConfig": { 27 | "root": true, 28 | "env": { 29 | "node": true 30 | }, 31 | "extends": [ 32 | "plugin:vue/vue3-essential", 33 | "eslint:recommended" 34 | ], 35 | "parserOptions": { 36 | "parser": "babel-eslint" 37 | }, 38 | "rules": {} 39 | }, 40 | "browserslist": [ 41 | "> 1%", 42 | "last 2 versions", 43 | "not dead" 44 | ] 45 | } 46 | -------------------------------------------------------------------------------- /dist/service-worker.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welcome to your Workbox-powered service worker! 3 | * 4 | * You'll need to register this file in your web app and you should 5 | * disable HTTP caching for this file too. 6 | * See https://goo.gl/nhQhGp 7 | * 8 | * The rest of the code is auto-generated. Please don't update this file 9 | * directly; instead, make changes to your Workbox build configuration 10 | * and re-run your build process. 11 | * See https://goo.gl/2aRDsh 12 | */ 13 | 14 | importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js"); 15 | 16 | importScripts( 17 | "/fake-yiban/dist/precache-manifest.26e87d138469847cd1d0c15b97bb39d5.js" 18 | ); 19 | 20 | workbox.core.setCacheNameDetails({prefix: "fake-yiban"}); 21 | 22 | self.addEventListener('message', (event) => { 23 | if (event.data && event.data.type === 'SKIP_WAITING') { 24 | self.skipWaiting(); 25 | } 26 | }); 27 | 28 | /** 29 | * The workboxSW.precacheAndRoute() method efficiently caches and responds to 30 | * requests for URLs in the manifest. 31 | * See https://goo.gl/S9QRab 32 | */ 33 | self.__precacheManifest = [].concat(self.__precacheManifest || []); 34 | workbox.precaching.precacheAndRoute(self.__precacheManifest, {}); 35 | 36 | workbox.precaching.cleanupOutdatedCaches(); 37 | -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- 1 | fake-yiban
-------------------------------------------------------------------------------- /dist/precache-manifest.26e87d138469847cd1d0c15b97bb39d5.js: -------------------------------------------------------------------------------- 1 | self.__precacheManifest = (self.__precacheManifest || []).concat([ 2 | { 3 | "revision": "523a36cc6e5b98b0e67b", 4 | "url": "/fake-yiban/dist/css/app.247be998.css" 5 | }, 6 | { 7 | "revision": "facbd5bf46d58d08609efff69c458db1", 8 | "url": "/fake-yiban/dist/img/about.facbd5bf.svg" 9 | }, 10 | { 11 | "revision": "d47d282be2990d70b08bd0b498a2a082", 12 | "url": "/fake-yiban/dist/img/add.d47d282b.svg" 13 | }, 14 | { 15 | "revision": "bade37cb279c36d23f3521b94c2fd4b8", 16 | "url": "/fake-yiban/dist/img/back.bade37cb.svg" 17 | }, 18 | { 19 | "revision": "b2ffde2613599160449d0362bb69ccac", 20 | "url": "/fake-yiban/dist/img/close.b2ffde26.svg" 21 | }, 22 | { 23 | "revision": "b6bbbf94adac88238b44ee4cdb29c3ec", 24 | "url": "/fake-yiban/dist/img/delete.b6bbbf94.svg" 25 | }, 26 | { 27 | "revision": "15eb1df8207605e82523c19b44520aed", 28 | "url": "/fake-yiban/dist/img/logo.15eb1df8.png" 29 | }, 30 | { 31 | "revision": "c6c92fec7fe8ef49f66a014c25049ab2", 32 | "url": "/fake-yiban/dist/img/menu.c6c92fec.svg" 33 | }, 34 | { 35 | "revision": "ccd4d4ec6bbf252b23160975a2813d17", 36 | "url": "/fake-yiban/dist/img/qrcode0.ccd4d4ec.svg" 37 | }, 38 | { 39 | "revision": "4f42d1ee19c69626e0744435c0b261a4", 40 | "url": "/fake-yiban/dist/img/qrcode1.4f42d1ee.svg" 41 | }, 42 | { 43 | "revision": "a22700c52873ef89f256d6e28a04397f", 44 | "url": "/fake-yiban/dist/img/star_back.a22700c5.png" 45 | }, 46 | { 47 | "revision": "b55eb5f55e339c59bc201111170fe3cf", 48 | "url": "/fake-yiban/dist/index.html" 49 | }, 50 | { 51 | "revision": "523a36cc6e5b98b0e67b", 52 | "url": "/fake-yiban/dist/js/app.2414cbfa.js" 53 | }, 54 | { 55 | "revision": "dca02ef2d0d9887a3821", 56 | "url": "/fake-yiban/dist/js/chunk-vendors.123a1cbc.js" 57 | }, 58 | { 59 | "revision": "d962cad20740c8cc61c4814769cf730c", 60 | "url": "/fake-yiban/dist/manifest.json" 61 | }, 62 | { 63 | "revision": "b6216d61c03e6ce0c9aea6ca7808f7ca", 64 | "url": "/fake-yiban/dist/robots.txt" 65 | } 66 | ]); -------------------------------------------------------------------------------- /src/components/fake/4c338eb8.chunk.css: -------------------------------------------------------------------------------- 1 | .hx-signature { 2 | width:100%; 3 | height:140px; 4 | position:relative; 5 | box-sizing:border-box; 6 | border:1px solid #e5e5e5; 7 | -ms-flex-negative:0; 8 | flex-shrink:0 9 | } 10 | .hx-signature-action { 11 | position:absolute; 12 | bottom:0; 13 | right:0; 14 | height:36px; 15 | padding:5px; 16 | display:-ms-flexbox; 17 | display:flex; 18 | -ms-flex-align:center; 19 | align-items:center 20 | } 21 | .hx-signature-clear { 22 | height:100% 23 | } 24 | .hx-signature-submit { 25 | height:36px; 26 | line-height:36px; 27 | width:90px; 28 | border-radius:0; 29 | margin-left:10px 30 | } 31 | .hx-signature-maximum { 32 | width:100%; 33 | height:100% 34 | } 35 | .hx-signature-maximum .hx-signature-action { 36 | -ms-transform-origin:right bottom; 37 | transform-origin:right bottom; 38 | -ms-transform:translateX(-100%) rotate(90deg); 39 | transform:translateX(-100%) rotate(90deg); 40 | left:0; 41 | bottom:0; 42 | right:auto; 43 | top:auto 44 | } 45 | .hx-form-label { 46 | color:#333; 47 | width:150px; 48 | font-size:14px; 49 | line-height:1; 50 | -ms-flex-negative:0; 51 | flex-shrink:0; 52 | text-align:left; 53 | margin-right:30px; 54 | word-break:break-all 55 | } 56 | .hx-form-required { 57 | position:relative 58 | } 59 | .hx-form-required:before { 60 | content:"*"; 61 | color:red; 62 | position:absolute; 63 | top:50%; 64 | left:-10px; 65 | line-height:1; 66 | height:10px; 67 | -ms-transform:translateY(-50%); 68 | transform:translateY(-50%) 69 | } 70 | .hx-form-item { 71 | padding:16px 15px; 72 | box-sizing:border-box; 73 | width:100%; 74 | display:-ms-flexbox; 75 | display:flex; 76 | -ms-flex-pack:start; 77 | justify-content:flex-start; 78 | background-color:#fff; 79 | -ms-flex-negative:0; 80 | flex-shrink:0 81 | } 82 | .hx-form-item-row { 83 | text-align:right; 84 | -ms-flex-align:center; 85 | align-items:center 86 | } 87 | .hx-form-item-row input { 88 | text-align:right 89 | } 90 | .hx-form-item-column { 91 | -ms-flex-direction:column; 92 | flex-direction:column; 93 | -ms-flex-align:start; 94 | align-items:flex-start; 95 | padding-bottom:16px 96 | } 97 | .hx-form-item-column .hx-form-label { 98 | width:100%; 99 | margin-bottom:16px 100 | } 101 | .hx-form-textarea textarea { 102 | width:100%; 103 | border:0; 104 | outline:none; 105 | padding:0; 106 | resize:none 107 | } 108 | .hx-btn { 109 | width:110px; 110 | padding:0; 111 | font-size:17px; 112 | border:0 113 | } 114 | -------------------------------------------------------------------------------- /src/components/fake/QRCode.vue: -------------------------------------------------------------------------------- 1 | 46 | 47 | 74 | 75 | -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- 1 | html, body{ 2 | overflow: hidden; 3 | } 4 | 5 | *{ 6 | box-sizing: border-box; 7 | } 8 | 9 | #root{ 10 | display: flex; 11 | flex-direction: column; 12 | height: 100%; 13 | } 14 | 15 | #sub-root{ 16 | flex: auto; 17 | min-height: 0; 18 | } 19 | 20 | input{ 21 | display: block; 22 | flex: 1 1 0; 23 | border: 1px solid gray; 24 | margin: 1px; 25 | min-width: 0; 26 | } 27 | 28 | .header { 29 | display: flex; 30 | flex: none; 31 | height: 48px; 32 | align-items: center; 33 | background-color: #6cb0f9; 34 | color: white; 35 | } 36 | 37 | .content{ 38 | flex: auto; 39 | min-height: 0; 40 | overflow: auto; 41 | } 42 | 43 | button{ 44 | display: block; 45 | border: none; 46 | margin: 1px; 47 | background-color: #51aeff; 48 | color: white; 49 | } 50 | 51 | button:focus{ 52 | outline: gray solid 1px; 53 | } 54 | 55 | .header .home{ 56 | padding: 0 16px; 57 | } 58 | 59 | h1{ 60 | text-align: center; 61 | } 62 | 63 | .edit-title-detail{ 64 | display: flex; 65 | margin: 0 15px; 66 | padding: 10px 0; 67 | align-items: center; 68 | justify-content: flex-start; 69 | } 70 | 71 | .edit-title-detail-dot{ 72 | background-color: #51aeff; 73 | width: 4px; 74 | height: 12px; 75 | flex-shrink: 0; 76 | margin-right: 5px; 77 | } 78 | 79 | .edit-detail-content{ 80 | background-color: white; 81 | padding: 2px 15px; 82 | } 83 | 84 | .row{ 85 | display: flex; 86 | height: 28px; 87 | } 88 | 89 | .row.no-delete{ 90 | margin-right: 26px; 91 | } 92 | 93 | .label{ 94 | flex: 1 1 0; 95 | text-align: center; 96 | } 97 | 98 | button.delete{ 99 | aspect-ratio: 1; 100 | } 101 | 102 | button.add{ 103 | width: 26px; 104 | height: 26px; 105 | margin: 1px auto; 106 | } 107 | 108 | button.confirm, button.cancel{ 109 | flex: 1 1 0; 110 | } 111 | 112 | .final{ 113 | display: flex; 114 | flex: none; 115 | font-size: large; 116 | height: 45px; 117 | text-align: center; 118 | background-color: #51aeff; 119 | } 120 | 121 | .final button{ 122 | flex: 1 1 0; 123 | margin: 0; 124 | z-index: 129; 125 | font-size: 15px; 126 | } 127 | 128 | .final .separator{ 129 | width: 1px; 130 | margin: 8px 0; 131 | z-index: 128; 132 | background-color: white; 133 | } 134 | 135 | .button-app{ 136 | height: 100%; 137 | aspect-ratio: 1; 138 | } 139 | 140 | .title{ 141 | font-size: 18px; 142 | flex: auto; 143 | } 144 | 145 | .hx-content{ 146 | flex: auto; 147 | } 148 | 149 | .hx-detail-statusIcon{ 150 | top: 58px !important; 151 | } 152 | 153 | .stars { 154 | position: absolute; 155 | left: 0; 156 | top: 0; 157 | animation: rotate 10s linear infinite; 158 | } 159 | 160 | @keyframes rotate { 161 | from { 162 | transform: none; 163 | } 164 | to { 165 | transform: rotate(360deg); 166 | } 167 | } 168 | 169 | .about{ 170 | text-align: center; 171 | } -------------------------------------------------------------------------------- /src/components/fake/Fake.vue: -------------------------------------------------------------------------------- 1 | 93 | 94 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /src/components/fake/a843def6.chunk.css: -------------------------------------------------------------------------------- 1 | .box___38cQ9 { 2 | background-color:#fff; 3 | font-size:18px; 4 | border-top:1px solid #eee 5 | } 6 | .box___38cQ9>div { 7 | text-align:center; 8 | padding:8px 0; 9 | color:#108ee9 10 | } 11 | .box___38cQ9>div:last-child { 12 | border-left:1px solid #eee 13 | } 14 | .modal___Rtamp .btn___2nkU8 { 15 | margin:10px 16 | } 17 | .title___3a1G9 { 18 | padding:15px; 19 | color:#333 20 | } 21 | .opinion___2AC4E { 22 | margin-bottom:15px; 23 | border:1px solid #e5e5e5!important; 24 | padding:10px; 25 | color:#333 26 | } 27 | .btn___1RO4C { 28 | width:100%; 29 | background-color:#fff; 30 | font-size:18px; 31 | border-top:1px solid #eee; 32 | text-align:center; 33 | padding:15px 0; 34 | color:#108ee9 35 | } 36 | .wfTitle___Y-ebx { 37 | -ms-flex-negative:0; 38 | flex-shrink:0; 39 | padding:10px; 40 | -ms-flex-pack:center; 41 | justify-content:center; 42 | font-size:18px; 43 | background-color:#fff; 44 | border-bottom:1px solid #eee; 45 | position:relative; 46 | height:auto; 47 | display:-ms-flexbox; 48 | display:flex 49 | } 50 | .stamp___2717n { 51 | position:absolute; 52 | z-index:3; 53 | top:10px; 54 | right:10px; 55 | width:88px 56 | } 57 | .uptxt___p4_R3 { 58 | color:#666; 59 | font-size:14px; 60 | height:30px; 61 | line-height:30px; 62 | padding-left:10px; 63 | -ms-flex-negative:0; 64 | flex-shrink:0 65 | } 66 | .formInfo___14U2E { 67 | background-color:#fff; 68 | color:#333; 69 | padding:5px 10px 15px; 70 | -ms-flex-negative:0; 71 | flex-shrink:0 72 | } 73 | .valueImageBox___3ClGX>a { 74 | width:100px; 75 | height:100px; 76 | margin-right:10px; 77 | display:inline-block; 78 | text-align:center; 79 | margin-bottom:10px; 80 | vertical-align:middle; 81 | background-size:contain 82 | } 83 | .valueMap___Zloj4 a { 84 | color:#8a8a8a 85 | } 86 | .valueMap___Zloj4 img { 87 | width:18px; 88 | float:left; 89 | padding-right:7px 90 | } 91 | .row___14IfN { 92 | width:100%; 93 | display:-ms-flexbox; 94 | display:flex; 95 | padding-top:10px; 96 | -ms-flex-align:start; 97 | align-items:flex-start 98 | } 99 | .row___14IfN>.label___3XtrB { 100 | width:22%; 101 | font-size:15px; 102 | padding-top:1px; 103 | color:#888; 104 | text-align:right 105 | } 106 | .row___14IfN>.value___2vrkq { 107 | width:78%; 108 | font-size:16px; 109 | padding-left:10px; 110 | color:#000 111 | } 112 | .flowInfo___244V- { 113 | background-color:#fff; 114 | color:#333; 115 | padding:15px 116 | } 117 | .flownode___1GTd6 { 118 | position:relative; 119 | display:-ms-flexbox; 120 | display:flex; 121 | padding-bottom:40px 122 | } 123 | .flownode___1GTd6:last-child { 124 | padding-bottom:0 125 | } 126 | .flownode___1GTd6:last-child:after { 127 | display:none 128 | } 129 | .flownode___1GTd6:after { 130 | content:""; 131 | position:absolute; 132 | width:0; 133 | top:26px; 134 | bottom:2px; 135 | left:11px; 136 | border-left:1px dashed #ccc 137 | } 138 | .nodeleft___2q7Sg { 139 | width:10% 140 | } 141 | .noderight___urUWJ { 142 | width:90%; 143 | padding-top:2px 144 | } 145 | .nodeindex___Cya0J { 146 | width:24px; 147 | height:24px; 148 | border-radius:12px; 149 | line-height:24px; 150 | background-color:#ccc; 151 | color:#fff; 152 | text-align:center; 153 | font-size:14px; 154 | display:inline-block 155 | } 156 | .nodestate___Npp7u { 157 | position:absolute; 158 | bottom:13px; 159 | left:15px; 160 | font-size:12px; 161 | display:-ms-flexbox; 162 | display:flex; 163 | -ms-flex-align:center; 164 | align-items:center 165 | } 166 | .node1___1ltfH .nodestate___Npp7u { 167 | color:#e48b05 168 | } 169 | .node2___1yk73 .nodestate___Npp7u { 170 | color:#87d068 171 | } 172 | .node3___3AWCQ .nodestate___Npp7u { 173 | color:#f44336 174 | } 175 | .node4___ATVZI .nodestate___Npp7u { 176 | color:#9e9e9e 177 | } 178 | .node1___1ltfH:after { 179 | border-left:1px solid #e48b05 180 | } 181 | .node2___1yk73:after { 182 | border-left:1px solid #87d068 183 | } 184 | .node3___3AWCQ:after { 185 | border-left:1px solid #f44336 186 | } 187 | .node4___ATVZI:after { 188 | border-left:1px solid #9e9e9e 189 | } 190 | .node1___1ltfH .nodeindex___Cya0J { 191 | background-color:#e48b05 192 | } 193 | .node2___1yk73 .nodeindex___Cya0J { 194 | background-color:#87d068 195 | } 196 | .node3___3AWCQ .nodeindex___Cya0J { 197 | background-color:#f44336 198 | } 199 | .node4___ATVZI .nodeindex___Cya0J { 200 | background-color:#9e9e9e 201 | } 202 | .nodeend___sR2u9 { 203 | width:24px; 204 | border-top:1px solid #ddd 205 | } 206 | .nodetoer___2Q8R0 { 207 | color:#666 208 | } 209 | .node1___1ltfH .nodetoer___2Q8R0 { 210 | color:#e48b05 211 | } 212 | .stateTime___2bJzR { 213 | padding-left:10px 214 | } 215 | .nodeapprover___1KJaE { 216 | color:#000 217 | } 218 | .nodeapprover___1KJaE>div { 219 | margin-bottom:14px 220 | } 221 | .nodeapprover___1KJaE>div:last-child { 222 | margin-bottom:0 223 | } 224 | .approverOpinion___3xcsE { 225 | padding-top:5px; 226 | font-size:14px 227 | } 228 | .remark___lJZcU { 229 | padding-left:10px; 230 | color:#999; 231 | line-height:18px 232 | } 233 | .workTime___PJH95 { 234 | font-size:12px; 235 | color:#999; 236 | display:block; 237 | padding-top:3px; 238 | float:right 239 | } 240 | .ccInfo___T7Slb { 241 | background-color:#fff; 242 | color:#666; 243 | padding-bottom:15px; 244 | padding-left:15px 245 | } 246 | .ccInfo___T7Slb>div { 247 | display:inline-block; 248 | padding:6px; 249 | margin-right:8px; 250 | margin-top:8px; 251 | font-size:14px; 252 | border-radius:4px; 253 | border:1px solid #eee 254 | } 255 | .view_file___R4yQK { 256 | padding:10px 0; 257 | margin-left:0 258 | } 259 | .view_file___R4yQK:first-child { 260 | padding-top:0 261 | } 262 | .hx-btn-urge { 263 | display:-ms-inline-flexbox; 264 | display:inline-flex; 265 | -ms-flex-align:center; 266 | align-items:center; 267 | padding:3px 6px; 268 | border-radius:6px; 269 | font-size:13px; 270 | text-align:center; 271 | cursor:pointer; 272 | background-color:#51aeff; 273 | color:#fff 274 | } 275 | .hx-btn-urge .icon { 276 | width:13px; 277 | margin-right:4px 278 | } 279 | .hx-btn-urge.success { 280 | background-color:#e5e5e5 281 | } 282 | .hx-signature-image { 283 | position:relative 284 | } 285 | .hx-signature-image img { 286 | max-width:none!important; 287 | max-height:none!important; 288 | position:absolute; 289 | top:50%; 290 | left:50%; 291 | -ms-transform-origin:center center; 292 | transform-origin:center center 293 | } 294 | .loading___3i2lG { 295 | height:100%; 296 | width:100% 297 | } 298 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 129 | 130 | 229 | 230 | 231 | -------------------------------------------------------------------------------- /src/components/fake/41a291b0.chunk.css: -------------------------------------------------------------------------------- 1 | .am-button { 2 | display:block; 3 | outline:0 none; 4 | -webkit-appearance:none; 5 | box-sizing:border-box; 6 | padding:0; 7 | text-align:center; 8 | font-size:15px; 9 | height:45px; 10 | line-height:45px; 11 | overflow:hidden; 12 | text-overflow:ellipsis; 13 | word-break:break-word; 14 | white-space:nowrap; 15 | color:#333; 16 | background-color:#fff; 17 | border:1px solid #ddd; 18 | border-radius:5px 19 | } 20 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 21 | html:not([data-scale]) .am-button { 22 | position:relative; 23 | border:none 24 | } 25 | html:not([data-scale]) .am-button:before { 26 | content:""; 27 | position:absolute; 28 | left:0; 29 | top:0; 30 | width:200%; 31 | height:200%; 32 | border:1px solid #ddd; 33 | border-radius:10px; 34 | -ms-transform-origin:0 0; 35 | transform-origin:0 0; 36 | -ms-transform:scale(.5); 37 | transform:scale(.5); 38 | box-sizing:border-box; 39 | pointer-events:none 40 | } 41 | } 42 | .am-button-borderfix:before { 43 | -ms-transform:scale(.49)!important; 44 | transform:scale(.49)!important 45 | } 46 | .am-button.am-button-active { 47 | background-color:#ddd 48 | } 49 | .am-button.am-button-disabled { 50 | color:rgba(51,51,51,.3); 51 | opacity:.6 52 | } 53 | .am-button-primary { 54 | color:#fff; 55 | background-color:#51aeff; 56 | border:1px solid #51aeff; 57 | border-radius:5px 58 | } 59 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 60 | html:not([data-scale]) .am-button-primary { 61 | position:relative; 62 | border:none 63 | } 64 | html:not([data-scale]) .am-button-primary:before { 65 | content:""; 66 | position:absolute; 67 | left:0; 68 | top:0; 69 | width:200%; 70 | height:200%; 71 | border:1px solid #51aeff; 72 | border-radius:10px; 73 | -ms-transform-origin:0 0; 74 | transform-origin:0 0; 75 | -ms-transform:scale(.5); 76 | transform:scale(.5); 77 | box-sizing:border-box; 78 | pointer-events:none 79 | } 80 | } 81 | .am-button-primary.am-button-active { 82 | color:hsla(0,0%,100%,.3); 83 | background-color:#0e80d2 84 | } 85 | .am-button-primary.am-button-disabled { 86 | color:hsla(0,0%,100%,.6); 87 | opacity:.4 88 | } 89 | .am-button-ghost { 90 | color:#51aeff; 91 | background-color:transparent; 92 | border:1px solid #51aeff; 93 | border-radius:5px 94 | } 95 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 96 | html:not([data-scale]) .am-button-ghost { 97 | position:relative; 98 | border:none 99 | } 100 | html:not([data-scale]) .am-button-ghost:before { 101 | content:""; 102 | position:absolute; 103 | left:0; 104 | top:0; 105 | width:200%; 106 | height:200%; 107 | border:1px solid #51aeff; 108 | border-radius:10px; 109 | -ms-transform-origin:0 0; 110 | transform-origin:0 0; 111 | -ms-transform:scale(.5); 112 | transform:scale(.5); 113 | box-sizing:border-box; 114 | pointer-events:none 115 | } 116 | } 117 | .am-button-ghost.am-button-active { 118 | color:rgba(81,174,255,.6); 119 | background-color:transparent; 120 | border:1px solid rgba(81,174,255,.6); 121 | border-radius:5px 122 | } 123 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 124 | html:not([data-scale]) .am-button-ghost.am-button-active { 125 | position:relative; 126 | border:none 127 | } 128 | html:not([data-scale]) .am-button-ghost.am-button-active:before { 129 | content:""; 130 | position:absolute; 131 | left:0; 132 | top:0; 133 | width:200%; 134 | height:200%; 135 | border:1px solid rgba(81,174,255,.6); 136 | border-radius:10px; 137 | -ms-transform-origin:0 0; 138 | transform-origin:0 0; 139 | -ms-transform:scale(.5); 140 | transform:scale(.5); 141 | box-sizing:border-box; 142 | pointer-events:none 143 | } 144 | } 145 | .am-button-ghost.am-button-disabled { 146 | color:rgba(51,51,51,.1); 147 | border:1px solid rgba(51,51,51,.1); 148 | border-radius:5px; 149 | opacity:1 150 | } 151 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 152 | html:not([data-scale]) .am-button-ghost.am-button-disabled { 153 | position:relative; 154 | border:none 155 | } 156 | html:not([data-scale]) .am-button-ghost.am-button-disabled:before { 157 | content:""; 158 | position:absolute; 159 | left:0; 160 | top:0; 161 | width:200%; 162 | height:200%; 163 | border:1px solid rgba(51,51,51,.1); 164 | border-radius:10px; 165 | -ms-transform-origin:0 0; 166 | transform-origin:0 0; 167 | -ms-transform:scale(.5); 168 | transform:scale(.5); 169 | box-sizing:border-box; 170 | pointer-events:none 171 | } 172 | } 173 | .am-button-warning { 174 | color:#fff; 175 | background-color:#e94f4f 176 | } 177 | .am-button-warning.am-button-active { 178 | color:hsla(0,0%,100%,.3); 179 | background-color:#d24747 180 | } 181 | .am-button-warning.am-button-disabled { 182 | color:hsla(0,0%,100%,.6); 183 | opacity:.4 184 | } 185 | .am-button-inline { 186 | display:inline-block; 187 | padding:0 15px 188 | } 189 | .am-button-inline.am-button-icon { 190 | display:-ms-inline-flexbox; 191 | display:inline-flex 192 | } 193 | .am-button-small { 194 | font-size:13px; 195 | height:30px; 196 | line-height:30px; 197 | padding:0 15px 198 | } 199 | .am-button-icon { 200 | display:-ms-flexbox; 201 | display:flex; 202 | -ms-flex-align:center; 203 | align-items:center; 204 | -ms-flex-pack:center; 205 | justify-content:center 206 | } 207 | .am-button>.am-button-icon { 208 | margin-right:.5em 209 | } 210 | .am-flexbox { 211 | text-align:left; 212 | overflow:hidden; 213 | display:-ms-flexbox; 214 | display:flex; 215 | -ms-flex-align:center; 216 | align-items:center 217 | } 218 | .am-flexbox.am-flexbox-dir-row { 219 | -ms-flex-direction:row; 220 | flex-direction:row 221 | } 222 | .am-flexbox.am-flexbox-dir-row-reverse { 223 | -ms-flex-direction:row-reverse; 224 | flex-direction:row-reverse 225 | } 226 | .am-flexbox.am-flexbox-dir-column { 227 | -ms-flex-direction:column; 228 | flex-direction:column 229 | } 230 | .am-flexbox.am-flexbox-dir-column .am-flexbox-item { 231 | margin-left:0 232 | } 233 | .am-flexbox.am-flexbox-dir-column-reverse { 234 | -ms-flex-direction:column-reverse; 235 | flex-direction:column-reverse 236 | } 237 | .am-flexbox.am-flexbox-dir-column-reverse .am-flexbox-item { 238 | margin-left:0 239 | } 240 | .am-flexbox.am-flexbox-nowrap { 241 | -ms-flex-wrap:nowrap; 242 | flex-wrap:nowrap 243 | } 244 | .am-flexbox.am-flexbox-wrap { 245 | -ms-flex-wrap:wrap; 246 | flex-wrap:wrap 247 | } 248 | .am-flexbox.am-flexbox-wrap-reverse { 249 | -ms-flex-wrap:wrap-reverse; 250 | flex-wrap:wrap-reverse 251 | } 252 | .am-flexbox.am-flexbox-justify-start { 253 | -ms-flex-pack:start; 254 | justify-content:flex-start 255 | } 256 | .am-flexbox.am-flexbox-justify-end { 257 | -ms-flex-pack:end; 258 | justify-content:flex-end 259 | } 260 | .am-flexbox.am-flexbox-justify-center { 261 | -ms-flex-pack:center; 262 | justify-content:center 263 | } 264 | .am-flexbox.am-flexbox-justify-between { 265 | -ms-flex-pack:justify; 266 | justify-content:space-between 267 | } 268 | .am-flexbox.am-flexbox-justify-around { 269 | -ms-flex-pack:distribute; 270 | justify-content:space-around 271 | } 272 | .am-flexbox.am-flexbox-align-start { 273 | -ms-flex-align:start; 274 | align-items:flex-start 275 | } 276 | .am-flexbox.am-flexbox-align-end { 277 | -ms-flex-align:end; 278 | align-items:flex-end 279 | } 280 | .am-flexbox.am-flexbox-align-center { 281 | -ms-flex-align:center; 282 | align-items:center 283 | } 284 | .am-flexbox.am-flexbox-align-stretch { 285 | -ms-flex-align:stretch; 286 | align-items:stretch 287 | } 288 | .am-flexbox.am-flexbox-align-baseline { 289 | -ms-flex-align:baseline; 290 | align-items:baseline 291 | } 292 | .am-flexbox.am-flexbox-align-content-start { 293 | -ms-flex-line-pack:start; 294 | align-content:flex-start 295 | } 296 | .am-flexbox.am-flexbox-align-content-end { 297 | -ms-flex-line-pack:end; 298 | align-content:flex-end 299 | } 300 | .am-flexbox.am-flexbox-align-content-center { 301 | -ms-flex-line-pack:center; 302 | align-content:center 303 | } 304 | .am-flexbox.am-flexbox-align-content-between { 305 | -ms-flex-line-pack:justify; 306 | align-content:space-between 307 | } 308 | .am-flexbox.am-flexbox-align-content-around { 309 | -ms-flex-line-pack:distribute; 310 | align-content:space-around 311 | } 312 | .am-flexbox.am-flexbox-align-content-stretch { 313 | -ms-flex-line-pack:stretch; 314 | align-content:stretch 315 | } 316 | .am-flexbox .am-flexbox-item { 317 | box-sizing:border-box; 318 | -ms-flex:1 1; 319 | flex:1 1; 320 | margin-left:8px; 321 | min-width:10px 322 | } 323 | .am-flexbox .am-flexbox-item:first-child { 324 | margin-left:0 325 | } 326 | .hx-content, 327 | .hx-layout { 328 | display:-ms-flexbox; 329 | display:flex; 330 | -ms-flex-direction:column; 331 | flex-direction:column; 332 | -ms-flex-align:stretch; 333 | align-items:stretch 334 | } 335 | .hx-filterExtra { 336 | display:-ms-flexbox; 337 | display:flex; 338 | -ms-flex-align:center; 339 | align-items:center 340 | } 341 | .hx-layout { 342 | width:100%; 343 | height:100% 344 | } 345 | .hx-header { 346 | height:48px; 347 | display:-ms-flexbox; 348 | display:flex; 349 | -ms-flex-negative:0; 350 | flex-shrink:0; 351 | -ms-flex-align:stretch; 352 | align-items:stretch 353 | } 354 | .hx-filterExtra { 355 | color:#999; 356 | font-size:12px; 357 | -ms-flex-negative:0; 358 | flex-shrink:0; 359 | box-sizing:border-box; 360 | padding:6px 15px 361 | } 362 | .hx-content { 363 | -ms-flex-positive:1; 364 | flex-grow:1; 365 | height:100%; 366 | overflow-x:hidden; 367 | overflow-y:auto 368 | } 369 | [class^=hx-footer] { 370 | -ms-flex-negative:0; 371 | flex-shrink:0 372 | } 373 | .hx-footer-btn>:first-of-type { 374 | border-radius:0; 375 | border:0!important 376 | } 377 | .hx-footer-doubleBtn { 378 | border-top:1px solid #f5f6fa; 379 | display:-ms-flexbox; 380 | display:flex; 381 | -ms-flex-align:center; 382 | align-items:center; 383 | -ms-flex-pack:start; 384 | justify-content:flex-start 385 | } 386 | .hx-footer-doubleBtn :first-of-type.am-button, 387 | .hx-footer-doubleBtn :last-of-type.am-button { 388 | -ms-flex-preferred-size:50%; 389 | flex-basis:50%; 390 | border-radius:0; 391 | border:0!important 392 | } 393 | -------------------------------------------------------------------------------- /src/components/fake/8593bd49.chunk.css: -------------------------------------------------------------------------------- 1 | #hx-map { 2 | width:100%; 3 | height:100%; 4 | -ms-flex-positive:1; 5 | flex-grow:1; 6 | position:relative 7 | } 8 | #hx-map img { 9 | min-width:0!important; 10 | max-height:none!important 11 | } 12 | #hx-map .amap-copyright, 13 | #hx-map .amap-logo, 14 | #hx-map .anchorBL { 15 | display:none!important 16 | } 17 | #hx-map .amap-icon img { 18 | top:0; 19 | left:0 20 | } 21 | .amap-marker-label { 22 | background-color:rgba(0,0,0,.3); 23 | color:#fff; 24 | border:0 25 | } 26 | .hx-preview-position .am-modal-body { 27 | display:-ms-flexbox; 28 | display:flex; 29 | -ms-flex-direction:column; 30 | flex-direction:column; 31 | -ms-flex-align:stretch; 32 | align-items:stretch 33 | } 34 | .hx-preview-position-title { 35 | padding:15px 0; 36 | font-size:17px; 37 | color:#333 38 | } 39 | .hx-preview-position-btn { 40 | -ms-flex-negative:0; 41 | flex-shrink:0; 42 | border-radius:0; 43 | color:#51aeff 44 | } 45 | .am-accordion { 46 | position:relative; 47 | border-top:1px solid #ddd 48 | } 49 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 50 | html:not([data-scale]) .am-accordion { 51 | border-top:none 52 | } 53 | html:not([data-scale]) .am-accordion:before { 54 | content:""; 55 | position:absolute; 56 | background-color:#ddd; 57 | display:block; 58 | z-index:1; 59 | top:0; 60 | right:auto; 61 | bottom:auto; 62 | left:0; 63 | width:100%; 64 | height:1PX; 65 | -ms-transform-origin:50% 50%; 66 | transform-origin:50% 50%; 67 | -ms-transform:scaleY(.5); 68 | transform:scaleY(.5) 69 | } 70 | } 71 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 72 | html:not([data-scale]) .am-accordion:before { 73 | -ms-transform:scaleY(.33); 74 | transform:scaleY(.33) 75 | } 76 | } 77 | .am-accordion-anim-active { 78 | transition:all .2s ease-out 79 | } 80 | .am-accordion .am-accordion-item .am-accordion-header { 81 | position:relative; 82 | color:#333; 83 | font-size:17px; 84 | height:44px; 85 | line-height:44px; 86 | background-color:#fff; 87 | box-sizing:content-box; 88 | padding-left:15px; 89 | padding-right:30px; 90 | border-bottom:1px solid #ddd; 91 | width:auto; 92 | overflow:hidden; 93 | text-overflow:ellipsis; 94 | white-space:nowrap 95 | } 96 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 97 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-header { 98 | border-bottom:none 99 | } 100 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-header:after { 101 | content:""; 102 | position:absolute; 103 | background-color:#ddd; 104 | display:block; 105 | z-index:1; 106 | top:auto; 107 | right:auto; 108 | bottom:0; 109 | left:0; 110 | width:100%; 111 | height:1PX; 112 | -ms-transform-origin:50% 100%; 113 | transform-origin:50% 100%; 114 | -ms-transform:scaleY(.5); 115 | transform:scaleY(.5) 116 | } 117 | } 118 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 119 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-header:after { 120 | -ms-transform:scaleY(.33); 121 | transform:scaleY(.33) 122 | } 123 | } 124 | .am-accordion .am-accordion-item .am-accordion-header i { 125 | position:absolute; 126 | display:block; 127 | top:15px; 128 | right:15px; 129 | width:15px; 130 | height:15px; 131 | background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 0L0 2l11.5 11L0 24l2 2 14-13z' fill='%23C7C7CC' fill-rule='evenodd'/%3E%3C/svg%3E"); 132 | background-size:contain; 133 | background-repeat:no-repeat; 134 | background-position:50% 50%; 135 | -ms-transform:rotate(90deg); 136 | transform:rotate(90deg); 137 | transition:transform .2s ease 138 | } 139 | .am-accordion .am-accordion-item .am-accordion-header[aria-expanded~=true] i { 140 | -ms-transform:rotate(270deg); 141 | transform:rotate(270deg) 142 | } 143 | .am-accordion .am-accordion-item .am-accordion-content { 144 | overflow:hidden; 145 | background:#fff 146 | } 147 | .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box { 148 | font-size:15px; 149 | color:#333; 150 | position:relative; 151 | border-bottom:1px solid #ddd 152 | } 153 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 154 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box { 155 | border-bottom:none 156 | } 157 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box:after { 158 | content:""; 159 | position:absolute; 160 | background-color:#ddd; 161 | display:block; 162 | z-index:1; 163 | top:auto; 164 | right:auto; 165 | bottom:0; 166 | left:0; 167 | width:100%; 168 | height:1PX; 169 | -ms-transform-origin:50% 100%; 170 | transform-origin:50% 100%; 171 | -ms-transform:scaleY(.5); 172 | transform:scaleY(.5) 173 | } 174 | } 175 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 176 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box:after { 177 | -ms-transform:scaleY(.33); 178 | transform:scaleY(.33) 179 | } 180 | } 181 | .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box .am-list-body { 182 | border-top:0 183 | } 184 | .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box .am-list-body:before { 185 | display:none!important 186 | } 187 | .am-accordion .am-accordion-item .am-accordion-content.am-accordion-content-inactive { 188 | display:none 189 | } 190 | .hx-call-icon { 191 | width:18px; 192 | margin-left:10px 193 | } 194 | .hx-call-tel { 195 | font-size:15px; 196 | color:#333 197 | } 198 | .hx-title-default, 199 | .hx-title-detail, 200 | .hx-title-filter, 201 | .hx-title-group { 202 | font-size:14px; 203 | padding:10px 0; 204 | margin:0 15px; 205 | -ms-flex-negative:0; 206 | flex-shrink:0; 207 | display:-ms-flexbox; 208 | display:flex; 209 | -ms-flex-align:center; 210 | align-items:center; 211 | -ms-flex-pack:start; 212 | justify-content:flex-start 213 | } 214 | .hx-title-default-dot, 215 | .hx-title-detail-dot, 216 | .hx-title-filter-dot, 217 | .hx-title-group-dot { 218 | -ms-flex-negative:0; 219 | flex-shrink:0; 220 | margin-right:5px 221 | } 222 | .hx-title-detail-dot { 223 | background-color:#51aeff; 224 | width:4px; 225 | height:12px 226 | } 227 | .hx-title-filter-dot { 228 | box-sizing:border-box; 229 | width:12px; 230 | height:12px; 231 | background-color:#fff; 232 | border:2px solid #51aeff; 233 | display:-ms-flexbox; 234 | display:flex; 235 | -ms-flex-align:center; 236 | align-items:center; 237 | -ms-flex-pack:center; 238 | justify-content:center 239 | } 240 | .hx-title-filter-dot:before { 241 | content:""; 242 | display:block; 243 | background-color:#51aeff; 244 | width:4px; 245 | height:4px 246 | } 247 | .hx-title-group-dot { 248 | width:4px; 249 | height:4px; 250 | background-color:#999 251 | } 252 | .hx-detail { 253 | -ms-flex-negative:0; 254 | flex-shrink:0 255 | } 256 | .hx-detail-statusIcon { 257 | position:absolute; 258 | width:92px; 259 | top:10px; 260 | right:15px; 261 | z-index:99 262 | } 263 | .hx-detail-content { 264 | background-color:#fff 265 | } 266 | .hx-detail-empty { 267 | margin-bottom:10px 268 | } 269 | .hx-detail-item { 270 | display:-ms-flexbox; 271 | display:flex; 272 | line-height:18px; 273 | padding:0 15px 16px; 274 | font-size:14px 275 | } 276 | .hx-detail-item-field, 277 | .hx-detail-item-label { 278 | font-size:15px 279 | } 280 | .hx-detail-item-label { 281 | width:78px; 282 | color:#999; 283 | text-align:right; 284 | -ms-flex-negative:0; 285 | flex-shrink:0 286 | } 287 | .hx-detail-item-field { 288 | color:#333; 289 | margin-left:10px; 290 | -ms-flex:1 1; 291 | flex:1 1; 292 | word-break:break-all; 293 | display:-ms-flexbox; 294 | display:flex; 295 | -ms-flex-wrap:wrap; 296 | flex-wrap:wrap; 297 | -ms-flex-align:start; 298 | align-items:flex-start; 299 | -ms-flex-pack:start; 300 | justify-content:flex-start; 301 | overflow:hidden 302 | } 303 | .hx-detail .hx-detail-item:first-of-type { 304 | padding-top:16px 305 | } 306 | .hx-detail-accordion { 307 | border:0!important 308 | } 309 | .hx-detail-accordion.am-accordion:after, 310 | .hx-detail-accordion.am-accordion:before { 311 | display:none!important 312 | } 313 | .hx-detail-accordion .am-accordion-header { 314 | height:auto!important; 315 | line-height:inherit!important; 316 | padding:0!important; 317 | font-size:14px!important; 318 | display:-ms-flexbox; 319 | display:flex; 320 | -ms-flex-align:center; 321 | align-items:center; 322 | -ms-flex-pack:start; 323 | justify-content:flex-start; 324 | border:0!important 325 | } 326 | .hx-detail-accordion .am-accordion-header:after { 327 | display:none!important 328 | } 329 | .hx-detail-accordion .am-accordion-header i { 330 | top:50%!important; 331 | -ms-transform:translateY(-50%) rotate(90deg)!important; 332 | transform:translateY(-50%) rotate(90deg)!important; 333 | right:15px!important 334 | } 335 | .hx-detail-accordion .am-accordion-header[aria-expanded~=true] i { 336 | -ms-transform:translateY(-50%) rotate(270deg)!important; 337 | transform:translateY(-50%) rotate(270deg)!important 338 | } 339 | .hx-detail-accordion .am-accordion-header>.hx-detail-item { 340 | width:100%; 341 | -ms-flex-align:center; 342 | align-items:center 343 | } 344 | .hx-detail-accordion .am-accordion-content-box:after { 345 | display:none!important 346 | } 347 | .hx-detail-accordion .am-accordion-content-box>.hx-detail-item:first-of-type { 348 | padding-top:0 349 | } 350 | .hx-detail-image { 351 | display:-ms-flexbox; 352 | display:flex; 353 | -ms-flex-wrap:wrap; 354 | flex-wrap:wrap; 355 | -ms-flex-align:center; 356 | align-items:center; 357 | -ms-flex-pack:start; 358 | justify-content:flex-start; 359 | -ms-flex-positive:1; 360 | flex-grow:1; 361 | overflow:hidden 362 | } 363 | .hx-detail-PreviewPosition { 364 | color:#51aeff; 365 | cursor:pointer 366 | } 367 | .hx-detail-grouping:before { 368 | content:""; 369 | display:block; 370 | background-color:#f5f6fa; 371 | width:100%; 372 | height:10px 373 | } 374 | .hx-detail-grouping .hx-title-group { 375 | border-bottom:1px dashed #e5e5e5; 376 | margin-bottom:16px 377 | } 378 | .hx-detail-grouping+.hx-detail-item { 379 | border-top:10px solid #f5f6fa; 380 | padding-top:16px 381 | } 382 | -------------------------------------------------------------------------------- /src/components/fake/5de02372.chunk.css: -------------------------------------------------------------------------------- 1 | .hx-icon { 2 | width:15px; 3 | height:15px; 4 | -ms-flex-negative:0; 5 | flex-shrink:0 6 | } 7 | .am-modal { 8 | position:relative 9 | } 10 | .am-modal:not(.am-modal-transparent):not(.am-modal-popup) { 11 | width:100%; 12 | height:100% 13 | } 14 | .am-modal-mask { 15 | position:fixed; 16 | top:0; 17 | right:0; 18 | left:0; 19 | bottom:0; 20 | height:100%; 21 | z-index:999; 22 | background-color:rgba(0,0,0,.4) 23 | } 24 | .am-modal-mask-hidden { 25 | display:none 26 | } 27 | .am-modal-wrap { 28 | position:fixed; 29 | overflow:auto; 30 | top:0; 31 | right:0; 32 | bottom:0; 33 | left:0; 34 | height:100%; 35 | z-index:999; 36 | -webkit-overflow-scrolling:touch; 37 | outline:0; 38 | display:-ms-flexbox; 39 | display:flex; 40 | -ms-flex-align:center; 41 | align-items:center; 42 | -ms-flex-pack:center; 43 | justify-content:center; 44 | transform:translateZ(1px) 45 | } 46 | .am-modal-wrap-popup { 47 | display:block 48 | } 49 | .am-modal-transparent { 50 | width:270px 51 | } 52 | .am-modal-transparent .am-modal-content { 53 | border-radius:7px; 54 | padding-top:15px 55 | } 56 | .am-modal-transparent .am-modal-content .am-modal-body { 57 | padding:0 15px 15px 58 | } 59 | .am-modal-popup { 60 | position:fixed; 61 | left:0; 62 | width:100% 63 | } 64 | .am-modal-popup-slide-down { 65 | top:0 66 | } 67 | .am-modal-popup-slide-up { 68 | bottom:0 69 | } 70 | .am-modal-popup .am-modal-content { 71 | padding-bottom:env(safe-area-inset-bottom) 72 | } 73 | .am-modal-title { 74 | margin:0; 75 | font-size:18px; 76 | line-height:1; 77 | color:#333; 78 | text-align:center 79 | } 80 | .am-modal-header { 81 | padding:6px 15px 15px 82 | } 83 | .am-modal-content { 84 | position:relative; 85 | background-color:#fff; 86 | border:0; 87 | background-clip:padding-box; 88 | text-align:center; 89 | height:100%; 90 | overflow:hidden 91 | } 92 | .am-modal-close { 93 | border:0; 94 | padding:0; 95 | background-color:transparent; 96 | outline:none; 97 | position:absolute; 98 | right:15px; 99 | z-index:999; 100 | height:21px; 101 | width:21px 102 | } 103 | .am-modal-close-x { 104 | display:inline-block; 105 | width:15px; 106 | height:15px; 107 | background-repeat:no-repeat; 108 | background-size:cover; 109 | background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23888' fill-rule='evenodd'%3E%3Cpath d='M1.414 0l28.284 28.284-1.414 1.414L0 1.414z'/%3E%3Cpath d='M28.284 0L0 28.284l1.414 1.414L29.698 1.414z'/%3E%3C/g%3E%3C/svg%3E") 110 | } 111 | .am-modal-body { 112 | font-size:15px; 113 | color:#888; 114 | height:100%; 115 | line-height:1.5; 116 | overflow:auto 117 | } 118 | .am-modal-button-group-h { 119 | position:relative; 120 | border-top:1px solid #ddd; 121 | display:-ms-flexbox; 122 | display:flex 123 | } 124 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 125 | html:not([data-scale]) .am-modal-button-group-h { 126 | border-top:none 127 | } 128 | html:not([data-scale]) .am-modal-button-group-h:before { 129 | content:""; 130 | position:absolute; 131 | background-color:#ddd; 132 | display:block; 133 | z-index:1; 134 | top:0; 135 | right:auto; 136 | bottom:auto; 137 | left:0; 138 | width:100%; 139 | height:1PX; 140 | -ms-transform-origin:50% 50%; 141 | transform-origin:50% 50%; 142 | -ms-transform:scaleY(.5); 143 | transform:scaleY(.5) 144 | } 145 | } 146 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 147 | html:not([data-scale]) .am-modal-button-group-h:before { 148 | -ms-transform:scaleY(.33); 149 | transform:scaleY(.33) 150 | } 151 | } 152 | .am-modal-button-group-h .am-modal-button { 153 | -webkit-touch-callout:none; 154 | -ms-flex:1 1; 155 | flex:1 1; 156 | box-sizing:border-box; 157 | text-align:center; 158 | text-decoration:none; 159 | outline:none; 160 | color:#51aeff; 161 | font-size:18px; 162 | height:50px; 163 | line-height:50px; 164 | display:block; 165 | width:auto; 166 | overflow:hidden; 167 | text-overflow:ellipsis; 168 | white-space:nowrap 169 | } 170 | .am-modal-button-group-h .am-modal-button:first-child { 171 | color:#333 172 | } 173 | .am-modal-button-group-h .am-modal-button:last-child { 174 | position:relative; 175 | border-left:1px solid #ddd 176 | } 177 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 178 | html:not([data-scale]) .am-modal-button-group-h .am-modal-button:last-child { 179 | border-left:none 180 | } 181 | html:not([data-scale]) .am-modal-button-group-h .am-modal-button:last-child:before { 182 | content:""; 183 | position:absolute; 184 | background-color:#ddd; 185 | display:block; 186 | z-index:1; 187 | top:0; 188 | right:auto; 189 | bottom:auto; 190 | left:0; 191 | width:1PX; 192 | height:100%; 193 | -ms-transform-origin:100% 50%; 194 | transform-origin:100% 50%; 195 | -ms-transform:scaleX(.5); 196 | transform:scaleX(.5) 197 | } 198 | } 199 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 200 | html:not([data-scale]) .am-modal-button-group-h .am-modal-button:last-child:before { 201 | -ms-transform:scaleX(.33); 202 | transform:scaleX(.33) 203 | } 204 | } 205 | .am-modal-button-group-v .am-modal-button { 206 | -webkit-touch-callout:none; 207 | position:relative; 208 | border-top:1px solid #ddd; 209 | box-sizing:border-box; 210 | text-align:center; 211 | text-decoration:none; 212 | outline:none; 213 | color:#51aeff; 214 | font-size:18px; 215 | height:50px; 216 | line-height:50px; 217 | display:block; 218 | width:auto; 219 | overflow:hidden; 220 | text-overflow:ellipsis; 221 | white-space:nowrap 222 | } 223 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 224 | html:not([data-scale]) .am-modal-button-group-v .am-modal-button { 225 | border-top:none 226 | } 227 | html:not([data-scale]) .am-modal-button-group-v .am-modal-button:before { 228 | content:""; 229 | position:absolute; 230 | background-color:#ddd; 231 | display:block; 232 | z-index:1; 233 | top:0; 234 | right:auto; 235 | bottom:auto; 236 | left:0; 237 | width:100%; 238 | height:1PX; 239 | -ms-transform-origin:50% 50%; 240 | transform-origin:50% 50%; 241 | -ms-transform:scaleY(.5); 242 | transform:scaleY(.5) 243 | } 244 | } 245 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 246 | html:not([data-scale]) .am-modal-button-group-v .am-modal-button:before { 247 | -ms-transform:scaleY(.33); 248 | transform:scaleY(.33) 249 | } 250 | } 251 | .am-modal-button-active { 252 | background-color:#ddd 253 | } 254 | .am-modal-input-container { 255 | margin-top:9px; 256 | border:1px solid #ddd; 257 | border-radius:3px 258 | } 259 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 260 | html:not([data-scale]) .am-modal-input-container { 261 | position:relative; 262 | border:none 263 | } 264 | html:not([data-scale]) .am-modal-input-container:before { 265 | content:""; 266 | position:absolute; 267 | left:0; 268 | top:0; 269 | width:200%; 270 | height:200%; 271 | border:1px solid #ddd; 272 | border-radius:6px; 273 | -ms-transform-origin:0 0; 274 | transform-origin:0 0; 275 | -ms-transform:scale(.5); 276 | transform:scale(.5); 277 | box-sizing:border-box; 278 | pointer-events:none 279 | } 280 | } 281 | .am-modal-input { 282 | height:36px; 283 | line-height:1 284 | } 285 | .am-modal-input:nth-child(2) { 286 | position:relative; 287 | border-top:1px solid #ddd 288 | } 289 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 290 | html:not([data-scale]) .am-modal-input:nth-child(2) { 291 | border-top:none 292 | } 293 | html:not([data-scale]) .am-modal-input:nth-child(2):before { 294 | content:""; 295 | position:absolute; 296 | background-color:#ddd; 297 | display:block; 298 | z-index:1; 299 | top:0; 300 | right:auto; 301 | bottom:auto; 302 | left:0; 303 | width:100%; 304 | height:1PX; 305 | -ms-transform-origin:50% 50%; 306 | transform-origin:50% 50%; 307 | -ms-transform:scaleY(.5); 308 | transform:scaleY(.5) 309 | } 310 | } 311 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 312 | html:not([data-scale]) .am-modal-input:nth-child(2):before { 313 | -ms-transform:scaleY(.33); 314 | transform:scaleY(.33) 315 | } 316 | } 317 | .am-modal-input input { 318 | position:relative; 319 | border:0; 320 | width:98%; 321 | height:34px; 322 | top:1PX; 323 | box-sizing:border-box; 324 | margin:0 325 | } 326 | .am-modal-input input::-webkit-input-placeholder { 327 | font-size:14px; 328 | color:#ccc; 329 | padding-left:8px 330 | } 331 | .am-modal-input input::-moz-placeholder { 332 | font-size:14px; 333 | color:#ccc; 334 | padding-left:8px 335 | } 336 | .am-modal-input input:-ms-input-placeholder { 337 | font-size:14px; 338 | color:#ccc; 339 | padding-left:8px 340 | } 341 | .am-modal-input input::-ms-input-placeholder { 342 | font-size:14px; 343 | color:#ccc; 344 | padding-left:8px 345 | } 346 | .am-modal-input input::placeholder { 347 | font-size:14px; 348 | color:#ccc; 349 | padding-left:8px 350 | } 351 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content { 352 | border-radius:0 353 | } 354 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-header { 355 | padding:9px 24px 12px 356 | } 357 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-header .am-modal-title { 358 | text-align:left; 359 | font-size:21px; 360 | color:#333 361 | } 362 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-body { 363 | color:#333; 364 | text-align:left; 365 | padding:0 24px 15px 366 | } 367 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-body .am-modal-input-container { 368 | border:0; 369 | border-bottom:1px solid #ddd 370 | } 371 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-body .am-modal-input-container:before { 372 | display:none!important 373 | } 374 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 375 | html:not([data-scale]) .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-body .am-modal-input-container { 376 | border-bottom:none 377 | } 378 | html:not([data-scale]) .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-body .am-modal-input-container:after { 379 | content:""; 380 | position:absolute; 381 | background-color:#ddd; 382 | display:block; 383 | z-index:1; 384 | top:auto; 385 | right:auto; 386 | bottom:0; 387 | left:0; 388 | width:100%; 389 | height:1PX; 390 | -ms-transform-origin:50% 100%; 391 | transform-origin:50% 100%; 392 | -ms-transform:scaleY(.5); 393 | transform:scaleY(.5) 394 | } 395 | } 396 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 397 | html:not([data-scale]) .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-body .am-modal-input-container:after { 398 | -ms-transform:scaleY(.33); 399 | transform:scaleY(.33) 400 | } 401 | } 402 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-body .am-modal-input-container .am-modal-input:first-child { 403 | border-top:0 404 | } 405 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-body .am-modal-input-container .am-modal-input:first-child:before { 406 | display:none!important 407 | } 408 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer { 409 | padding-bottom:12px 410 | } 411 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer .am-modal-button-group-h { 412 | overflow:hidden; 413 | border-top:0; 414 | -ms-flex-pack:end; 415 | justify-content:flex-end; 416 | padding:0 12px 417 | } 418 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer .am-modal-button-group-h:before { 419 | display:none!important 420 | } 421 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer .am-modal-button-group-h .am-modal-button { 422 | -ms-flex:initial; 423 | flex:initial; 424 | margin-left:3px; 425 | padding:0 15px; 426 | height:48px; 427 | box-sizing:border-box 428 | } 429 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer .am-modal-button-group-h .am-modal-button:first-child { 430 | color:#777 431 | } 432 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer .am-modal-button-group-h .am-modal-button:last-child { 433 | border-left:0 434 | } 435 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer .am-modal-button-group-h .am-modal-button:last-child:before { 436 | display:none!important 437 | } 438 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer .am-modal-button-group-v.am-modal-button-group-normal { 439 | display:-ms-flexbox; 440 | display:flex; 441 | -ms-flex-pack:end; 442 | justify-content:flex-end; 443 | overflow:hidden; 444 | padding:0 12px 445 | } 446 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer .am-modal-button-group-v.am-modal-button-group-normal .am-modal-button { 447 | border-top:0; 448 | padding:0 15px; 449 | margin-left:3px; 450 | height:48px; 451 | box-sizing:border-box 452 | } 453 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer .am-modal-button-group-v.am-modal-button-group-normal .am-modal-button:before { 454 | display:none!important 455 | } 456 | .am-modal.am-modal-transparent.am-modal-android .am-modal-content .am-modal-footer .am-modal-button-group-operation .am-modal-button { 457 | text-align:start; 458 | padding-left:15px 459 | } 460 | .am-modal.am-modal-operation .am-modal-content { 461 | border-radius:7px; 462 | height:auto; 463 | padding-top:0 464 | } 465 | .am-modal.am-modal-operation .am-modal-content .am-modal-body { 466 | padding:0!important 467 | } 468 | .am-modal.am-modal-operation .am-modal-content .am-modal-button { 469 | color:#333; 470 | text-align:left; 471 | padding-left:15px 472 | } 473 | .am-modal-alert-content, 474 | .am-modal-propmt-content { 475 | zoom:1; 476 | overflow:hidden 477 | } 478 | .hx-viewFile { 479 | width:100%; 480 | padding-top:16px 481 | } 482 | .hx-viewFile-text { 483 | -ms-flex-positive:1; 484 | flex-grow:1; 485 | overflow:hidden; 486 | white-space:nowrap; 487 | text-overflow:ellipsis; 488 | color:#51aeff 489 | } 490 | -------------------------------------------------------------------------------- /dist/js/app.2414cbfa.js: -------------------------------------------------------------------------------- 1 | (function(e){function t(t){for(var a,d,s=t[0],n=t[1],b=t[2],r=0,j=[];rd.page=0)},t[15]||(t[15]=[Object(a["f"])("img",{src:l.a},null,-1)]))):Object(a["d"])("",!0),0==d.page?(Object(a["i"])(),Object(a["e"])("div",h,"Fake Yiban")):Object(a["d"])("",!0),-1==d.page?(Object(a["i"])(),Object(a["e"])("div",x,"关于")):1==d.page?(Object(a["i"])(),Object(a["e"])("div",y,Object(a["l"])(d.studentName)+"的请假",1)):2==d.page?(Object(a["i"])(),Object(a["e"])("div",k,"请假")):Object(a["d"])("",!0),0==d.page?(Object(a["i"])(),Object(a["e"])("div",{key:5,class:"button-app",onClick:t[1]||(t[1]=e=>d.page=-1)},t[16]||(t[16]=[Object(a["f"])("img",{src:s.a},null,-1)]))):Object(a["d"])("",!0),d.page>0?(Object(a["i"])(),Object(a["e"])("div",I,t[17]||(t[17]=[Object(a["f"])("img",{src:b.a},null,-1)]))):Object(a["d"])("",!0),d.page>0?(Object(a["i"])(),Object(a["e"])("div",C,t[18]||(t[18]=[Object(a["f"])("img",{src:r.a},null,-1)]))):Object(a["d"])("",!0)]),0==d.page?(Object(a["i"])(),Object(a["e"])("div",A,[t[29]||(t[29]=Object(a["f"])("div",{class:"edit-title-detail"},[Object(a["f"])("div",{class:"edit-title-detail-dot"}),Object(a["h"])("申请人 ")],-1)),Object(a["f"])("div",E,[t[19]||(t[19]=Object(a["f"])("div",{class:"row no-delete"},[Object(a["f"])("div",{class:"label"},"姓名"),Object(a["f"])("div",{class:"label"},"学号")],-1)),Object(a["f"])("div",V,[Object(a["n"])(Object(a["f"])("input",{type:"text","onUpdate:modelValue":t[2]||(t[2]=e=>d.studentName=e)},null,512),[[a["m"],d.studentName]]),Object(a["n"])(Object(a["f"])("input",{type:"text","onUpdate:modelValue":t[3]||(t[3]=e=>d.studentID=e)},null,512),[[a["m"],d.studentID]])])]),t[30]||(t[30]=Object(a["f"])("div",{class:"edit-title-detail"},[Object(a["f"])("div",{class:"edit-title-detail-dot"}),Object(a["h"])("申请内容 ")],-1)),Object(a["f"])("div",_,[t[22]||(t[22]=Object(a["f"])("div",{class:"row no-delete"},[Object(a["f"])("div",{class:"label"},"项目"),Object(a["f"])("div",{class:"label"},"内容")],-1)),(Object(a["i"])(!0),Object(a["e"])(a["a"],null,Object(a["j"])(d.items,(e,c)=>(Object(a["i"])(),Object(a["e"])("div",{key:e},[d.deletingItem==c?(Object(a["i"])(),Object(a["e"])("div",{key:0,class:"row",onBlur:t[5]||(t[5]=e=>d.deletingItem=-1)},[Object(a["f"])("button",{class:"confirm",onClick:e=>{d.items.splice(c,1),d.deletingItem=-1}},"删除",8,w),Object(a["f"])("button",{class:"cancel",onClick:t[4]||(t[4]=e=>d.deletingItem=-1)},"取消")],32)):(Object(a["i"])(),Object(a["e"])("div",Q,[Object(a["n"])(Object(a["f"])("input",{type:"text","onUpdate:modelValue":t=>e.name=t},null,8,H),[[a["m"],e.name]]),Object(a["n"])(Object(a["f"])("input",{type:"text","onUpdate:modelValue":t=>e.value=t},null,8,J),[[a["m"],e.value]]),Object(a["f"])("button",{class:"delete",onClick:e=>d.deletingItem=c},t[20]||(t[20]=[Object(a["f"])("img",{src:O.a},null,-1)]),8,S)]))]))),128)),Object(a["f"])("button",{class:"add",onClick:t[6]||(t[6]=e=>d.items.push({name:"",value:""}))},t[21]||(t[21]=[Object(a["f"])("img",{src:f.a},null,-1)]))]),t[31]||(t[31]=Object(a["f"])("div",{class:"edit-title-detail"},[Object(a["f"])("div",{class:"edit-title-detail-dot"}),Object(a["h"])("审批进度 ")],-1)),Object(a["f"])("div",X,[t[25]||(t[25]=Object(a["f"])("div",{class:"row no-delete"},[Object(a["f"])("div",{class:"label"},"姓名"),Object(a["f"])("div",{class:"label"},"编号"),Object(a["f"])("div",{class:"label"},"时间")],-1)),(Object(a["i"])(!0),Object(a["e"])(a["a"],null,Object(a["j"])(d.approvers,(e,c)=>(Object(a["i"])(),Object(a["e"])("div",{key:e},[d.deletingApprover==c?(Object(a["i"])(),Object(a["e"])("div",U,[Object(a["f"])("button",{class:"confirm",onClick:e=>{d.approvers.splice(c,1),d.deletingApprover=-1}},"删除",8,P),Object(a["f"])("button",{class:"cancel",onClick:t[7]||(t[7]=e=>d.deletingApprover=-1)},"取消")])):(Object(a["i"])(),Object(a["e"])("div",B,[Object(a["n"])(Object(a["f"])("input",{type:"text","onUpdate:modelValue":t=>e.name=t},null,8,D),[[a["m"],e.name]]),Object(a["n"])(Object(a["f"])("input",{type:"text","onUpdate:modelValue":t=>e.id=t},null,8,T),[[a["m"],e.id]]),Object(a["n"])(Object(a["f"])("input",{type:"text","onUpdate:modelValue":t=>e.time=t},null,8,W),[[a["m"],e.time]]),Object(a["f"])("button",{class:"delete",onClick:e=>d.deletingApprover=c},t[23]||(t[23]=[Object(a["f"])("img",{src:O.a},null,-1)]),8,N)]))]))),128)),Object(a["f"])("button",{class:"add",onClick:t[8]||(t[8]=e=>d.approvers.push({name:"",id:"",time:""}))},t[24]||(t[24]=[Object(a["f"])("img",{src:f.a},null,-1)]))]),t[32]||(t[32]=Object(a["f"])("div",{class:"edit-title-detail"},[Object(a["f"])("div",{class:"edit-title-detail-dot"}),Object(a["h"])("已抄送 ")],-1)),Object(a["f"])("div",R,[t[28]||(t[28]=Object(a["f"])("div",{class:"row no-delete"},[Object(a["f"])("div",{class:"label"},"姓名"),Object(a["f"])("div",{class:"label"},"编号")],-1)),(Object(a["i"])(!0),Object(a["e"])(a["a"],null,Object(a["j"])(d.ccs,(e,c)=>(Object(a["i"])(),Object(a["e"])("div",{key:e},[d.deletingCC==c?(Object(a["i"])(),Object(a["e"])("div",q,[Object(a["f"])("button",{class:"confirm",onClick:e=>{d.ccs.splice(c,1),d.deletingCC=-1}},"删除",8,Z),Object(a["f"])("button",{class:"cancel",onClick:t[9]||(t[9]=e=>d.deletingCC=-1)},"取消")])):(Object(a["i"])(),Object(a["e"])("div",z,[Object(a["n"])(Object(a["f"])("input",{type:"text","onUpdate:modelValue":t=>e.name=t},null,8,L),[[a["m"],e.name]]),Object(a["n"])(Object(a["f"])("input",{type:"text","onUpdate:modelValue":t=>e.id=t},null,8,M),[[a["m"],e.id]]),Object(a["f"])("button",{class:"delete",onClick:e=>d.deletingCC=c},t[26]||(t[26]=[Object(a["f"])("img",{src:O.a},null,-1)]),8,K)]))]))),128)),Object(a["f"])("button",{class:"add",onClick:t[10]||(t[10]=e=>d.ccs.push({name:"",id:""}))},t[27]||(t[27]=[Object(a["f"])("img",{src:f.a},null,-1)]))])])):Object(a["d"])("",!0),0==d.page?(Object(a["i"])(),Object(a["e"])("div",F,[Object(a["f"])("button",{onClick:t[11]||(t[11]=(...e)=>n.go&&n.go(...e))},"表单详情"),t[33]||(t[33]=Object(a["f"])("div",{class:"separator"},null,-1)),Object(a["f"])("button",{onClick:t[12]||(t[12]=e=>d.page=2)},"离返校码")])):Object(a["d"])("",!0),1==d.page?(Object(a["i"])(),Object(a["c"])(o,{key:2,"student-name":d.studentName,studentID:d.studentID,items:d.items,approvers:d.approvers,ccs:d.ccs,onExit:t[13]||(t[13]=e=>d.page=0)},null,8,["student-name","studentID","items","approvers","ccs"])):Object(a["d"])("",!0),2==d.page?(Object(a["i"])(),Object(a["c"])(j,{key:3,onExit:t[14]||(t[14]=e=>d.page=0)})):Object(a["d"])("",!0),-1==d.page?(Object(a["i"])(),Object(a["e"])("div",Y,t[34]||(t[34]=[Object(a["f"])("img",{src:p.a},null,-1),Object(a["f"])("h2",null,"Fake Yiban 1.0.0",-1),Object(a["f"])("p",null,[Object(a["h"])("By "),Object(a["f"])("a",{href:"https://github.com/supertsy5/"},"SUPERTSY5")],-1),Object(a["f"])("p",null,"警告:本程序仅供演示,请勿滥用。一切后果自负。",-1)]))):Object(a["d"])("",!0)])}var $=c("5d98"),ee=c.n($),te=c("0e50"),ce=c.n(te);const ae={id:"sub-root"},ie={class:"hx-layout"},le={class:"hx-content"},de={class:"wfTitle___Y-ebx"},se={class:"hx-detail"},ne={class:"hx-detail-group"},be={class:"hx-detail-content"},oe={class:"am-accordion hx-detail-accordion"},re={class:"am-accordion-item"},je={class:"am-accordion-header",role:"button",tabindex:"0","aria-expanded":"false"},Oe={class:"hx-detail-item"},ve={class:"hx-detail-item-field"},fe={class:"am-flexbox am-flexbox-justify-start am-flexbox-align-center"},ue={class:"hx-detail"},pe={class:"hx-detail-group"},me={class:"hx-detail-content"},ge={class:"hx-detail-item-label"},he={class:"hx-detail-item-field"},xe={key:0,class:"hx-detail"},ye={class:"hx-detail-group"},ke={class:"hx-detail-content"},Ie={class:"flowInfo___244V-"},Ce={class:"nodestate___Npp7u"},Ae={key:0,class:"stateTime___2bJzR"},Ee={class:"nodeleft___2q7Sg"},Ve={class:"nodeindex___Cya0J"},_e={class:"noderight___urUWJ"},we={style:{"margin-top":"0px"},class:"nodeapprover___1KJaE"},Qe={class:"workTime___PJH95"},He={key:1,class:"hx-detail"},Je={class:"hx-detail-group"},Se={class:"hx-detail-content"},Xe={class:"ccInfo___T7Slb"};function Ue(e,t,c,i,l,d){return Object(a["i"])(),Object(a["e"])("div",ae,[Object(a["f"])("div",ie,[Object(a["f"])("main",le,[Object(a["f"])("div",de,Object(a["l"])(c.studentName)+"的请销假",1),Object(a["f"])("div",se,[Object(a["f"])("div",ne,[t[2]||(t[2]=Object(a["f"])("div",{class:"hx-title-detail"},[Object(a["f"])("div",{class:"hx-title-detail-dot"}),Object(a["h"])("申请人 ")],-1)),Object(a["f"])("div",be,[Object(a["f"])("div",oe,[Object(a["f"])("div",re,[Object(a["f"])("div",je,[t[1]||(t[1]=Object(a["f"])("i",{class:"arrow"},null,-1)),Object(a["f"])("div",Oe,[t[0]||(t[0]=Object(a["f"])("span",{class:"hx-detail-item-label"},"姓名",-1)),Object(a["f"])("div",ve,[Object(a["f"])("div",fe,Object(a["l"])(c.studentName)+"("+Object(a["l"])(c.studentID)+")",1)])])])])])])])]),Object(a["f"])("div",ue,[Object(a["f"])("div",pe,[t[3]||(t[3]=Object(a["f"])("div",{class:"hx-title-detail"},[Object(a["f"])("div",{class:"hx-title-detail-dot"}),Object(a["h"])("申请内容 ")],-1)),Object(a["f"])("div",me,[(Object(a["i"])(!0),Object(a["e"])(a["a"],null,Object(a["j"])(c.items,e=>(Object(a["i"])(),Object(a["e"])("div",{class:"hx-detail-item",key:e},[Object(a["f"])("span",ge,Object(a["l"])(e.name),1),Object(a["f"])("div",he,Object(a["l"])(e.value),1)]))),128))])])]),c.approvers.length>0?(Object(a["i"])(),Object(a["e"])("div",xe,[Object(a["f"])("div",ye,[t[7]||(t[7]=Object(a["f"])("div",{class:"hx-title-detail"},[Object(a["f"])("div",{class:"hx-title-detail-dot"}),Object(a["h"])("审批进度 ")],-1)),Object(a["f"])("div",ke,[Object(a["f"])("div",Ie,[(Object(a["i"])(!0),Object(a["e"])(a["a"],null,Object(a["j"])(c.approvers,(e,i)=>(Object(a["i"])(),Object(a["e"])("div",{class:"flownode___1GTd6 node2___1yk73",key:i},[Object(a["f"])("div",Ce,[t[4]||(t[4]=Object(a["f"])("span",null,"通过",-1)),i==c.approvers.length-1?(Object(a["i"])(),Object(a["e"])("span",Ae,Object(a["l"])(e.time),1)):Object(a["d"])("",!0)]),Object(a["f"])("div",Ee,[Object(a["f"])("span",Ve,Object(a["l"])(i+1),1)]),Object(a["f"])("div",_e,[Object(a["f"])("div",we,[Object(a["f"])("div",null,[Object(a["f"])("div",null,[Object(a["h"])(Object(a["l"])(e.name)+"("+Object(a["l"])(e.id)+")",1),Object(a["f"])("span",Qe,Object(a["l"])(e.time),1)]),t[5]||(t[5]=Object(a["f"])("div",{class:"approverOpinion___3xcsE"},[Object(a["f"])("span",{style:{color:"rgb(135, 208, 104)"}},"已同意")],-1))])])])]))),128)),t[6]||(t[6]=Object(a["f"])("div",{class:"flownode___1GTd6"},[Object(a["f"])("div",{class:"nodeend___sR2u9"})],-1))])])])])):Object(a["d"])("",!0),c.ccs.length>0?(Object(a["i"])(),Object(a["e"])("div",He,[Object(a["f"])("div",Je,[t[8]||(t[8]=Object(a["f"])("div",{class:"hx-title-detail"},[Object(a["f"])("div",{class:"hx-title-detail-dot"}),Object(a["h"])("已抄送 ")],-1)),Object(a["f"])("div",Se,[Object(a["f"])("div",Xe,[(Object(a["i"])(!0),Object(a["e"])(a["a"],null,Object(a["j"])(c.ccs,(e,t)=>(Object(a["i"])(),Object(a["e"])("div",{key:t},Object(a["l"])(e.name)+"("+Object(a["l"])(e.id)+")",1))),128))])])])])):Object(a["d"])("",!0)]),t[9]||(t[9]=Object(a["f"])("div",{class:"hx-footer"},[Object(a["f"])("a",{role:"button",class:"am-button hx-footer_btn",style:{color:"rgb(87, 191, 242)"},"aria-disabled":"false"},[Object(a["f"])("span",null,"转发审批表单")])],-1))]),t[10]||(t[10]=Object(a["f"])("div",{class:"hx-detail-statusIcon"},[Object(a["f"])("img",{src:ee.a}),Object(a["f"])("img",{class:"stars",src:ce.a})],-1))])}var Pe={name:"fake",emits:["exit"],props:{studentName:String,studentID:String,items:Array,approvers:Array,ccs:Array}},Be=(c("d69a"),c("6e4b"),c("9524"),c("c09b"),c("2b54"),c("8eeb"),c("6b0d")),De=c.n(Be);const Te=De()(Pe,[["render",Ue],["__scopeId","data-v-61514e15"]]);var We=Te,Ne=c("e7e9"),Re=c.n(Ne),qe=c("c2a2"),Ze=c.n(qe);const ze={id:"sub-root"},Le={class:"hx-content"},Me={class:"qrCode___3iwXY",style:{height:"360px"}},Ke={key:0,class:"qr___Jrc0m",src:Re.a,style:{width:"270px",height:"270px"}},Fe={key:1,class:"qr___Jrc0m",src:Ze.a,style:{width:"270px",height:"270px"}},Ye={class:"text___HVPBl"},Ge={class:"second___1XzxW"};function $e(e,t,c,i,l,d){return Object(a["i"])(),Object(a["e"])("div",ze,[Object(a["f"])("div",Le,[Object(a["f"])("div",Me,[Object(a["f"])("div",null,[0==l.qrcodeIndex?(Object(a["i"])(),Object(a["e"])("img",Ke)):Object(a["d"])("",!0),1==l.qrcodeIndex?(Object(a["i"])(),Object(a["e"])("img",Fe)):Object(a["d"])("",!0),Object(a["f"])("div",Ye,[t[0]||(t[0]=Object(a["h"])("二维码将在")),Object(a["f"])("span",Ge,Object(a["l"])(d.timeString)+"秒",1),t[1]||(t[1]=Object(a["h"])("后刷新"))])])]),t[2]||(t[2]=Object(a["g"])('
离校详情
操作人
-
操作时间
-
备注
-
返校详情
操作人
-
操作时间
-
备注
-
',2))])])}var et={name:"qrcode",data(){return{time:20,qrcodeIndex:0}},computed:{timeString(){return(this.time<10?"0":"")+String(this.time)}},mounted(){setInterval(()=>{this.time>1?this.time-=1:(this.time=20,this.qrcodeIndex++,this.qrcodeIndex%=2)},1e3)}};c("b618");const tt=De()(et,[["render",$e],["__scopeId","data-v-c85a5d98"]]);var ct=tt,at={name:"App",components:{Fake:We,QRCode:ct},data(){return{page:0,studentName:"Example",studentID:"1234567890",items:[{name:"审批编号",value:"20210101080000123456"},{name:"是否离校",value:"是"},{name:"是否离开沈阳",value:"否"},{name:"是否离开辽宁省",value:"否"},{name:"前往省份、城市",value:""},{name:"开始时间",value:"2021-01-01 08:00"},{name:"结束时间",value:"2021-01-02 08:00"},{name:"时长",value:"24"},{name:"请假类型",value:"事假"},{name:"本人联系电话",value:""},{name:"紧急联系人",value:""},{name:"紧急联系电话",value:""},{name:"请假原因",value:""}],approvers:[],ccs:[],deletingItem:-1,deletingApprover:-1,deletingCC:-1}},methods:{go(){window.localStorage.setItem("last-data",JSON.stringify(this.$data)),this.page=1},setButtonCancel(e){e&&(this.buttonCancel=e)}},mounted(){let e=window.localStorage.getItem("last-data");if(e){let t=JSON.parse(e);this.studentName=t.studentName,this.studentID=t.studentID,this.items=t.items,this.approvers=t.approvers,this.ccs=t.ccs}}};c("eea2");const it=De()(at,[["render",G]]);var lt=it,dt=c("9483");Object(dt["a"])("/fake-yiban/dist/service-worker.js",{ready(){console.log("App is being served from cache by a service worker.\nFor more details, visit https://goo.gl/AFskqB")},registered(){console.log("Service worker has been registered.")},cached(){console.log("Content has been cached for offline use.")},updatefound(){console.log("New content is downloading.")},updated(){console.log("New content is available; please refresh.")},offline(){console.log("No internet connection found. App is running in offline mode.")},error(e){console.error("Error during service worker registration:",e)}}),Object(a["b"])(lt).mount("#app")},"5d98":function(e,t,c){e.exports=c.p+"img/star_back.a22700c5.png"},"6e4b":function(e,t,c){"use strict";c("41c7")},"74fc":function(e,t,c){},"79a0":function(e,t,c){e.exports=c.p+"img/about.facbd5bf.svg"},"834b":function(e,t,c){},"8eeb":function(e,t,c){"use strict";c("04ea")},9524:function(e,t,c){"use strict";c("74fc")},b618:function(e,t,c){"use strict";c("eb29")},bf37:function(e,t,c){e.exports=c.p+"img/close.b2ffde26.svg"},c09b:function(e,t,c){"use strict";c("834b")},c2a2:function(e,t,c){e.exports=c.p+"img/qrcode1.4f42d1ee.svg"},ccfe:function(e,t,c){e.exports=c.p+"img/back.bade37cb.svg"},cf05:function(e,t,c){e.exports=c.p+"img/logo.15eb1df8.png"},d00d:function(e,t,c){},d69a:function(e,t,c){"use strict";c("d00d")},d739:function(e,t,c){e.exports=c.p+"img/delete.b6bbbf94.svg"},e7e9:function(e,t,c){e.exports=c.p+"img/qrcode0.ccd4d4ec.svg"},eb29:function(e,t,c){},eea2:function(e,t,c){"use strict";c("55fd")},eef4:function(e,t,c){e.exports=c.p+"img/add.d47d282b.svg"},ef41:function(e,t,c){}}); 2 | //# sourceMappingURL=app.2414cbfa.js.map -------------------------------------------------------------------------------- /src/components/fake/9c25fb71.chunk.css: -------------------------------------------------------------------------------- 1 | .am-activity-indicator { 2 | display:-ms-flexbox; 3 | display:flex; 4 | -ms-flex-align:center; 5 | align-items:center; 6 | z-index:99 7 | } 8 | .am-activity-indicator-spinner { 9 | display:inline-block; 10 | width:20px; 11 | height:20px; 12 | background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2.125 -1.875 64 64'%3E%3Cpath fill='%23CCC' d='M29.875-1.875c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm0 60.7c-15.85 0-28.7-12.85-28.7-28.7s12.85-28.7 28.7-28.7 28.7 12.85 28.7 28.7-12.85 28.7-28.7 28.7z'/%3E%3Cpath fill='%2351aeff' d='M61.858 30.34c.003-.102.008-.203.008-.305 0-11.43-5.996-21.452-15.01-27.113l-.013.026a1.629 1.629 0 00-.81-.22 1.646 1.646 0 00-.713 3.132c7.963 5.1 13.247 14.017 13.247 24.176 0 .147-.01.293-.01.44h.022c0 .01-.004.02-.004.03 0 .91.74 1.65 1.65 1.65s1.65-.74 1.65-1.65c0-.06-.012-.112-.018-.167z'/%3E%3C/svg%3E"); 13 | background-position:50%; 14 | background-size:100%; 15 | background-repeat:no-repeat; 16 | animation:spinner-anime 1s linear infinite 17 | } 18 | .am-activity-indicator-tip { 19 | font-size:14px; 20 | margin-left:8px; 21 | color:#333; 22 | opacity:.4 23 | } 24 | .am-activity-indicator.am-activity-indicator-toast { 25 | position:fixed; 26 | top:0; 27 | left:0; 28 | width:100%; 29 | height:100%; 30 | display:-ms-flexbox; 31 | display:flex; 32 | -ms-flex-pack:center; 33 | justify-content:center; 34 | -ms-flex-align:center; 35 | align-items:center; 36 | text-align:center; 37 | z-index:1999 38 | } 39 | .am-activity-indicator.am-activity-indicator-toast .am-activity-indicator-spinner { 40 | margin:0 41 | } 42 | .am-activity-indicator.am-activity-indicator-toast .am-activity-indicator-toast { 43 | display:inline-block; 44 | position:relative; 45 | top:4px 46 | } 47 | .am-activity-indicator-content { 48 | display:-ms-flexbox; 49 | display:flex; 50 | -ms-flex-direction:column; 51 | flex-direction:column; 52 | -ms-flex-pack:center; 53 | justify-content:center; 54 | -ms-flex-align:center; 55 | align-items:center; 56 | padding:15px; 57 | border-radius:7px; 58 | background-clip:padding-box; 59 | color:#fff; 60 | background-color:rgba(58,58,58,.9); 61 | font-size:15px; 62 | line-height:20px 63 | } 64 | .am-activity-indicator-spinner-lg { 65 | width:32px; 66 | height:32px 67 | } 68 | @keyframes spinner-anime { 69 | to { 70 | transform:rotate(1turn) 71 | } 72 | } 73 | 74 | /*! 75 | * Viewer.js v1.7.1 76 | * https://fengyuanchen.github.io/viewerjs 77 | * 78 | * Copyright 2015-present Chen Fengyuan 79 | * Released under the MIT license 80 | * 81 | * Date: 2020-09-29T13:45:16.438Z 82 | */ 83 | .viewer-close:before, 84 | .viewer-flip-horizontal:before, 85 | .viewer-flip-vertical:before, 86 | .viewer-fullscreen-exit:before, 87 | .viewer-fullscreen:before, 88 | .viewer-next:before, 89 | .viewer-one-to-one:before, 90 | .viewer-play:before, 91 | .viewer-prev:before, 92 | .viewer-reset:before, 93 | .viewer-rotate-left:before, 94 | .viewer-rotate-right:before, 95 | .viewer-zoom-in:before, 96 | .viewer-zoom-out:before { 97 | background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAUCAYAAABWOyJDAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAQPSURBVHic7Zs/iFxVFMa/0U2UaJGksUgnIVhYxVhpjDbZCBmLdAYECxsRFBTUamcXUiSNncgKQbSxsxH8gzAP3FU2jY0kKKJNiiiIghFlccnP4p3nPCdv3p9778vsLOcHB2bfveeb7955c3jvvNkBIMdxnD64a94GHMfZu3iBcRynN7zAOI7TG15gHCeeNUkr8zaxG2lbYDYsdgMbktBsP03jdQwljSXdtBhLOmtjowC9Mg9L+knSlcD8TNKpSA9lBpK2JF2VdDSR5n5J64m0qli399hNFMUlpshQii5jbXTbHGviB0nLNeNDSd9VO4A2UdB2fp+x0eCnaXxWXGA2X0au/3HgN9P4LFCjIANOJdrLr0zzZ+BEpNYDwKbpnQMeAw4m8HjQtM6Z9qa917zPQwFr3M5KgA6J5rTJCdFZJj9/lyvGhsDvwFNVuV2MhhjrK6b9bFiE+j1r87eBl4HDwCF7/U/k+ofAX5b/EXBv5JoLMuILzf3Ap6Z3EzgdqHMCuF7hcQf4HDgeoHnccncqdK/TvSDWffFXI/exICY/xZyqc6XLWF1UFZna4gJ7q8BsRvgd2/xXpo6P+D9dfT7PpECtA3cnWPM0GXGFZh/wgWltA+cDNC7X+AP4GzjZQe+k5dRxuYPeiuXU7e1qwLpDz7dFjXKRaSwuMLvAlG8zZlG+YmiK1HoFqT7wP2z+4Q45TfEGcMt01xLoNZEBTwRqD4BLpnMLeC1A41UmVxsXgXeBayV/Wx20rpTyrpnWRft7p6O/FdqzGrDukPNtkaMoMo3FBdBSQMOnYBCReyf05s126fU9ytfX98+mY54Kxnp7S9K3kj6U9KYdG0h6UdLbkh7poFXMfUnSOyVvL0h6VtIXHbS6nOP+s/Zm9mvyXW1uuC9ohZ72E9uDmXWLJOB1GxsH+DxPftsB8B6wlGDN02TAkxG6+4D3TWsbeC5CS8CDFce+AW500LhhOW2020TRjK3b21HEmgti9m0RonxbdMZeVzV+/4tF3cBpP7E9mKHNL5q8h5g0eYsCMQz0epq8gQrwMXAgcs0FGXGFRcB9wCemF9PkbYqM/Bas7fxLwNeJPdTdpo4itQti8lPMqTpXuozVRVXPpbHI3KkNTB1NfkL81j2mvhDp91HgV9MKuRIqrykj3WPq4rHyL+axj8/qGPmTqi6F9YDlHOvJU6oYcTsh/TYSzWmTE6JT19CtLTJt32D6CmHe0eQn1O8z5AXgT4sx4Vcu0/EQecMydB8z0hUWkTd2t4CrwNEePqMBcAR4mrBbwyXLPWJa8zrXmmLEhNBmfpkuY2102xxrih+pb+ieAb6vGhuA97UcJ5KR8gZ77K+99xxeYBzH6Q3/Z0fHcXrDC4zjOL3hBcZxnN74F+zlvXFWXF9PAAAAAElFTkSuQmCC"); 98 | background-repeat:no-repeat; 99 | background-size:280px; 100 | color:transparent; 101 | display:block; 102 | font-size:0; 103 | height:20px; 104 | line-height:0; 105 | width:20px 106 | } 107 | .viewer-zoom-in:before { 108 | background-position:0 0; 109 | content:"Zoom In" 110 | } 111 | .viewer-zoom-out:before { 112 | background-position:-20px 0; 113 | content:"Zoom Out" 114 | } 115 | .viewer-one-to-one:before { 116 | background-position:-40px 0; 117 | content:"One to One" 118 | } 119 | .viewer-reset:before { 120 | background-position:-60px 0; 121 | content:"Reset" 122 | } 123 | .viewer-prev:before { 124 | background-position:-80px 0; 125 | content:"Previous" 126 | } 127 | .viewer-play:before { 128 | background-position:-100px 0; 129 | content:"Play" 130 | } 131 | .viewer-next:before { 132 | background-position:-120px 0; 133 | content:"Next" 134 | } 135 | .viewer-rotate-left:before { 136 | background-position:-140px 0; 137 | content:"Rotate Left" 138 | } 139 | .viewer-rotate-right:before { 140 | background-position:-160px 0; 141 | content:"Rotate Right" 142 | } 143 | .viewer-flip-horizontal:before { 144 | background-position:-180px 0; 145 | content:"Flip Horizontal" 146 | } 147 | .viewer-flip-vertical:before { 148 | background-position:-200px 0; 149 | content:"Flip Vertical" 150 | } 151 | .viewer-fullscreen:before { 152 | background-position:-220px 0; 153 | content:"Enter Full Screen" 154 | } 155 | .viewer-fullscreen-exit:before { 156 | background-position:-240px 0; 157 | content:"Exit Full Screen" 158 | } 159 | .viewer-close:before { 160 | background-position:-260px 0; 161 | content:"Close" 162 | } 163 | .viewer-container { 164 | bottom:0; 165 | direction:ltr; 166 | font-size:0; 167 | left:0; 168 | line-height:0; 169 | overflow:hidden; 170 | position:absolute; 171 | right:0; 172 | -webkit-tap-highlight-color:transparent; 173 | top:0; 174 | -ms-touch-action:none; 175 | touch-action:none; 176 | -webkit-touch-callout:none; 177 | -webkit-user-select:none; 178 | -moz-user-select:none; 179 | -ms-user-select:none; 180 | user-select:none 181 | } 182 | .viewer-container::-moz-selection, 183 | .viewer-container ::-moz-selection { 184 | background-color:transparent 185 | } 186 | .viewer-container::selection, 187 | .viewer-container ::selection { 188 | background-color:transparent 189 | } 190 | .viewer-container img { 191 | display:block; 192 | height:auto; 193 | max-height:none!important; 194 | max-width:none!important; 195 | min-height:0!important; 196 | min-width:0!important; 197 | width:100% 198 | } 199 | .viewer-canvas { 200 | bottom:0; 201 | left:0; 202 | overflow:hidden; 203 | position:absolute; 204 | right:0; 205 | top:0 206 | } 207 | .viewer-canvas>img { 208 | height:auto; 209 | margin:15px auto; 210 | max-width:90%!important; 211 | width:auto 212 | } 213 | .viewer-footer { 214 | bottom:0; 215 | left:0; 216 | overflow:hidden; 217 | position:absolute; 218 | right:0; 219 | text-align:center 220 | } 221 | .viewer-navbar { 222 | background-color:rgba(0,0,0,.5); 223 | overflow:hidden 224 | } 225 | .viewer-list { 226 | box-sizing:content-box; 227 | height:50px; 228 | margin:0; 229 | overflow:hidden; 230 | padding:1px 0 231 | } 232 | .viewer-list>li { 233 | color:transparent; 234 | cursor:pointer; 235 | float:left; 236 | font-size:0; 237 | height:50px; 238 | line-height:0; 239 | opacity:.5; 240 | overflow:hidden; 241 | transition:opacity .15s; 242 | width:30px 243 | } 244 | .viewer-list>li:hover { 245 | opacity:.75 246 | } 247 | .viewer-list>li+li { 248 | margin-left:1px 249 | } 250 | .viewer-list>.viewer-loading { 251 | position:relative 252 | } 253 | .viewer-list>.viewer-loading:after { 254 | border-width:2px; 255 | height:20px; 256 | margin-left:-10px; 257 | margin-top:-10px; 258 | width:20px 259 | } 260 | .viewer-list>.viewer-active, 261 | .viewer-list>.viewer-active:hover { 262 | opacity:1 263 | } 264 | .viewer-player { 265 | background-color:#000; 266 | bottom:0; 267 | cursor:none; 268 | display:none; 269 | right:0 270 | } 271 | .viewer-player, 272 | .viewer-player>img { 273 | left:0; 274 | position:absolute; 275 | top:0 276 | } 277 | .viewer-toolbar>ul { 278 | display:inline-block; 279 | margin:0 auto 5px; 280 | overflow:hidden; 281 | padding:3px 0 282 | } 283 | .viewer-toolbar>ul>li { 284 | background-color:rgba(0,0,0,.5); 285 | border-radius:50%; 286 | cursor:pointer; 287 | float:left; 288 | height:24px; 289 | overflow:hidden; 290 | transition:background-color .15s; 291 | width:24px 292 | } 293 | .viewer-toolbar>ul>li:hover { 294 | background-color:rgba(0,0,0,.8) 295 | } 296 | .viewer-toolbar>ul>li:before { 297 | margin:2px 298 | } 299 | .viewer-toolbar>ul>li+li { 300 | margin-left:1px 301 | } 302 | .viewer-toolbar>ul>.viewer-small { 303 | height:18px; 304 | margin-bottom:3px; 305 | margin-top:3px; 306 | width:18px 307 | } 308 | .viewer-toolbar>ul>.viewer-small:before { 309 | margin:-1px 310 | } 311 | .viewer-toolbar>ul>.viewer-large { 312 | height:30px; 313 | margin-bottom:-3px; 314 | margin-top:-3px; 315 | width:30px 316 | } 317 | .viewer-toolbar>ul>.viewer-large:before { 318 | margin:5px 319 | } 320 | .viewer-tooltip { 321 | background-color:rgba(0,0,0,.8); 322 | border-radius:10px; 323 | color:#fff; 324 | display:none; 325 | font-size:12px; 326 | height:20px; 327 | left:50%; 328 | line-height:20px; 329 | margin-left:-25px; 330 | margin-top:-10px; 331 | position:absolute; 332 | text-align:center; 333 | top:50%; 334 | width:50px 335 | } 336 | .viewer-title { 337 | color:#ccc; 338 | display:inline-block; 339 | font-size:12px; 340 | line-height:1; 341 | margin:0 5% 5px; 342 | max-width:90%; 343 | opacity:.8; 344 | overflow:hidden; 345 | text-overflow:ellipsis; 346 | transition:opacity .15s; 347 | white-space:nowrap 348 | } 349 | .viewer-title:hover { 350 | opacity:1 351 | } 352 | .viewer-button { 353 | background-color:rgba(0,0,0,.5); 354 | border-radius:50%; 355 | cursor:pointer; 356 | height:80px; 357 | overflow:hidden; 358 | position:absolute; 359 | right:-40px; 360 | top:-40px; 361 | transition:background-color .15s; 362 | width:80px 363 | } 364 | .viewer-button:focus, 365 | .viewer-button:hover { 366 | background-color:rgba(0,0,0,.8) 367 | } 368 | .viewer-button:before { 369 | bottom:15px; 370 | left:15px; 371 | position:absolute 372 | } 373 | .viewer-fixed { 374 | position:fixed 375 | } 376 | .viewer-open { 377 | overflow:hidden 378 | } 379 | .viewer-show { 380 | display:block 381 | } 382 | .viewer-hide { 383 | display:none 384 | } 385 | .viewer-backdrop { 386 | background-color:rgba(0,0,0,.5) 387 | } 388 | .viewer-invisible { 389 | visibility:hidden 390 | } 391 | .viewer-move { 392 | cursor:move; 393 | cursor:-webkit-grab; 394 | cursor:grab 395 | } 396 | .viewer-fade { 397 | opacity:0 398 | } 399 | .viewer-in { 400 | opacity:1 401 | } 402 | .viewer-transition { 403 | transition:all .3s 404 | } 405 | @keyframes viewer-spinner { 406 | 0% { 407 | transform:rotate(0deg) 408 | } 409 | to { 410 | transform:rotate(1turn) 411 | } 412 | } 413 | .viewer-loading:after { 414 | animation:viewer-spinner 1s linear infinite; 415 | border:4px solid hsla(0,0%,100%,.1); 416 | border-left-color:hsla(0,0%,100%,.5); 417 | border-radius:50%; 418 | content:""; 419 | display:inline-block; 420 | height:40px; 421 | left:50%; 422 | margin-left:-20px; 423 | margin-top:-20px; 424 | position:absolute; 425 | top:50%; 426 | width:40px; 427 | z-index:1 428 | } 429 | @media (max-width:767px) { 430 | .viewer-hide-xs-down { 431 | display:none 432 | } 433 | } 434 | @media (max-width:991px) { 435 | .viewer-hide-sm-down { 436 | display:none 437 | } 438 | } 439 | @media (max-width:1199px) { 440 | .viewer-hide-md-down { 441 | display:none 442 | } 443 | } 444 | .am-accordion { 445 | position:relative; 446 | border-top:1px solid #ddd 447 | } 448 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 449 | html:not([data-scale]) .am-accordion { 450 | border-top:none 451 | } 452 | html:not([data-scale]) .am-accordion:before { 453 | content:""; 454 | position:absolute; 455 | background-color:#ddd; 456 | display:block; 457 | z-index:1; 458 | top:0; 459 | right:auto; 460 | bottom:auto; 461 | left:0; 462 | width:100%; 463 | height:1PX; 464 | -ms-transform-origin:50% 50%; 465 | transform-origin:50% 50%; 466 | -ms-transform:scaleY(.5); 467 | transform:scaleY(.5) 468 | } 469 | } 470 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 471 | html:not([data-scale]) .am-accordion:before { 472 | -ms-transform:scaleY(.33); 473 | transform:scaleY(.33) 474 | } 475 | } 476 | .am-accordion-anim-active { 477 | transition:all .2s ease-out 478 | } 479 | .am-accordion .am-accordion-item .am-accordion-header { 480 | position:relative; 481 | color:#333; 482 | font-size:17px; 483 | height:44px; 484 | line-height:44px; 485 | background-color:#fff; 486 | box-sizing:content-box; 487 | padding-left:15px; 488 | padding-right:30px; 489 | border-bottom:1px solid #ddd; 490 | width:auto; 491 | overflow:hidden; 492 | text-overflow:ellipsis; 493 | white-space:nowrap 494 | } 495 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 496 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-header { 497 | border-bottom:none 498 | } 499 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-header:after { 500 | content:""; 501 | position:absolute; 502 | background-color:#ddd; 503 | display:block; 504 | z-index:1; 505 | top:auto; 506 | right:auto; 507 | bottom:0; 508 | left:0; 509 | width:100%; 510 | height:1PX; 511 | -ms-transform-origin:50% 100%; 512 | transform-origin:50% 100%; 513 | -ms-transform:scaleY(.5); 514 | transform:scaleY(.5) 515 | } 516 | } 517 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 518 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-header:after { 519 | -ms-transform:scaleY(.33); 520 | transform:scaleY(.33) 521 | } 522 | } 523 | .am-accordion .am-accordion-item .am-accordion-header i { 524 | position:absolute; 525 | display:block; 526 | top:15px; 527 | right:15px; 528 | width:15px; 529 | height:15px; 530 | background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 0L0 2l11.5 11L0 24l2 2 14-13z' fill='%23C7C7CC' fill-rule='evenodd'/%3E%3C/svg%3E"); 531 | background-size:contain; 532 | background-repeat:no-repeat; 533 | background-position:50% 50%; 534 | -ms-transform:rotate(90deg); 535 | transform:rotate(90deg); 536 | transition:transform .2s ease 537 | } 538 | .am-accordion .am-accordion-item .am-accordion-header[aria-expanded~=true] i { 539 | -ms-transform:rotate(270deg); 540 | transform:rotate(270deg) 541 | } 542 | .am-accordion .am-accordion-item .am-accordion-content { 543 | overflow:hidden; 544 | background:#fff 545 | } 546 | .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box { 547 | font-size:15px; 548 | color:#333; 549 | position:relative; 550 | border-bottom:1px solid #ddd 551 | } 552 | @media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx) { 553 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box { 554 | border-bottom:none 555 | } 556 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box:after { 557 | content:""; 558 | position:absolute; 559 | background-color:#ddd; 560 | display:block; 561 | z-index:1; 562 | top:auto; 563 | right:auto; 564 | bottom:0; 565 | left:0; 566 | width:100%; 567 | height:1PX; 568 | -ms-transform-origin:50% 100%; 569 | transform-origin:50% 100%; 570 | -ms-transform:scaleY(.5); 571 | transform:scaleY(.5) 572 | } 573 | } 574 | @media (-webkit-min-device-pixel-ratio:2) and (-webkit-min-device-pixel-ratio:3),(min-resolution:2dppx) and (min-resolution:3dppx) { 575 | html:not([data-scale]) .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box:after { 576 | -ms-transform:scaleY(.33); 577 | transform:scaleY(.33) 578 | } 579 | } 580 | .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box .am-list-body { 581 | border-top:0 582 | } 583 | .am-accordion .am-accordion-item .am-accordion-content .am-accordion-content-box .am-list-body:before { 584 | display:none!important 585 | } 586 | .am-accordion .am-accordion-item .am-accordion-content.am-accordion-content-inactive { 587 | display:none 588 | } 589 | #hx-map { 590 | width:100%; 591 | height:100%; 592 | -ms-flex-positive:1; 593 | flex-grow:1; 594 | position:relative 595 | } 596 | #hx-map img { 597 | min-width:0!important; 598 | max-height:none!important 599 | } 600 | #hx-map .amap-copyright, 601 | #hx-map .amap-logo, 602 | #hx-map .anchorBL { 603 | display:none!important 604 | } 605 | #hx-map .amap-icon img { 606 | top:0; 607 | left:0 608 | } 609 | .amap-marker-label { 610 | background-color:rgba(0,0,0,.3); 611 | color:#fff; 612 | border:0 613 | } 614 | .hx-preview-position .am-modal-body { 615 | display:-ms-flexbox; 616 | display:flex; 617 | -ms-flex-direction:column; 618 | flex-direction:column; 619 | -ms-flex-align:stretch; 620 | align-items:stretch 621 | } 622 | .hx-preview-position-title { 623 | padding:15px 0; 624 | font-size:17px; 625 | color:#333 626 | } 627 | .hx-preview-position-btn { 628 | -ms-flex-negative:0; 629 | flex-shrink:0; 630 | border-radius:0; 631 | color:#51aeff 632 | } 633 | .hx-call-icon { 634 | width:18px; 635 | margin-left:10px 636 | } 637 | .hx-call-tel { 638 | font-size:15px; 639 | color:#333 640 | } 641 | .hx-title-default, 642 | .hx-title-detail, 643 | .hx-title-filter { 644 | display:-ms-flexbox; 645 | -ms-flex-align:stretch; 646 | align-items:stretch; 647 | -ms-flex-pack:start; 648 | font-size:14px; 649 | margin:10px 15px; 650 | -ms-flex-negative:0; 651 | flex-shrink:0; 652 | display:flex; 653 | -ms-flex-align:center; 654 | align-items:center; 655 | justify-content:flex-start 656 | } 657 | .hx-title-default-dot, 658 | .hx-title-detail-dot, 659 | .hx-title-filter-dot { 660 | -ms-flex-negative:0; 661 | flex-shrink:0; 662 | margin-right:5px 663 | } 664 | .hx-title-detail { 665 | border-left:4px solid #51aeff; 666 | padding-left:5px 667 | } 668 | .hx-title-detail-dot { 669 | display:none 670 | } 671 | .hx-title-filter-dot { 672 | box-sizing:border-box; 673 | width:12px; 674 | height:12px; 675 | background-color:#fff; 676 | border:2px solid #51aeff; 677 | display:-ms-flexbox; 678 | display:flex; 679 | -ms-flex-align:center; 680 | align-items:center; 681 | -ms-flex-pack:center; 682 | justify-content:center 683 | } 684 | .hx-title-filter-dot:before { 685 | content:""; 686 | display:block; 687 | background-color:#51aeff; 688 | width:4px; 689 | height:4px 690 | } 691 | .hx-detail { 692 | -ms-flex-negative:0; 693 | flex-shrink:0 694 | } 695 | .hx-detail-title { 696 | font-size:14px; 697 | padding:0 5px; 698 | margin:10px 15px; 699 | border-left:4px solid #51aeff; 700 | line-height:1 701 | } 702 | .hx-detail-statusIcon { 703 | position:fixed; 704 | width:92px; 705 | top:10px; 706 | right:15px; 707 | z-index:10 708 | } 709 | .hx-detail-content { 710 | padding:0 15px; 711 | background-color:#fff 712 | } 713 | .hx-detail-empty { 714 | margin-bottom:10px 715 | } 716 | .hx-detail-item { 717 | display:-ms-flexbox; 718 | display:flex; 719 | line-height:18px; 720 | padding-bottom:16px; 721 | font-size:14px 722 | } 723 | .hx-detail-item-field, 724 | .hx-detail-item-label { 725 | font-size:15px 726 | } 727 | .hx-detail-item-label { 728 | width:78px; 729 | color:#999; 730 | text-align:right; 731 | -ms-flex-negative:0; 732 | flex-shrink:0 733 | } 734 | .hx-detail-item-field { 735 | color:#333; 736 | margin-left:10px; 737 | -ms-flex:1 1; 738 | flex:1 1; 739 | word-break:break-all; 740 | display:-ms-flexbox; 741 | display:flex; 742 | -ms-flex-wrap:wrap; 743 | flex-wrap:wrap; 744 | -ms-flex-align:start; 745 | align-items:flex-start; 746 | -ms-flex-pack:start; 747 | justify-content:flex-start; 748 | overflow:hidden 749 | } 750 | .hx-detail .hx-detail-item:first-of-type { 751 | padding-top:16px 752 | } 753 | .hx-detail-accordion { 754 | border:0!important 755 | } 756 | .hx-detail-accordion.am-accordion:after, 757 | .hx-detail-accordion.am-accordion:before { 758 | display:none!important 759 | } 760 | .hx-detail-accordion .am-accordion-header { 761 | height:auto!important; 762 | line-height:inherit!important; 763 | padding:0!important; 764 | font-size:14px!important; 765 | display:-ms-flexbox; 766 | display:flex; 767 | -ms-flex-align:center; 768 | align-items:center; 769 | -ms-flex-pack:start; 770 | justify-content:flex-start; 771 | border:0!important 772 | } 773 | .hx-detail-accordion .am-accordion-header:after { 774 | display:none!important 775 | } 776 | .hx-detail-accordion .am-accordion-header i { 777 | top:50%!important; 778 | -ms-transform:translateY(-50%) rotate(90deg)!important; 779 | transform:translateY(-50%) rotate(90deg)!important; 780 | right:0!important 781 | } 782 | .hx-detail-accordion .am-accordion-header[aria-expanded~=true] i { 783 | -ms-transform:translateY(-50%) rotate(270deg)!important; 784 | transform:translateY(-50%) rotate(270deg)!important 785 | } 786 | .hx-detail-accordion .am-accordion-header .hx-detail-item { 787 | width:100%; 788 | -ms-flex-align:center; 789 | align-items:center 790 | } 791 | .hx-detail-accordion .am-accordion-content-box .hx-detail-item:first-of-type { 792 | padding-top:0 793 | } 794 | .hx-detail-image { 795 | display:-ms-flexbox; 796 | display:flex; 797 | -ms-flex-wrap:wrap; 798 | flex-wrap:wrap; 799 | -ms-flex-align:center; 800 | align-items:center; 801 | -ms-flex-pack:start; 802 | justify-content:flex-start; 803 | -ms-flex-positive:1; 804 | flex-grow:1; 805 | overflow:hidden 806 | } 807 | .hx-detail-PreviewPosition { 808 | color:#51aeff; 809 | cursor:pointer 810 | } 811 | .am-segment { 812 | display:-ms-flexbox; 813 | display:flex; 814 | border-radius:5px; 815 | overflow:hidden; 816 | min-height:27px; 817 | opacity:1 818 | } 819 | .am-segment.am-segment-disabled { 820 | opacity:.5 821 | } 822 | .am-segment-item { 823 | display:-ms-flexbox; 824 | display:flex; 825 | -ms-flex:1 1; 826 | flex:1 1; 827 | -ms-flex-pack:center; 828 | justify-content:center; 829 | -ms-flex-align:center; 830 | align-items:center; 831 | color:#51aeff; 832 | font-size:14px; 833 | line-height:1; 834 | transition:background .2s; 835 | position:relative; 836 | width:100%; 837 | box-sizing:border-box; 838 | border:1px solid #51aeff; 839 | border-left-width:0 840 | } 841 | .am-segment-item-tintcolor { 842 | border-color:#51aeff 843 | } 844 | .am-segment-item:first-child { 845 | border-left-width:1PX; 846 | border-radius:5px 0 0 5px 847 | } 848 | .am-segment-item:last-child { 849 | border-radius:0 5px 5px 0 850 | } 851 | .am-segment-item-selected { 852 | background:#51aeff; 853 | color:#fff 854 | } 855 | .am-segment-item-active .am-segment-item-inner { 856 | position:absolute; 857 | top:0; 858 | left:0; 859 | height:100%; 860 | width:100%; 861 | opacity:.1; 862 | transition:background .2s; 863 | background-color:#51aeff 864 | } 865 | .hx-noData { 866 | width:100%; 867 | height:100%; 868 | font-size:14px; 869 | display:-ms-flexbox; 870 | display:flex; 871 | -ms-flex-direction:column; 872 | flex-direction:column; 873 | -ms-flex-pack:center; 874 | justify-content:center; 875 | -ms-flex-align:center; 876 | align-items:center 877 | } 878 | .hx-noData .icon { 879 | width:24% 880 | } 881 | .hx-noData .text { 882 | color:#999; 883 | margin-top:10px 884 | } 885 | .qrCode___3iwXY { 886 | font-size:32px; 887 | border-radius:8px; 888 | text-align:center; 889 | background-color:#fff; 890 | width:100%; 891 | display:-ms-flexbox; 892 | display:flex; 893 | -ms-flex-pack:center; 894 | justify-content:center; 895 | box-shadow:0 0 0 10px hsla(0,0%,100%,.4) 896 | } 897 | .qrCode___3iwXY .qr___Jrc0m { 898 | margin-top:30px 899 | } 900 | .qrCode___3iwXY .text___HVPBl { 901 | margin-top:10px; 902 | font-size:15px 903 | } 904 | .qrCode___3iwXY .text___HVPBl .second___1XzxW { 905 | color:#ff6565; 906 | margin:0 2px 907 | } 908 | -------------------------------------------------------------------------------- /dist/img/qrcode0.ccd4d4ec.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/components/fake/qrcode0.svg: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------