Commit 7371dd23 authored by hailiang.sun's avatar hailiang.sun

init & login ui done

parent f0926b79
Pipeline #191 failed with stages
# ln-medicalAppointment-pc
椋鸟健康体检平台
\ No newline at end of file
椋鸟健康体检预约平台-pc 版
module.exports = {
presets: ["@vue/cli-plugin-babel/preset"],
plugins: [
],
};
{
"name": "medilink",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"ant-design-vue": "^1.7.8",
"axios": "^0.24.0",
"babel-plugin-import": "^1.13.3",
"core-js": "^3.6.5",
"moment": "^2.29.1",
"qs": "^6.10.1",
"style-resources-loader": "^1.4.1",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vuex": "^3.4.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"vue-template-compiler": "^2.6.11"
}
}
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<title>健康服务预约平台</title>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
<template>
<div id="app">
<router-view />
</div>
</template>
<style lang="less">
* {
padding: 0;
margin: 0;
list-style: none;
}
html{
overflow-x: hidden;
}
</style>
// 引入工具包
import utils from "@/utils/index.js";
let urlArr = [{ demoUrl: "" }];
export default utils.arrToObj(urlArr);
import apis from "./apis";
import req from "./request";
import utils from "@/utils/index.js";
const demoFun = (params) => {
req.get(apis.demoUrl, { params });
};
const funcs = [{ demoFun }];
export default utils.arrToObj(funcs);
// import apis from './apis'
import req from './request'
// import qs from 'qs'
// import utils from '@/utils/index.js'
let api = {}
// 登录接口:
api.userLogin = function (data) {
return req.post('/login/isValidUserInfo', data)
}
//查询当前语言
api.getLanguageL = function (data) {
return req.post(`/api/web/getLanguage`, data)
}
api.goLoginInfo = function (data) {
return req.post(`/web/goLoginInfo`, data)
}
export default api
import apis from "./apis";
import req from "./request";
import qs from "qs";
import utils from "@/utils/index.js";
let api = {};
// 根据字典代码查询性质类别
api.getReferenceInfo = function(data) {
return req.post(`/wx/getReferenceInfo?${qs.stringify(data)}`);
};
// 查询医疗机构列表
api.getProviderPageListToWeb = function(data) {
return req.post(
`/wx/getProviderPageListToWeb?${qs.stringify(data)}`,
data
);
};
// 查询海外医疗机构列表
api.searchCountryForProviderList = function(data) {
return req.post(`/wx/searchCountryForProviderList`, {});
};
api.searchProviderListByCountry = (data)=>{
return req.post('/wx/searchProviderListByCountry', {
data
})
}
//发送邮件
api.sendMailToWeb = function(data) {
return instance.post("/wx/sendMailToWeb", data);
};
export default api;
import axios from "axios";
let baseUrl = "/api"; // 基础接口请求信息
const service = axios.create({
validateStatus(status) {
return status >= 200 && status <= 504; // 合法状态码
},
baseURL: baseUrl, // 基础请求路径
timeout: 30000, // 请求超时
});
// 重复尝试此时
service.defaults.retry = 3;
// 重试延时
service.defaults.retryDelay = 15000;
// 开启重试
service.defaults.shouldRetry = true;
// 请求拦截
service.interceptors.request.use(
(config) => {
config.headers["Content-Type"] = "application/json;charset=UTF-8";
config.headers["Accept-Language"] = "zh-CN";
// 如果需要可以开启token,token是全局数据来自store
// config.headers["Authorization"] = store.state.user.token;
if (config.method === "post") {
if (!config.data) {
config.data = {};
}
}
return config;
},
(error) => {
const {
response: { status, statusText },
} = error;
throw new Error(`状态码:${status},信息:${statusText},位置:request`);
}
);
// response 拦截器
service.interceptors.response.use(
(response) => {
return new Promise((resolve, reject) => {
if (response.status !== 200) {
// 请求失败
reject(response);
} else {
resolve(response.data);
}
}).catch((res) => {
throw new Error(`请求失败:${res}! 位置:request.js`);
});
},
(err) => {
// 失败
let message = "请求异常,请检测网络!";
if (err.response) {
message = err.response.data.message;
}
throw new Error(message);
}
);
export default service;
<?xml version="1.0" encoding="UTF-8"?>
<svg width="127px" height="39px" viewBox="0 0 127 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
<title>logo白@2x</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.0118927912 0.302459048 5.88679989 0.302459048 5.88679989 6.25936381 0.0118927912 6.25936381"></polygon>
<polygon id="path-3" points="0 37.949205 125.187276 37.949205 125.187276 0 0 0"></polygon>
</defs>
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="首页" transform="translate(-101.000000, -7209.000000)">
<g id="编组-28" transform="translate(-2.000000, 7111.496059)">
<g id="logo白" transform="translate(103.900000, 97.669467)">
<path d="M0.825050039,37.7804328 L0.825050039,37.5564135 C1.0599409,37.5475186 1.24376853,37.5188573 1.34721276,37.4582403 C1.50139077,37.3673148 1.58078586,37.2032536 1.58078586,36.9499141 L1.58078586,32.8170868 C1.58078586,32.5667122 1.49677861,32.3973799 1.34260059,32.3127138 C1.24376853,32.2576973 1.07147131,32.2280477 0.825050039,32.2175056 L0.825050039,31.9924979 L5.74359223,31.9924979 L5.74359223,33.7240356 L5.53406827,33.7240356 C5.4204114,33.1676111 5.24119593,32.7867783 4.97533769,32.5874669 C4.71573881,32.3845318 4.24892204,32.2810876 3.56796915,32.2810876 C3.31034691,32.2810876 3.14430905,32.3048072 3.06656116,32.3641065 C2.99770816,32.4230763 2.96081086,32.5255322 2.96081086,32.6882756 L2.96081086,34.6797417 C3.44508795,34.6850127 3.77749312,34.5990288 3.94023658,34.4204722 C4.12340533,34.2409273 4.24892204,33.9078633 4.34841298,33.4288572 L4.56057247,33.4288572 L4.56057247,36.2992697 L4.34841298,36.2992697 C4.27955998,35.8107099 4.15799655,35.4661154 3.97252172,35.2681219 C3.78836464,35.0757288 3.44508795,34.9676724 2.96081086,34.9676724 L2.96081086,37.0428162 C2.96081086,37.2266438 3.01187409,37.3518311 3.10312903,37.418378 C3.19833724,37.4822894 3.38875368,37.5145746 3.68459098,37.5145746 C4.21630746,37.5145746 4.66599334,37.4071771 5.00992891,37.1943587 C5.35221728,36.9838464 5.65464338,36.5802822 5.93565587,35.9932197 L6.16296961,35.9932197 L5.82265788,37.7804328 L0.825050039,37.7804328 Z" id="Fill-1" fill="#FFFFFF"></path>
<path d="M6.52736342,37.5777612 C6.67692927,37.540205 6.7919039,37.499025 6.86042746,37.4321486 C6.91906781,37.3787793 6.94970575,37.2466738 6.94970575,37.0523041 L6.94970575,32.6773382 C6.94970575,32.5063588 6.91906781,32.3844659 6.86471018,32.3317555 C6.79948102,32.2810217 6.69043632,32.2319351 6.52736342,32.1881195 L6.52736342,31.992432 L8.15413913,31.992432 L8.15413913,37.0523041 C8.15413913,37.2466738 8.18807147,37.3787793 8.25264175,37.430172 C8.3096349,37.4888124 8.41966793,37.540205 8.58372915,37.5777612 L8.58372915,37.7803669 L6.52736342,37.7803669 L6.52736342,37.5777612 Z" id="Fill-3" fill="#FFFFFF"></path>
<path d="M11.3100445,35.3826682 C11.2985141,34.8750009 11.2560163,34.5165699 11.1874927,34.3139642 C11.1176514,34.1120174 10.9726977,34.0089026 10.758891,34.0089026 C10.5292712,34.0089026 10.3780581,34.1294777 10.2940509,34.3584386 C10.2159736,34.59893 10.1642515,34.9399006 10.1596393,35.3826682 L11.3100445,35.3826682 Z M9.49120513,34.2780552 C9.84700054,33.9153416 10.2683546,33.7282195 10.758891,33.7282195 C11.0379269,33.7282195 11.3100445,33.8066263 11.555148,33.9535566 C11.8078286,34.0981809 11.995939,34.3109992 12.1310095,34.571257 C12.2275354,34.764309 12.2996828,35.0272022 12.3336152,35.3470887 C12.3546994,35.4903952 12.3629354,35.6093231 12.3629354,35.6837766 L10.1856651,35.6837766 C10.1948894,36.025406 10.2555064,36.3228905 10.3500557,36.5722768 C10.5101637,37.0427174 10.8066598,37.2799143 11.2260372,37.2799143 C11.4325962,37.2799143 11.6144472,37.2127085 11.8005809,37.097075 C11.9043546,37.0140561 12.0410723,36.8908454 12.2028274,36.7129477 L12.3975266,36.8322051 C12.1333155,37.2683839 11.8292422,37.5698217 11.4806945,37.74146 C11.2560163,37.8518225 10.9924641,37.9038741 10.7038745,37.9038741 C10.2812027,37.9038741 9.88521561,37.7345418 9.51492482,37.4074077 C9.14628124,37.0736848 8.96014752,36.5406505 8.96014752,35.810611 C8.96014752,35.1556839 9.13606859,34.6424161 9.49120513,34.2780552 L9.49120513,34.2780552 Z" id="Fill-5" fill="#FFFFFF"></path>
<path d="M14.7890977,33.7239039 C14.1737034,33.7239039 13.6923913,33.9314512 13.3181472,34.3518169 C12.9547747,34.764276 12.7692998,35.2824854 12.7692998,35.8767956 C12.7692998,36.4424444 12.9402793,36.9161794 13.2881682,37.3194142 C13.6321037,37.7101303 14.0877195,37.9038411 14.6283309,37.9038411 C14.8530091,37.9038411 15.0566032,37.8629905 15.2634916,37.791502 C15.6334529,37.648525 15.9605871,37.3839845 16.2330341,36.9962334 L16.0798444,36.8562213 C15.9362085,37.006446 15.8199161,37.1177968 15.7243784,37.1754488 C15.5672355,37.2709865 15.3735246,37.3276502 15.1541175,37.3276502 C14.7973337,37.3276502 14.5140151,37.1408576 14.2942785,36.78045 C14.0943083,36.4203719 13.9875697,35.9647561 13.9875697,35.4343574 C13.9875697,35.0601133 14.0336913,34.7234254 14.1513015,34.4368124 C14.2521102,34.1465756 14.4510921,33.9966803 14.7067377,33.9966803 C14.7973337,33.9966803 14.8790349,34.028636 14.9462407,34.0866175 C15.0216825,34.1353747 15.051991,34.2407955 15.051991,34.3897025 C15.051991,34.4470251 15.049026,34.5010533 15.049026,34.5478338 C15.0414489,34.598897 15.0414489,34.6328294 15.0414489,34.6588551 C15.0414489,34.8927577 15.1218323,35.0525362 15.2681038,35.1398378 C15.3563937,35.1905716 15.4509431,35.2113264 15.5537284,35.2113264 C15.7200957,35.2113264 15.8525307,35.1569687 15.9586104,35.0525362 C16.0669963,34.943162 16.1226716,34.8130332 16.1226716,34.6634673 C16.1226716,34.3897025 15.977718,34.1604121 15.7220724,33.9835027 C15.4522608,33.8065933 15.1495053,33.7239039 14.7890977,33.7239039" id="Fill-7" fill="#FFFFFF"></path>
<path d="M16.5259065,34.2103223 L16.5259065,33.9718076 C16.5977244,33.9026252 16.6958976,33.8189474 16.8029657,33.7237391 C16.9505549,33.5843859 17.0991324,33.4400911 17.2272846,33.303044 C17.484248,33.016431 17.7224333,32.7120283 17.9408521,32.3845647 L18.1569649,32.3845647 L18.1569649,33.8370666 L18.9716705,33.8370666 L18.9716705,34.2103223 L18.1569649,34.2103223 L18.1569649,36.7960984 C18.1569649,36.9163441 18.1783785,37.0181411 18.2027571,37.101819 C18.2696334,37.2266768 18.3566056,37.285976 18.4817929,37.285976 C18.5961087,37.285976 18.6890108,37.2520437 18.7621465,37.1752841 C18.8333056,37.0972068 18.9169834,36.9838794 18.985507,36.8425495 L19.1900894,36.9459937 C19.0929045,37.1769313 18.9785887,37.3673478 18.8333056,37.5188902 C18.5921554,37.776183 18.2936826,37.9040058 17.9408521,37.9040058 C17.7395642,37.9040058 17.5623253,37.8631553 17.4104534,37.7913373 C17.1188988,37.646713 16.9765806,37.3788782 16.9719685,37.0036458 L16.9719685,34.2103223 L16.5259065,34.2103223 Z" id="Fill-9" fill="#FFFFFF"></path>
<path d="M19.3895325,37.5777612 C19.5532642,37.562607 19.6771337,37.523733 19.7370919,37.4634455 C19.7980383,37.4071112 19.8326295,37.2911482 19.8392183,37.1244515 L19.843501,36.8724297 L19.843501,34.5235211 C19.843501,34.3400229 19.8204402,34.2260366 19.7538933,34.1690435 C19.692288,34.0978844 19.5703951,34.0576927 19.3895325,34.0336435 L19.3895325,33.8372972 L21.0021422,33.8372972 L21.0021422,34.5103435 C21.1918998,34.2714994 21.3790218,34.0817418 21.5565901,33.9423886 C21.73317,33.805012 21.9380818,33.727923 22.1779143,33.727923 C22.3511999,33.727923 22.504719,33.7849162 22.6480255,33.9028558 C22.7926497,34.0155243 22.8631499,34.179915 22.8631499,34.3920745 C22.8631499,34.56536 22.8094512,34.6994422 22.7116074,34.807828 C22.6068455,34.9188494 22.4790227,34.9676065 22.3255035,34.9676065 C22.1436525,34.9676065 21.9809091,34.8862348 21.8504508,34.7178908 C21.7199924,34.5528413 21.6237959,34.4675163 21.5727327,34.4675163 C21.457758,34.4675163 21.3454189,34.535381 21.2271499,34.6740753 C21.1078925,34.8127696 21.0482639,35.0199875 21.0482639,35.2825513 L21.0482639,36.9119626 C21.0482639,37.1942928 21.0947149,37.3787793 21.177075,37.4361019 C21.2521873,37.5148381 21.4169074,37.556677 21.6659642,37.5777612 L21.6659642,37.7803669 L19.3895325,37.7803669 L19.3895325,37.5777612 Z" id="Fill-11" fill="#FFFFFF"></path>
<path d="M23.0727068,35.8105781 C23.0727068,36.4068649 23.2532401,36.9059668 23.6156243,37.3101899 C23.9895389,37.7055181 24.4477902,37.9038411 25.0055325,37.9038411 C25.5797468,37.9038411 26.0366803,37.7035415 26.4026884,37.2861407 C26.746624,36.8726933 26.9297927,36.3791919 26.9297927,35.8105781 C26.9297927,35.2343872 26.746624,34.7382502 26.3914874,34.334686 C26.0353626,33.9212385 25.5738168,33.7239039 25.0055325,33.7239039 C24.4477902,33.7239039 23.9895389,33.9153086 23.6248486,34.3188729 C23.2532401,34.7138717 23.0727068,35.2113264 23.0727068,35.8105781 M24.3314978,35.8105781 C24.3314978,35.2284573 24.3677363,34.8077621 24.432636,34.5610114 C24.5242204,34.1894029 24.7143074,33.9966803 25.0055325,33.9966803 C25.2690847,33.9966803 25.4446763,34.1449284 25.5359312,34.4305531 C25.6212562,34.7138717 25.6700134,35.1820062 25.6700134,35.8105781 C25.6700134,36.4575986 25.6294922,36.9122261 25.5418611,37.1978508 C25.4502768,37.4821577 25.2786384,37.6280997 25.0055325,37.6280997 C24.7143074,37.6280997 24.5242204,37.4363655 24.4263766,37.0667336 C24.3657596,36.8292072 24.3314978,36.4127948 24.3314978,35.8105781" id="Fill-13" fill="#FFFFFF"></path>
<path d="M27.2938241,37.5777612 C27.4506377,37.562607 27.5741777,37.5187914 27.6479723,37.4499384 C27.721767,37.3840504 27.7596526,37.2552393 27.7596526,37.0523041 L27.7596526,34.5235211 C27.7596526,34.3538594 27.7276969,34.229331 27.671692,34.1690435 C27.6114045,34.0978844 27.4858878,34.0576927 27.2938241,34.0336435 L27.2938241,33.8372972 L28.9202704,33.8372972 L28.9202704,34.4500559 C29.0550114,34.2408614 29.2306031,34.0695525 29.4447392,33.9331643 C29.6565692,33.805012 29.8878363,33.727923 30.1490823,33.727923 C30.5124549,33.727923 30.8017034,33.8234607 31.0033208,34.0155243 C31.2026321,34.2069291 31.3024525,34.535381 31.3024525,35.0199875 L31.3024525,37.0878836 C31.3024525,37.2858772 31.3429736,37.4071112 31.4049084,37.4634455 C31.4711259,37.523733 31.5762173,37.562607 31.7300659,37.5777612 L31.7300659,37.7803669 L29.7161979,37.7803669 L29.7161979,37.5777612 C29.867411,37.5474527 29.9669019,37.507261 30.0225773,37.4499384 C30.0864887,37.4031579 30.1108673,37.2799473 30.1108673,37.097108 L30.1108673,35.0199875 C30.1108673,34.8196879 30.090442,34.6740753 30.0522269,34.576561 C29.9873272,34.3960278 29.8525862,34.3110322 29.6565692,34.3110322 C29.506674,34.3110322 29.3725918,34.3650604 29.2536639,34.4708107 C29.1274883,34.5785376 29.029974,34.6849468 28.9594738,34.8022275 L28.9594738,37.097108 C28.9594738,37.2799473 28.9927472,37.4031579 29.0424927,37.4499384 C29.1008036,37.507261 29.2068834,37.5474527 29.3623792,37.5777612 L29.3623792,37.7803669 L27.2938241,37.7803669 L27.2938241,37.5777612 Z" id="Fill-15" fill="#FFFFFF"></path>
<path d="M32.084873,37.5777612 C32.2202729,37.556677 32.3217405,37.523733 32.3793925,37.4720109 C32.4601054,37.3949219 32.5002971,37.2552393 32.5002971,37.0523041 L32.5002971,34.5235211 C32.5002971,34.3538594 32.4759185,34.2385553 32.4176076,34.1736556 C32.3566611,34.1071087 32.2466281,34.0652698 32.084873,34.0336435 L32.084873,33.8372972 L33.7119781,33.8372972 L33.7119781,37.0878836 C33.7119781,37.2799473 33.7399805,37.4031579 33.7913732,37.4499384 C33.8460603,37.507261 33.9544461,37.5474527 34.1096124,37.5777612 L34.1096124,37.7803669 L32.084873,37.7803669 L32.084873,37.5777612 Z M32.6396503,32.053049 C32.7737324,31.918308 32.9259338,31.8563732 33.1183269,31.8563732 C33.2968835,31.8563732 33.445461,31.918308 33.5782254,32.053049 C33.7119781,32.1818602 33.7742423,32.3334027 33.7742423,32.5211836 C33.7742423,32.7059995 33.7119781,32.8614953 33.5782254,32.995248 C33.445461,33.1217531 33.2968835,33.1876411 33.1183269,33.1876411 C32.9259338,33.1876411 32.7737324,33.1217531 32.6396503,32.995248 C32.5170985,32.8614953 32.4495633,32.7059995 32.4495633,32.5211836 C32.4495633,32.3334027 32.5170985,32.1818602 32.6396503,32.053049 L32.6396503,32.053049 Z" id="Fill-17" fill="#FFFFFF"></path>
<path d="M37.456626,33.9835357 C37.7099656,34.1604451 37.8483304,34.3897354 37.8483304,34.6631708 C37.8483304,34.8130661 37.7962789,34.943195 37.6977763,35.0525691 C37.5884021,35.1570017 37.456626,35.2113593 37.2895999,35.2113593 C37.1838496,35.2113593 37.0869941,35.1906046 37.0079285,35.1398708 C36.8613276,35.0525691 36.7779792,34.8927906 36.7779792,34.6588881 C36.7779792,34.6328623 36.7779792,34.59893 36.7878624,34.5478667 C36.790498,34.5010862 36.790498,34.447058 36.790498,34.3897354 C36.790498,34.2408285 36.7512946,34.1354076 36.6814533,34.086321 C36.6106236,34.028669 36.5308991,33.9967133 36.4347025,33.9967133 C36.1810336,33.9967133 35.9932527,34.1466086 35.881243,34.4368454 C35.7768105,34.7234584 35.7181701,35.0601463 35.7181701,35.4343903 C35.7181701,35.964789 35.8229321,36.4200754 36.0420098,36.780483 C36.2429684,37.1408906 36.5308991,37.3276832 36.884059,37.3276832 C37.1087372,37.3276832 37.3004714,37.2710194 37.4642032,37.1751523 C37.564353,37.1178297 37.6730683,37.006479 37.806821,36.8562542 L37.9722,36.9962663 C37.7023884,37.3840174 37.3676772,37.6485579 37.0019986,37.791535 C36.8030167,37.8630235 36.5872334,37.9038741 36.3665084,37.9038741 C35.8183199,37.9038741 35.374564,37.7101632 35.0233807,37.3194471 C34.6679148,36.9162123 34.5035241,36.4424773 34.5035241,35.8768285 C34.5035241,35.2825184 34.6893284,34.764309 35.0536892,34.3518498 C35.4236506,33.9314841 35.9148459,33.7239368 36.5259575,33.7239368 C36.884059,33.7239368 37.1884617,33.8066263 37.456626,33.9835357" id="Fill-19" fill="#FFFFFF"></path>
<path d="M40.622151,37.5565453 C40.8577008,37.5476504 41.0062783,37.5189891 41.1047809,37.4636431 C41.2701599,37.378977 41.3528494,37.2033854 41.3528494,36.9500459 L41.3528494,32.8168891 C41.3528494,32.5754094 41.2741132,32.4133248 41.1360778,32.3247054 C41.049435,32.2808899 40.8731845,32.2380627 40.622151,32.2176374 L40.622151,31.9923003 L43.5264959,31.9923003 L43.5264959,32.2176374 C43.2757919,32.22785 43.0952586,32.2578291 43.0016976,32.3128456 C42.829071,32.3975117 42.7523114,32.566844 42.7523114,32.8168891 L42.7523114,34.5787353 L44.8004411,34.5787353 L44.8004411,32.8168891 C44.8004411,32.566844 44.7223638,32.3975117 44.5652208,32.3217405 C44.4660593,32.2716656 44.2924443,32.2321327 44.0374576,32.2176374 L44.0374576,31.9923003 L46.9559683,31.9923003 L46.9559683,32.2176374 C46.6973578,32.2380627 46.5303316,32.2716656 46.4344645,32.3217405 C46.2816043,32.4080538 46.2071508,32.566844 46.2071508,32.8168891 L46.2071508,36.9500459 C46.2071508,37.2033854 46.2878636,37.378977 46.4608197,37.4636431 C46.5576751,37.5236012 46.7227247,37.5476504 46.9559683,37.5565453 L46.9559683,37.7805646 L44.0374576,37.7805646 L44.0374576,37.5565453 C44.280255,37.5476504 44.4597999,37.5189891 44.5592909,37.4583721 C44.7223638,37.3674466 44.8004411,37.2033854 44.8004411,36.9500459 L44.8004411,34.9862528 L42.7523114,34.9862528 L42.7523114,36.9500459 C42.7523114,37.2033854 42.8438958,37.378977 43.0112514,37.4718791 C43.1123895,37.5236012 43.2883106,37.5476504 43.5264959,37.5565453 L43.5264959,37.7805646 L40.622151,37.7805646 L40.622151,37.5565453 Z" id="Fill-21" fill="#FFFFFF"></path>
<path d="M47.3218117,35.8105781 C47.3218117,36.5412765 47.5138753,37.0736518 47.8772479,37.4073747 C48.2356788,37.7345089 48.6362781,37.9038411 49.0556555,37.9038411 C49.3518222,37.9038411 49.6140566,37.8517896 49.8377465,37.7414271 C50.1836587,37.5697888 50.4890498,37.268351 50.7595202,36.8325016 L50.564821,36.7129148 C50.4037248,36.8908125 50.2610772,37.0140231 50.1596096,37.0970421 C49.9738053,37.2126756 49.7833889,37.2798814 49.5913252,37.2798814 C49.1679946,37.2798814 48.8784166,37.0426844 48.7064489,36.5725733 C48.6128878,36.3228576 48.562154,36.0253731 48.5430465,35.6837436 L50.7245995,35.6837436 C50.7245995,35.6096196 50.7199874,35.4903622 50.6896789,35.3470557 C50.6554171,35.0271693 50.5855758,34.764276 50.4890498,34.5712241 C50.3549676,34.3109663 50.1619157,34.0981479 49.9154944,33.9535237 C49.6601782,33.8065933 49.397285,33.7281866 49.1198963,33.7281866 C48.6165117,33.7281866 48.2033937,33.9153086 47.848916,34.2783517 C47.4980622,34.6423831 47.3218117,35.155651 47.3218117,35.8105781 L47.3218117,35.8105781 Z M48.5216329,35.3826353 C48.5272334,34.9398676 48.5776377,34.598897 48.6547267,34.3584057 C48.7397223,34.1294447 48.8863232,34.0088696 49.1198963,34.0088696 C49.3294203,34.0088696 49.4723973,34.1119844 49.545533,34.3139313 C49.6245987,34.516537 49.6601782,34.8749679 49.6601782,35.3826353 L48.5216329,35.3826353 Z" id="Fill-23" fill="#FFFFFF"></path>
<path d="M51.1599218,36.9838794 C51.1599218,37.2912471 51.263366,37.5297618 51.4620185,37.6770215 C51.6652831,37.826258 51.8886435,37.9040058 52.1139806,37.9040058 C52.2945139,37.9040058 52.4710938,37.8707324 52.6466854,37.812092 C52.9444994,37.7168838 53.2113459,37.5475515 53.4488723,37.3116724 C53.4804986,37.4757336 53.5239847,37.5996031 53.5977793,37.6786687 C53.7061651,37.826258 53.9025115,37.9040058 54.1462972,37.9040058 C54.2991575,37.9040058 54.431263,37.8832511 54.555462,37.826258 C54.7695981,37.7524633 54.9550729,37.616734 55.1217697,37.4210465 L54.9830753,37.2378778 C54.9330004,37.2912471 54.8878671,37.333086 54.8605236,37.3449458 C54.8381216,37.3518641 54.8111075,37.3614178 54.7695981,37.3614178 C54.7386307,37.3614178 54.6994273,37.3390159 54.6608828,37.2912471 C54.6374926,37.2550086 54.6147612,37.1976861 54.6147612,37.1410223 L54.6147612,35.0599486 C54.6147612,34.5529401 54.4579477,34.2007685 54.1314724,34.0090343 C53.8046677,33.8232301 53.4073629,33.7280219 52.9227563,33.7280219 C52.4710938,33.7280219 52.0849899,33.8232301 51.7792694,34.0215531 C51.4725606,34.2103223 51.3210181,34.4774983 51.3210181,34.8079268 C51.3210181,34.9894484 51.3770229,35.1330843 51.4807966,35.228622 C51.6073016,35.3264657 51.7446782,35.3804939 51.9074216,35.3804939 C52.0497398,35.3804939 52.1729504,35.3320662 52.2829834,35.2408113 C52.3884043,35.1554862 52.4430914,35.0319462 52.4430914,34.8645906 C52.4430914,34.8079268 52.4384792,34.7397327 52.4081707,34.6847162 C52.3841216,34.627723 52.354472,34.5763304 52.3123036,34.5265849 L52.2615698,34.4672857 C52.2483922,34.4415893 52.2203898,34.4205052 52.2147893,34.3961266 C52.1946935,34.374713 52.1917285,34.3401218 52.1917285,34.311131 C52.1917285,34.2261354 52.2483922,34.1553058 52.3442593,34.0979832 C52.4430914,34.0383545 52.5705847,34.0090343 52.7217978,34.0090343 C52.9985276,34.0090343 53.188944,34.0693219 53.2986476,34.1925325 C53.4073629,34.314096 53.4571083,34.5055007 53.4571083,34.7575225 L53.4571083,35.3828 C52.6700757,35.614067 52.0849899,35.8430279 51.7166757,36.0627646 C51.338149,36.2940316 51.1599218,36.6020582 51.1599218,36.9838794 M52.8216182,37.285976 C52.7194917,37.285976 52.6242835,37.2378778 52.5468651,37.14827 C52.4582456,37.0481202 52.4256311,36.9120614 52.4256311,36.7209861 C52.4256311,36.4109829 52.5554305,36.1533606 52.8522561,35.9481194 C53.0202706,35.8328153 53.2113459,35.743537 53.436683,35.6839083 L53.436683,36.9357811 C53.3447692,37.0395548 53.2666919,37.1176321 53.2031099,37.1630948 C53.0785815,37.2520437 52.9632775,37.285976 52.8216182,37.285976" id="Fill-25" fill="#FFFFFF"></path>
<path d="M55.3568911,37.5777612 C55.5097514,37.540205 55.6174783,37.499025 55.6794131,37.4321486 C55.74596,37.3787793 55.7765979,37.2466738 55.7765979,37.0523041 L55.7765979,32.6773382 C55.7765979,32.5063588 55.74596,32.3844659 55.6876491,32.3317555 C55.6299971,32.2810217 55.5150224,32.2319351 55.3568911,32.1881195 L55.3568911,31.992432 L56.9856435,31.992432 L56.9856435,37.0523041 C56.9856435,37.2466738 57.0199053,37.3787793 57.0772279,37.430172 C57.1404804,37.4888124 57.2491956,37.540205 57.4079858,37.5777612 L57.4079858,37.7803669 L55.3568911,37.7803669 L55.3568911,37.5777612 Z" id="Fill-27" fill="#FFFFFF"></path>
<path d="M57.7454973,34.2103223 L57.7454973,33.9718076 C57.8179741,33.9026252 57.915159,33.8189474 58.0288159,33.7237391 C58.1790406,33.5843859 58.31477,33.4400911 58.4514877,33.303044 C58.7127337,33.016431 58.945648,32.7120283 59.1561602,32.3845647 L59.3788618,32.3845647 L59.3788618,33.8370666 L60.190273,33.8370666 L60.190273,34.2103223 L59.3788618,34.2103223 L59.3788618,36.7960984 C59.3788618,36.9163441 59.3946749,37.0181411 59.4342078,37.101819 C59.490542,37.2266768 59.5702666,37.285976 59.7027015,37.285976 C59.8084518,37.285976 59.8987185,37.2520437 59.9840435,37.1752841 C60.0601442,37.0972068 60.1352565,36.9838794 60.206745,36.8425495 L60.4165985,36.9459937 C60.3171075,37.1775902 60.190273,37.3673478 60.055532,37.5188902 C59.8084518,37.776183 59.5080024,37.9040058 59.1561602,37.9040058 C58.9519073,37.9040058 58.7822456,37.8631553 58.6333386,37.7913373 C58.3444196,37.646713 58.1958421,37.3788782 58.1912299,37.0036458 L58.1912299,34.2103223 L57.7454973,34.2103223 Z" id="Fill-29" fill="#FFFFFF"></path>
<path d="M60.5872485,37.5777612 C60.7404382,37.562607 60.8577189,37.5187914 60.9381023,37.4499384 C61.0132147,37.3840504 61.0461587,37.2552393 61.0461587,37.0523041 L61.0461587,32.6773382 C61.0461587,32.5172303 61.0174974,32.3880897 60.9493033,32.3297788 C60.8965928,32.2579609 60.7681111,32.2174397 60.5872485,32.1881195 L60.5872485,31.992432 L62.2222602,31.992432 L62.2222602,34.3960278 C62.4067467,34.1894687 62.5882683,34.0214542 62.7839557,33.9077974 C62.9822787,33.7895283 63.2006976,33.727923 63.4458011,33.727923 C63.7709586,33.727923 64.0493355,33.8234607 64.2690722,34.0214542 C64.4769489,34.2102235 64.589288,34.535381 64.589288,34.9975856 L64.589288,37.0523041 C64.589288,37.2522743 64.6189377,37.3787793 64.6868023,37.4321486 C64.7619147,37.499025 64.8686533,37.540205 65.0198664,37.5777612 L65.0198664,37.7803669 L62.9980919,37.7803669 L62.9980919,37.5777612 C63.1558937,37.5474527 63.2567024,37.507261 63.322261,37.4499384 C63.3759598,37.4031579 63.3944084,37.2799473 63.3944084,37.097108 L63.3944084,35.0199875 C63.3944084,34.8196879 63.3759598,34.6740753 63.3308265,34.576561 C63.2725156,34.3960278 63.1377745,34.3110322 62.9401104,34.3110322 C62.7951567,34.3110322 62.6406492,34.3788969 62.4891068,34.5166029 C62.3233983,34.6513439 62.2446621,34.7425988 62.2446621,34.8022275 L62.2446621,37.097108 C62.2446621,37.2799473 62.2716762,37.4031579 62.3299871,37.4499384 C62.3922513,37.507261 62.4914128,37.5474527 62.653168,37.5777612 L62.653168,37.7803669 L60.5872485,37.7803669 L60.5872485,37.5777612 Z" id="Fill-31" fill="#FFFFFF"></path>
<path d="M68.3678354,33.9835357 C68.6208454,34.1604451 68.7506449,34.3897354 68.7506449,34.6631708 C68.7506449,34.8130661 68.7032055,34.9435244 68.592843,35.0525691 C68.494011,35.1570017 68.3572933,35.2113593 68.1955381,35.2113593 C68.0874817,35.2113593 67.9922735,35.1906046 67.9079368,35.1398708 C67.758371,35.0525691 67.6809525,34.8927906 67.6809525,34.6588881 L67.6809525,34.5478667 C67.6888591,34.5010862 67.6980834,34.447058 67.6980834,34.3897354 C67.6980834,34.2408285 67.6575623,34.1354076 67.590027,34.086321 C67.5208446,34.028669 67.4302485,33.9967133 67.3432763,33.9967133 C67.0876307,33.9967133 66.8952377,34.1466086 66.7848752,34.4371748 C66.681431,34.7234584 66.6221317,35.0601463 66.6221317,35.4343903 C66.6221317,35.964789 66.7291998,36.4200754 66.9350999,36.780483 C67.1502244,37.1408906 67.4302485,37.3276832 67.7843968,37.3276832 C68.0189582,37.3276832 68.2116807,37.2710194 68.3721181,37.1751523 C68.4620553,37.1178297 68.5753827,37.006479 68.7150653,36.8562542 L68.8748438,36.9962663 C68.5997613,37.3840174 68.2792159,37.6485579 67.9026658,37.791535 C67.7053311,37.8630235 67.4921833,37.9038741 67.2694817,37.9038741 C66.7291998,37.9038741 66.2693013,37.7101632 65.9332723,37.3194471 C65.5863717,36.9162123 65.4041913,36.4424773 65.4041913,35.8768285 C65.4041913,35.2825184 65.5923017,34.764309 65.9530387,34.3518498 C66.3226706,33.9314841 66.8138659,33.7239368 67.4302485,33.7239368 C67.7843968,33.7239368 68.0934117,33.8066263 68.3678354,33.9835357" id="Fill-33" fill="#FFFFFF"></path>
<path d="M69.2500103,36.9838794 C69.2500103,37.2912471 69.3475246,37.5297618 69.5455182,37.6770215 C69.7560305,37.826258 69.9691783,37.9040058 70.1978098,37.9040058 C70.3743897,37.9040058 70.5611823,37.8707324 70.7278791,37.812092 C71.0355762,37.7168838 71.2978106,37.5475515 71.5307248,37.3116724 C71.5580684,37.4757336 71.6147321,37.5996031 71.6849029,37.6786687 C71.8064663,37.826258 71.9741513,37.9040058 72.2380329,37.9040058 C72.3813394,37.9040058 72.5141038,37.8832511 72.6468682,37.826258 C72.8458501,37.7524633 73.036596,37.616734 73.201975,37.4210465 L73.0748111,37.2378778 C73.0138646,37.2912471 72.9726846,37.333086 72.9542359,37.3449458 C72.9268924,37.3518641 72.8890068,37.3614178 72.8580394,37.3614178 C72.8244365,37.3614178 72.7796326,37.3390159 72.7549246,37.2912471 C72.717039,37.2550086 72.7002376,37.1976861 72.7002376,37.1410223 L72.7002376,35.0599486 C72.7002376,34.5529401 72.5384824,34.2007685 72.2159605,34.0090343 C71.8940974,33.8232301 71.4878976,33.7280219 71.0065855,33.7280219 C70.5506402,33.7280219 70.1704662,33.8232301 69.8621102,34.0215531 C69.5570486,34.2103223 69.4064944,34.4774983 69.4064944,34.8079268 C69.4064944,34.9894484 69.4559105,35.1330843 69.5679201,35.228622 C69.6944252,35.3264657 69.8334489,35.3804939 70.0001457,35.3804939 C70.1375222,35.3804939 70.257109,35.3320662 70.3658243,35.2408113 C70.4758573,35.1554862 70.52725,35.0319462 70.52725,34.8645906 C70.52725,34.8079268 70.519014,34.7397327 70.4923293,34.6847162 C70.4682802,34.627723 70.4363245,34.5763304 70.3984389,34.5265849 L70.3404574,34.4672857 C70.3276092,34.4415893 70.3019129,34.4205052 70.2969713,34.3961266 C70.2917002,34.374713 70.2745694,34.3401218 70.2745694,34.311131 C70.2745694,34.2261354 70.3328803,34.1553058 70.4300651,34.0979832 C70.5338388,34.0383545 70.6517784,34.0090343 70.813863,34.0090343 C71.0793918,34.0090343 71.2780442,34.0693219 71.3808295,34.1925325 C71.4878976,34.314096 71.5458791,34.5055007 71.5458791,34.7575225 L71.5458791,35.3828 C70.7535754,35.614067 70.1704662,35.8430279 69.8018227,36.0627646 C69.4272492,36.2940316 69.2500103,36.6020582 69.2500103,36.9838794 M70.9153305,37.285976 C70.813863,37.285976 70.7127248,37.2378778 70.6316825,37.14827 C70.5473458,37.0481202 70.5022125,36.9120614 70.5022125,36.7209861 C70.5022125,36.4109829 70.6517784,36.1533606 70.9377325,35.9481194 C71.0961932,35.8328153 71.2978106,35.743537 71.5195239,35.6839083 L71.5195239,36.9357811 C71.4266217,37.0395548 71.3501916,37.1176321 71.2859508,37.1630948 C71.1736117,37.2520437 71.0467772,37.285976 70.9153305,37.285976" id="Fill-35" fill="#FFFFFF"></path>
<path d="M73.4587407,37.5777612 C73.6284024,37.562607 73.7374471,37.523733 73.8112417,37.4634455 C73.8741648,37.4071112 73.908756,37.2911482 73.908756,37.1244515 L73.916992,36.8724297 L73.916992,34.5235211 C73.916992,34.3400229 73.8889896,34.2260366 73.8221132,34.1690435 C73.7661084,34.0978844 73.64158,34.0576927 73.4587407,34.0336435 L73.4587407,33.8372972 L75.0785981,33.8372972 L75.0785981,34.5103435 C75.2630846,34.2714994 75.4334052,34.0817418 75.6228333,33.9423886 C75.7990839,33.805012 76.0033368,33.727923 76.2421809,33.727923 C76.4200786,33.727923 76.5782099,33.7849162 76.7208575,33.9028558 C76.864164,34.0155243 76.9316993,34.179915 76.9316993,34.3920745 C76.9316993,34.56536 76.883601,34.6994422 76.7808157,34.807828 C76.6796775,34.9188494 76.5554786,34.9676065 76.385158,34.9676065 C76.2135196,34.9676065 76.0580239,34.8862348 75.9173529,34.7178908 C75.7888712,34.5528413 75.6930041,34.4675163 75.6449058,34.4675163 C75.5302607,34.4675163 75.4110033,34.535381 75.3042647,34.6740753 C75.1797363,34.8127696 75.1178015,35.0199875 75.1178015,35.2825513 L75.1178015,36.9119626 C75.1178015,37.1942928 75.1649115,37.3787793 75.2466126,37.4361019 C75.3293021,37.5148381 75.4900689,37.556677 75.7420907,37.5777612 L75.7420907,37.7803669 L73.4587407,37.7803669 L73.4587407,37.5777612 Z" id="Fill-37" fill="#FFFFFF"></path>
<path d="M77.3338469,35.9257504 C77.3338469,36.5352148 77.4853894,37.0181741 77.7917688,37.3789111 C78.1037487,37.7277883 78.462509,37.9040388 78.8838631,37.9040388 C79.12106,37.9040388 79.3585864,37.842104 79.5707459,37.7139518 C79.7061458,37.6279679 79.8441812,37.5073928 80.0065953,37.3327895 L80.0065953,37.9040388 C80.3600846,37.803889 80.6117769,37.7416248 80.7442119,37.7218584 C80.8927894,37.7034097 81.1942272,37.6668418 81.6748804,37.6167669 L81.6748804,37.4108668 C81.4801813,37.3983481 81.3484052,37.351897 81.2765872,37.286009 C81.214323,37.2217681 81.1817085,37.0972397 81.1817085,36.9252719 L81.1817085,31.9925638 L79.327619,31.9925638 L79.327619,32.1879219 C79.5901829,32.2057116 79.7637978,32.2383262 79.8543939,32.2828006 C79.9275296,32.3335344 79.9795812,32.4722288 79.9795812,32.67747 L79.9795812,34.261089 C79.8151905,34.0907685 79.6705663,33.9668989 79.5707459,33.9026581 C79.4004253,33.785048 79.1820064,33.7280548 78.9655642,33.7280548 C78.5188433,33.7280548 78.1277978,33.9260484 77.8194418,34.3187411 C77.4946137,34.7137399 77.3338469,35.2438092 77.3338469,35.9257504 M79.2650254,37.4108668 C78.9718236,37.4108668 78.7814072,37.211226 78.6759863,36.8089796 C78.6183343,36.5846308 78.5913202,36.2535434 78.5913202,35.8104463 C78.5913202,35.3996344 78.6183343,35.0764535 78.6759863,34.8547403 C78.7837132,34.4320685 78.994555,34.2212268 79.2986283,34.2212268 C79.4979396,34.2212268 79.6580475,34.2937036 79.7898236,34.4304213 C79.9117165,34.5654918 79.9795812,34.6676183 79.9795812,34.7364713 L79.9795812,36.8152389 C79.9795812,36.8880452 79.9067749,37.0036787 79.7568796,37.1631278 C79.6099493,37.3327895 79.4491824,37.4108668 79.2650254,37.4108668" id="Fill-39" fill="#FFFFFF"></path>
<g id="编组" transform="translate(84.336691, 31.689841)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-42"></g>
<path d="M0.0118927912,5.86670404 C0.336391389,5.85780915 0.537020471,5.7991688 0.634864211,5.68913577 C0.722495304,5.57844386 0.76532253,5.40713496 0.76532253,5.18838666 L0.76532253,1.13923716 C0.508029733,0.843399858 0.352863399,0.676373676 0.291587522,0.623004364 C0.226358362,0.56798785 0.154869838,0.538008792 0.0352830455,0.527796146 L0.0352830455,0.302459048 L1.84094479,0.302459048 L4.79174066,3.88973339 L4.83786229,3.88973339 L4.83786229,1.35831489 C4.83786229,1.0690664 4.78185746,0.873378916 4.67544827,0.749509401 C4.58122837,0.623004364 4.37104553,0.548221438 4.04226421,0.527796146 L4.04226421,0.302459048 L5.88679989,0.302459048 L5.88679989,0.527796146 C5.61995333,0.56798785 5.44469114,0.631899249 5.351789,0.698446169 C5.25756911,0.78212398 5.21803628,0.94552632 5.21803628,1.20710184 L5.21803628,6.25939676 L4.98083934,6.25939676 L1.20776072,1.6706242 L1.14483764,1.6706242 L1.14483764,5.03124369 C1.14483764,5.29413697 1.18568823,5.47335244 1.25948283,5.58799763 C1.37610466,5.76029485 1.6017712,5.85023203 1.9664615,5.86670404 L1.9664615,6.09072337 L0.0118927912,6.09072337 L0.0118927912,5.86670404 Z" id="Fill-41" fill="#FFFFFF" mask="url(#mask-2)"></path>
</g>
<path d="M92.9423612,35.3826682 C92.9423612,34.8750009 92.8968985,34.5165699 92.8214567,34.3139642 C92.7519448,34.1120174 92.612921,34.0089026 92.3918667,34.0089026 C92.1718006,34.0089026 92.0146576,34.1294777 91.9346037,34.3584386 C91.8532319,34.59893 91.8051337,34.9399006 91.7929444,35.3826682 L92.9423612,35.3826682 Z M91.1195686,34.2780552 C91.4723991,33.9153416 91.9033068,33.7282195 92.3984555,33.7282195 C92.679468,33.7282195 92.9423612,33.8066263 93.1930652,33.9535566 C93.4352038,34.0981809 93.6368212,34.3109992 93.7659617,34.571257 C93.8657821,34.764309 93.9356234,35.0272022 93.9748268,35.3470887 C93.9863572,35.4903952 94.0024998,35.6093231 94.0024998,35.6837766 L91.8163346,35.6837766 C91.8377482,36.025406 91.8924353,36.3228905 91.9846786,36.5722768 C92.1454454,37.0427174 92.4465537,37.2799143 92.8688961,37.2799143 C93.0721607,37.2799143 93.2510467,37.2127085 93.4352038,37.097075 C93.5452368,37.0140561 93.6776718,36.8908454 93.8384386,36.7129477 L94.0361027,36.8322051 C93.7722211,37.2683839 93.4678184,37.5698217 93.1153173,37.74146 C92.8886625,37.8518225 92.6303814,37.9038741 92.3411329,37.9038741 C91.9178022,37.9038741 91.5162146,37.7345418 91.1485593,37.4074077 C90.7828807,37.0736848 90.5974059,36.5413094 90.5974059,35.810611 C90.5974059,35.1556839 90.7782686,34.6424161 91.1195686,34.2780552 L91.1195686,34.2780552 Z" id="Fill-43" fill="#FFFFFF"></path>
<path d="M94.3556597,34.2103223 L94.3556597,33.9718076 C94.4311015,33.9026252 94.5296041,33.8189474 94.646226,33.7237391 C94.7852497,33.5843859 94.9374511,33.4400911 95.0665917,33.303044 C95.3209195,33.016431 95.557787,32.7120283 95.7752175,32.3845647 L95.9857298,32.3845647 L95.9857298,33.8370666 L96.8020826,33.8370666 L96.8020826,34.2103223 L95.9857298,34.2103223 L95.9857298,36.7960984 C95.9857298,36.9163441 96.0031901,37.0181411 96.042723,37.101819 C96.1013633,37.2266768 96.1906416,37.285976 96.3131934,37.285976 C96.4209203,37.285976 96.5151402,37.2520437 96.5925587,37.1752841 C96.6689888,37.0972068 96.7487133,36.9838794 96.8264612,36.8425495 L97.0172071,36.9459937 C96.9272699,37.1775902 96.8139425,37.3673478 96.6656944,37.5188902 C96.419932,37.776183 96.1201414,37.9040058 95.7752175,37.9040058 C95.5610814,37.9040058 95.3904314,37.8631553 95.2402066,37.7913373 C94.9565586,37.646713 94.8060045,37.3788782 94.8060045,37.0036458 L94.8060045,34.2103223 L94.3556597,34.2103223 Z" id="Fill-45" fill="#FFFFFF"></path>
<path d="M99.1064839,33.8371325 L99.1064839,34.0338083 C99.0106168,34.0469859 98.9299039,34.0651051 98.8636865,34.0934369 C98.8001045,34.1296754 98.7665016,34.1925984 98.7665016,34.2937366 C98.7665016,34.3276689 98.7790203,34.3583069 98.7849503,34.3899331 C98.7931863,34.420571 98.8060344,34.4709754 98.8346957,34.5352162 L99.4975294,36.2147024 L99.5324501,36.2147024 L100.083604,34.8076633 C100.083604,34.7819669 100.054283,34.7015835 100.010468,34.547735 C99.9689583,34.395863 99.9294255,34.2937366 99.9030703,34.2291663 C99.8523365,34.1553717 99.8131331,34.1033201 99.7772241,34.0865187 C99.7274787,34.0651051 99.6503897,34.0496214 99.5120248,34.0338083 L99.5120248,33.8371325 L101.526552,33.8371325 L101.526552,34.0338083 C101.412565,34.038091 101.298579,34.0499508 101.231703,34.0815771 C101.153955,34.1033201 101.113104,34.1583366 101.113104,34.2262013 C101.113104,34.2713346 101.120352,34.318774 101.128258,34.3790616 C101.143083,34.4304543 101.153955,34.5052372 101.188217,34.5991276 L101.706755,36.1349779 L101.667223,36.1349779 L102.303042,34.5012839 C102.30996,34.4673516 102.30996,34.4416552 102.324456,34.420571 C102.329068,34.3899331 102.329068,34.365884 102.329068,34.3398582 C102.329068,34.2212597 102.29843,34.145159 102.219694,34.1033201 C102.158747,34.0693878 102.05102,34.0496214 101.908702,34.0338083 L101.908702,33.8371325 L103.062731,33.8371325 L103.062731,34.0338083 C102.965546,34.0499508 102.888457,34.0908014 102.829488,34.145159 C102.762282,34.1925984 102.706277,34.3032903 102.642695,34.4673516 L101.303191,37.9040717 L101.108821,37.9040717 L100.227898,35.2570197 L100.183094,35.2570197 L99.1667714,37.9040717 L98.9499998,37.9040717 L97.6859377,34.6992775 C97.5811758,34.4284776 97.5024396,34.2555215 97.4530235,34.1797503 C97.4042664,34.1033201 97.3212474,34.0578574 97.1977074,34.0338083 L97.1977074,33.8371325 L99.1064839,33.8371325 Z" id="Fill-47" fill="#FFFFFF"></path>
<path d="M103.446167,35.8105781 C103.446167,36.4068649 103.623076,36.9059668 103.998308,37.3101899 C104.361352,37.7055181 104.817956,37.9038411 105.379651,37.9038411 C105.949583,37.9038411 106.414423,37.7035415 106.765277,37.2861407 C107.128979,36.8726933 107.302264,36.3791919 107.302264,35.8105781 C107.302264,35.2343872 107.128979,34.7389091 106.765277,34.334686 C106.401904,33.9212385 105.937723,33.7239039 105.379651,33.7239039 C104.817956,33.7239039 104.361352,33.9153086 103.998308,34.3188729 C103.623076,34.7138717 103.446167,35.2113264 103.446167,35.8105781 M104.705617,35.8105781 C104.705617,35.2284573 104.737243,34.8077621 104.806755,34.5610114 C104.896362,34.1894029 105.085791,33.9966803 105.379651,33.9966803 C105.638921,33.9966803 105.81583,34.1449284 105.905767,34.4305531 C105.998669,34.7138717 106.04545,35.1820062 106.04545,35.8105781 C106.04545,36.4575986 105.998669,36.9122261 105.912685,37.1978508 C105.825054,37.4821577 105.644851,37.6280997 105.379651,37.6280997 C105.085791,37.6280997 104.894386,37.4363655 104.798189,37.0667336 C104.737243,36.8292072 104.705617,36.4127948 104.705617,35.8105781" id="Fill-49" fill="#FFFFFF"></path>
<path d="M107.695748,37.5777612 C107.860138,37.562607 107.976431,37.523733 108.039683,37.4634455 C108.101947,37.4071112 108.139833,37.2911482 108.141151,37.1244515 L108.156964,36.8724297 L108.156964,34.5235211 C108.156964,34.3400229 108.122702,34.2260366 108.05912,34.1690435 C108.00608,34.0978844 107.875293,34.0576927 107.695748,34.0336435 L107.695748,33.8372972 L109.314946,33.8372972 L109.314946,34.5103435 C109.496138,34.2714994 109.675683,34.0817418 109.858523,33.9423886 C110.032467,33.805012 110.249898,33.727923 110.479517,33.727923 C110.657744,33.727923 110.812252,33.7849162 110.959182,33.9028558 C111.098865,34.0155243 111.162447,34.179915 111.162447,34.3920745 C111.162447,34.56536 111.121267,34.6994422 111.010904,34.807828 C110.910096,34.9188494 110.789521,34.9676065 110.627107,34.9676065 C110.444597,34.9676065 110.293713,34.8862348 110.150736,34.7178908 C110.025878,34.5528413 109.928034,34.4675163 109.872359,34.4675163 C109.766609,34.4675163 109.650975,34.535381 109.536989,34.6740753 C109.414437,34.8127696 109.356126,35.0199875 109.356126,35.2825513 L109.356126,36.9119626 C109.356126,37.1942928 109.396647,37.3787793 109.475384,37.4361019 C109.555767,37.5148381 109.720487,37.556677 109.977121,37.5777612 L109.977121,37.7803669 L107.695748,37.7803669 L107.695748,37.5777612 Z" id="Fill-51" fill="#FFFFFF"></path>
<path d="M111.485924,37.5777612 C111.63549,37.540205 111.742558,37.499025 111.809764,37.4321486 C111.869393,37.3787793 111.898054,37.2522743 111.898054,37.0552691 L111.898054,32.6865626 C111.898054,32.5063588 111.869393,32.3844659 111.809764,32.3317555 C111.753759,32.2810217 111.642738,32.2279818 111.485924,32.1881195 L111.485924,31.992432 L113.096887,31.992432 L113.096887,35.6815034 L114.174156,34.5920447 C114.245645,34.5264861 114.28946,34.4675163 114.320428,34.4124998 C114.344477,34.3518828 114.363914,34.3110322 114.363914,34.2714994 C114.363914,34.1894687 114.32504,34.1295106 114.245645,34.0978844 C114.168226,34.0695525 114.029203,34.0497861 113.853281,34.0336435 L113.853281,33.8372972 L115.686287,33.8372972 L115.686287,34.0336435 C115.509377,34.0576927 115.371012,34.0906367 115.26658,34.1295106 C115.085717,34.2006697 114.905184,34.3186093 114.732228,34.4951893 L114.064782,35.1652706 L115.728455,37.4499384 C115.752504,37.5013311 115.785448,37.5273569 115.813121,37.5474527 C115.844418,37.556677 115.892516,37.573149 115.942262,37.5777612 L115.942262,37.7803669 L113.941901,37.7803669 L113.941901,37.5777612 C114.064782,37.573149 114.153731,37.556677 114.207759,37.5316396 C114.274965,37.5095671 114.303956,37.4720109 114.303956,37.4186416 C114.303956,37.3873448 114.28946,37.3520947 114.261458,37.297737 C114.245645,37.2552393 114.179427,37.162996 114.092455,37.0325377 L113.285656,35.8811442 L113.096887,36.0949509 L113.096887,37.0552691 C113.096887,37.2552393 113.123242,37.3840504 113.163763,37.4473029 C113.214826,37.5148381 113.333095,37.556677 113.524171,37.5777612 L113.524171,37.7803669 L111.485924,37.7803669 L111.485924,37.5777612 Z" id="Fill-53" fill="#FFFFFF"></path>
<polygon id="Fill-55" fill="#FFFFFF" points="119.326832 30.0048205 0.0108385826 30.0048205 0.0108385826 29.1285096 118.634019 29.1285096 119.884244 23.349799 120.750013 23.3754953 121.584485 29.2886175 122.546121 19.6627043 123.430998 19.6564449 122.068433 32.8824806 121.218148 32.8798451 120.237075 25.8061051"></polygon>
<path d="M28.9307466,15.8910093 C27.4706676,15.8910093 26.6042399,17.1745083 26.6042399,18.8754081 C26.6042399,20.4639687 27.3906137,21.7636103 28.8984615,21.7636103 C29.8452726,21.7636103 30.7117003,21.1215314 30.9683342,20.0785237 C31.0164325,19.8861306 31.0329045,19.6934081 31.0329045,19.4687299 L31.0329045,18.1213195 C31.0329045,17.9285969 31.0164325,17.7042482 30.9683342,17.5111962 C30.7597986,16.6286259 29.9895674,15.8910093 28.9307466,15.8910093" id="Fill-57" fill="#FFFFFF"></path>
<path d="M98.4099485,15.8910093 C97.4473242,15.8910093 96.5486113,16.5647145 96.2764937,17.6238648 C96.228066,17.7997858 96.1957809,17.9931672 96.1957809,18.2171866 L96.1957809,19.6133541 C96.1957809,19.7899341 96.211594,19.966514 96.2432203,20.1272808 C96.5169851,21.1057182 97.3511277,21.779094 98.3618502,21.779094 C99.8538849,21.779094 100.720313,20.5759784 100.720313,18.7946952 C100.720313,17.2222771 99.9181257,15.8910093 98.4099485,15.8910093" id="Fill-59" fill="#FFFFFF"></path>
<path d="M20.6829806,15.7787361 C19.2390442,15.7787361 18.6292504,17.0941908 18.5172407,18.0732871 L22.6247011,18.0732871 C22.6405142,17.1903873 22.2553986,15.7787361 20.6829806,15.7787361" id="Fill-61" fill="#FFFFFF"></path>
<path d="M89.2165243,15.8421204 C87.563064,15.8421204 86.8419194,17.3835711 86.8419194,18.8594632 C86.8419194,20.5600335 87.8038848,21.8438619 89.1677672,21.8438619 L89.1835803,21.8438619 C90.5316496,21.8438619 91.5427016,20.5758466 91.5427016,18.8113649 C91.5427016,17.4955807 90.8848095,15.8421204 89.2165243,15.8421204" id="Fill-63" fill="#FFFFFF"></path>
<path d="M104.715006,20.5118693 C104.715006,21.4425379 105.325458,21.8602681 106.031119,21.8602681 C107.057984,21.8602681 107.715876,21.2178597 107.940555,20.5599676 C107.988982,20.4160022 108.004137,20.2555649 108.004137,20.1102817 L108.004137,18.7628713 C106.464992,18.7309156 104.715006,19.0036921 104.715006,20.5118693" id="Fill-65" fill="#FFFFFF"></path>
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-68"></g>
<path d="M111.647613,22.7261028 L113.058935,22.7261028 L113.058935,11.3340607 L111.647613,11.3340607 L111.647613,22.7261028 Z M108.229342,22.7261028 L108.101849,21.7470065 L108.053091,21.7470065 C107.63635,22.3568003 106.785735,22.9026828 105.677828,22.9026828 C104.106068,22.9026828 103.304211,21.7951048 103.304211,20.6723726 C103.304211,18.7948929 104.972167,17.7680278 107.972379,17.7841704 L107.972379,17.623733 C107.972379,16.9823129 107.796458,15.8104941 106.208556,15.8266367 C105.469621,15.8266367 104.714874,16.0355018 104.16965,16.4044748 L103.849434,15.4576637 C104.491184,15.0567349 105.437995,14.783629 106.416103,14.783629 C108.806851,14.783629 109.384689,16.4044748 109.384689,17.9610797 L109.384689,20.8650951 C109.384689,21.5388003 109.416974,22.196363 109.496698,22.7261028 L108.229342,22.7261028 Z M98.6498798,22.9026828 C97.5268181,22.9026828 96.6445773,22.4694689 96.0519144,21.4426038 L96.0196292,21.4426038 L95.9385869,22.7261028 L94.7196582,22.7261028 C94.7677564,22.196363 94.7835696,21.4099892 94.7835696,20.7208003 L94.7835696,11.3340607 L96.1958797,11.3340607 L96.1958797,16.1959391 L96.2281649,16.1959391 C96.7249607,15.3295114 97.6236735,14.783629 98.8755463,14.783629 C100.800795,14.783629 102.148205,16.3886617 102.148205,18.7309815 C102.148205,21.5226578 100.383724,22.9026828 98.6498798,22.9026828 L98.6498798,22.9026828 Z M89.1521188,22.9026828 L89.1356468,22.9026828 C87.0502903,22.9026828 85.4136314,21.3625498 85.4136314,18.9075614 C85.4136314,16.3079488 87.1303443,14.783629 89.2641285,14.783629 C91.4944386,14.783629 93.0029453,16.4044748 93.0029453,18.7629372 C93.0029453,21.6511394 90.9976428,22.9026828 89.1521188,22.9026828 L89.1521188,22.9026828 Z M82.2200381,22.7261028 L83.6323482,22.7261028 L83.6323482,11.3340607 L82.2200381,11.3340607 L82.2200381,22.7261028 Z M80.118539,22.2451201 C79.4926027,22.485282 78.2410593,22.8381125 76.7806509,22.8381125 C75.143992,22.8381125 73.796911,22.4217001 72.7377608,21.4099892 C71.8067628,20.5119352 71.2292541,19.0679988 71.2292541,17.3835711 C71.2292541,14.1576926 73.4592348,11.7992302 77.0857126,11.7992302 C78.3375853,11.7992302 79.3324947,12.0723362 79.7979937,12.2970144 L79.4438455,13.4362186 C78.8666663,13.1627832 78.1445334,12.9703901 77.0540863,12.9703901 C74.422518,12.9703901 72.7058051,14.6073785 72.7058051,17.3186714 C72.7058051,20.0625788 74.3421346,21.6830951 76.876518,21.6830951 C77.7917029,21.6830951 78.4173098,21.5552723 78.7391729,21.3945055 L78.7391729,18.1686271 L76.5566316,18.1686271 L76.5566316,17.0458949 L80.118539,17.0458949 L80.118539,22.2451201 Z M64.3156221,18.8228953 L70.1579146,18.8228953 L70.1579146,17.2728792 L64.3156221,17.2728792 L64.3156221,18.8228953 Z M63.5717461,22.7261028 L60.9085515,18.987286 L60.1860891,19.8062743 L60.1860891,22.7261028 L58.773779,22.7261028 L58.7741084,11.3340607 L60.1860891,11.3340607 L60.1860891,18.5227753 L60.2187037,18.5227753 C60.4110968,18.2499988 60.6674013,17.8965095 60.8920795,17.6398755 L63.1866305,14.960209 L64.8713877,14.960209 L61.8708463,18.1534728 L65.288459,22.7261028 L63.5717461,22.7261028 Z M56.4795574,22.7261028 L55.0679062,22.7261028 L55.0679062,18.2499988 C55.0679062,16.998126 54.6024072,15.9389758 53.2708099,15.9389758 C52.3559545,15.9389758 51.6338215,16.5968679 51.3778465,17.3835711 C51.3132762,17.5598216 51.28165,17.8164555 51.28165,18.0411337 L51.28165,22.7261028 L49.8690104,22.7261028 L49.8690104,17.061708 C49.8690104,16.2440374 49.8528678,15.6022879 49.8047695,14.960209 L51.0566423,14.960209 L51.1363668,16.2282243 L51.1689814,16.2282243 C51.5537676,15.5054325 52.452151,14.783629 53.7363089,14.783629 C54.8109428,14.783629 56.4795574,15.4253785 56.4795574,18.0889025 L56.4795574,22.7261028 Z M46.8042282,13.5320857 L46.7884151,13.5320857 C46.2590047,13.5320857 45.9058448,13.1150144 45.9058448,12.6172302 C45.9058448,12.1204344 46.2751472,11.7188468 46.8213591,11.7188468 C47.3662532,11.7188468 47.7194131,12.1204344 47.7194131,12.6172302 C47.7194131,13.1150144 47.3662532,13.5320857 46.8042282,13.5320857 L46.8042282,13.5320857 Z M46.1147099,22.7261028 L47.5260317,22.7261028 L47.5260317,14.960209 L46.1147099,14.960209 L46.1147099,22.7261028 Z M44.6065326,22.7261028 L38.5734942,22.7261028 L38.5734942,11.9115693 L39.9858044,11.9115693 L39.9858044,21.5552723 L44.6065326,21.5552723 L44.6065326,22.7261028 Z M35.4770858,13.5320857 L35.4612726,13.5320857 C34.9315328,13.5320857 34.5783729,13.1150144 34.5783729,12.6172302 C34.5783729,12.1204344 34.9473459,11.7188468 35.4932283,11.7188468 C36.0391108,11.7188468 36.3919412,12.1204344 36.3919412,12.6172302 C36.3919412,13.1150144 36.0391108,13.5320857 35.4770858,13.5320857 L35.4770858,13.5320857 Z M34.787238,22.7261028 L36.1992187,22.7261028 L36.1992187,14.960209 L34.787238,14.960209 L34.787238,22.7261028 Z M31.2408142,22.7261028 L31.1772323,21.3783629 L31.1449471,21.3783629 C30.7117333,22.2451201 29.7807353,22.9026828 28.5137082,22.9026828 C26.6362285,22.9026828 25.1761496,21.3137927 25.1761496,18.9553303 C25.160007,16.3563765 26.7805234,14.783629 28.6580031,14.783629 C29.8617776,14.783629 30.663635,15.3449951 31.0003229,15.9547889 L31.0329375,15.9547889 L31.0329375,11.3340607 L32.4445887,11.3340607 L32.4445887,20.7208003 C32.4445887,21.4099892 32.4607313,22.196363 32.5088296,22.7261028 L31.2408142,22.7261028 Z M23.9407488,19.0999545 L18.5010322,19.0841414 C18.5326585,20.9929179 19.7367624,21.7789622 21.1487431,21.7789622 C22.1594657,21.7789622 22.7850726,21.6033706 23.2986699,21.3945055 L23.5553038,22.3894149 C23.0575196,22.6140931 22.1917508,22.8868696 20.9556912,22.8868696 C18.5814156,22.8868696 17.1374792,21.2979795 17.1374792,18.9714728 C17.1374792,16.612681 18.5326585,14.7681453 20.7952538,14.7681453 C23.3302961,14.7681453 23.9885177,16.998126 23.9885177,18.4259199 C23.9885177,18.7151684 23.9723751,18.9398466 23.9407488,19.0999545 L23.9407488,19.0999545 Z M14.1204659,22.7261028 L13.863832,17.9765634 C13.783778,16.4680568 13.687252,14.6393342 13.687252,13.3077369 L13.6552963,13.3077369 C13.2701807,14.5589508 12.8369669,15.9231627 12.2914139,17.4148679 L10.3819785,22.661862 L9.32282824,22.661862 L7.55768764,17.5110644 C7.04474925,15.9709315 6.62767796,14.5912359 6.32261633,13.3077369 L6.29033119,13.3077369 C6.25837549,14.6554768 6.17799208,16.4525731 6.08179554,18.0889025 L5.79320593,22.7261028 L4.4612792,22.7261028 L5.21536782,11.9115693 L6.99632154,11.9115693 L8.84184555,17.1424208 C9.29087254,18.4740181 9.64403243,19.6619795 9.93295149,20.7847117 L9.96490719,20.7847117 C10.2538262,19.6932763 10.6386124,18.5063033 11.1199245,17.1424208 L13.0455025,11.9115693 L14.8267857,11.9115693 L15.5001614,22.7261028 L14.1204659,22.7261028 Z M0,27.716463 L117.508025,27.716463 L117.508025,6.15756679 L0,6.15756679 L0,27.716463 Z" id="Fill-67" fill="#FFFFFF" mask="url(#mask-4)"></path>
<polygon id="Fill-69" fill="#FFFFFF" mask="url(#mask-4)" points="0.0105420864 4.76337586 117.508025 4.76337586 117.508025 3.88739437 0.0105420864 3.88739437"></polygon>
<path d="M122.12032,2.27620118 L122.937002,2.27620118 C123.110946,2.27620118 123.247005,2.25775253 123.34419,2.22184355 C123.442363,2.186264 123.516487,2.12828253 123.566892,2.04888744 C123.617955,1.96982179 123.643322,1.8838379 123.643322,1.79027688 C123.643322,1.65454752 123.593576,1.54187897 123.496062,1.45490676 C123.397889,1.36727566 123.242064,1.32280124 123.028916,1.32280124 L122.12032,1.32280124 L122.12032,2.27620118 Z M121.73751,3.88321048 L121.73751,1.00357368 L123.013103,1.00357368 C123.269078,1.00357368 123.464436,1.0299289 123.5972,1.08099213 C123.730953,1.13304368 123.837033,1.22462806 123.916757,1.35541582 C123.996482,1.48653302 124.036015,1.63148671 124.036015,1.78994744 C124.036015,1.99452981 123.969797,2.16682703 123.83868,2.30716856 C123.706245,2.44718064 123.502321,2.53645894 123.22658,2.57434456 C123.327718,2.62244283 123.403819,2.66988222 123.457188,2.71699217 C123.566892,2.81911863 123.672642,2.94727087 123.772133,3.10046056 L124.268929,3.88321048 L123.793217,3.88321048 L123.412714,3.28527651 C123.302022,3.11199097 123.210767,2.98021489 123.138949,2.88830107 C123.067131,2.79638726 123.00289,2.73313474 122.945897,2.69590799 C122.888574,2.65934013 122.830593,2.63397324 122.772282,2.61947787 C122.729125,2.61025354 122.658954,2.60564138 122.560452,2.60564138 L122.12032,2.60564138 L122.12032,3.88321048 L121.73751,3.88321048 Z" id="Fill-70" fill="#FFFFFF" mask="url(#mask-4)"></path>
<path d="M122.823279,0.3217313 C121.694947,0.3217313 120.781738,1.23559842 120.781738,2.36360166 C120.781738,3.49127547 121.694947,4.40580147 122.823279,4.40580147 C123.950624,4.40580147 124.865809,3.49127547 124.865809,2.36360166 C124.865809,1.23559842 123.950624,0.3217313 122.823279,0.3217313 M125.187342,2.36360166 C125.187342,3.66917318 124.12951,4.72700566 122.823279,4.72700566 C121.517049,4.72700566 120.459546,3.66917318 120.459546,2.36360166 C120.459546,1.05835959 121.517049,0.00019766412 122.823279,0.00019766412 C124.12951,0.00019766412 125.187342,1.05835959 125.187342,2.36360166" id="Fill-71" fill="#FFFFFF" mask="url(#mask-4)"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
import { Button, Input, Menu, Form, DatePicker, Tabs, Modal,Carousel,Icon,Checkbox,Message } from "ant-design-vue";
import Vue from "vue";
// 根据实际情况全局注入
let antdArrs = [Button, Input, Menu, Form, DatePicker, Tabs, Modal,Carousel,Icon];
let useAntd = () => {
antdArrs.forEach((item) => {
Vue.use(item)
})
}
export default useAntd
import useAntd from "./Antd";
export { useAntd };
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import Antd from "ant-design-vue";
import { notification, message } from "ant-design-vue";
import "ant-design-vue/dist/antd.less";
import moment from "moment";
import "moment/locale/zh-cn";
moment.locale("zh-cn");
window.notification = notification;
window.message = message;
Vue.use(Antd);
Vue.config.productionTip = false;
new Vue({
router,
store,
render: (h) => h(App),
}).$mount("#app");
import Vue from "vue";
import VueRouter from "vue-router";
// 布局
import Layout from "../views/layout/";
Vue.use(VueRouter);
// 路由格式统一采用这种默认chuank打包方式,统一写法,非必要不要擅改
const routes = [
{
path: "/",
component: Layout,
children: [
{
path: "/",
redirect: "/index", // 页面重定向
},
{
// 主页
path: "/index",
name: "Index",
component: () =>
import(/* webpackChunkName: "Index" */ "../views/index"),
},
],
},
{
// 登陆
path: "/login",
name: "Login",
component: () => import(/* webpackChunkName: "Index" */ "../views/login"),
},
];
const router = new VueRouter({
mode: "history",
base: process.env.BASE_URL,
routes,
});
export default router;
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
},
mutations: {
},
actions: {
},
modules: {
}
})
<template>
<div class="index">首页</div>
</template>
<script>
export default {
components: {},
data() {
return {};
},
};
</script>
<style lang="less" scoped></style>
<template>
<div class="footbar_">
<div class="con_">
<div class="con_item2">
<img src="../../assets/imgs/layout/logo1.svg" alt="" />
<p>
<span class="locicon"></span>
总部地址:北京市朝阳区建国门外大街丙24号,京泰大厦10层
</p>
<p><span class="phoneicon"></span>联系方式:400 880 8820</p>
<p><span class="emailicon"></span>&nbsp;&nbsp;编: 100022</p>
<p><span class="faxicon"></span>传真:+8610 8453 9719</p>
<p><span class="websiteicon"></span>网址:www.medilink-global.com.cn</p>
</div>
<div class="con_item2 flex_">
<div class="con_item3">
<p class="bold">关于中间带</p>
<a href=""
><router-link :to="{ path: '/about', query: { loc: 1 } }"
>企业简介</router-link
></a
>
<a href=""
><router-link :to="{ path: '/about', query: { loc: 2 } }">
发展历程
</router-link></a
>
<a href=""
><router-link :to="{ path: '/about', query: { loc: 3 } }">
核心优势
</router-link></a
>
</div>
<div class="con_item3">
<p class="bold">视频中心</p>
<a href=""
><router-link :to="{ path: '/about', query: { loc: 4 } }">
企业活动片
</router-link></a
>
</div>
<div class="con_item3">
<p class="bold">产品与服务</p>
<a href=""
><router-link :to="{ path: '/thirdService/thirdPartService' }">
第三方管理服务
</router-link></a
>
<a href=""
><router-link :to="{ path: '/vipService' }">
会员服务
</router-link></a
>
<a href=""
><router-link :to="{ path: '/specialService' }">
特色服务
</router-link></a
>
</div>
<div class="con_item3">
<p class="bold">信息中心</p>
<a href=""
><router-link :to="{ path: '/about', query: { loc: 5 } }">
最新动态
</router-link></a
>
</div>
</div>
<div class="con_item2 flex_">
<div class="con_item4">
<img src="../../assets/imgs/layout/saoma.png" alt="" />
<span>中间带在线</span>
</div>
<div class="con_item4">
<img src="../../assets/imgs/layout/erweima24.jpeg" alt="" />
<span>中间带24小时</span>
</div>
<div class="con_item4">
<img src="../../assets/imgs/layout/ma3.jpg" alt="" />
<span>MediLink Global<br />中间带</span>
</div>
</div>
</div>
<p>
Copyright © 2008 - 2020 MediLink-Global. ALL RIGHTS RESERVED
京ICP备08007346号-1 京公网安备 11010502030494号
</p>
</div>
</template>
<style lang="less" scoped>
.footbar_ {
background: #2c2c31;
background-size: 100% 100%;
padding: 58px 0 0 0;
.con_ {
display: flex;
justify-content: space-between;
align-items: initial;
font-size: 14px;
padding: 0 83px;
color: #fff;
.con_item2 {
&.flex_ {
display: flex;
justify-content: space-between;
}
&:first-child {
// width:460px;
width: 29%;
img {
width: 119px;
height: 35px;
object-fit: cover;
margin-bottom: 30px;
}
p {
// margin-bottom:20px;
}
}
&:nth-child(2) {
// width:510px;
width: 33.4%;
// margin-left: -151px;
}
&:last-child {
// width:270px;
width: 30%;
}
p {
display: flex;
align-items: center;
justify-content: self-start;
}
.locicon {
width: 15px;
height: 15px;
display: inline-block;
background: url(../../assets/imgs/layout/locicon.png) center center
no-repeat;
background-size: 13px 17px;
margin-right: 13px;
}
.phoneicon {
width: 15px;
height: 15px;
display: inline-block;
background: url(../../assets/imgs/layout/phoneicon.png) center center
no-repeat;
background-size: 15px 13px;
margin-right: 13px;
}
.emailicon {
width: 15px;
height: 15px;
display: inline-block;
background: url(../../assets/imgs/layout/emailicon.png) center center
no-repeat;
background-size: 14px 11px;
margin-right: 13px;
}
.faxicon {
width: 15px;
height: 15px;
display: inline-block;
background: url(../../assets/imgs/layout/faxicon.png) center center
no-repeat;
background-size: 14px 14px;
margin-right: 13px;
}
.websiteicon {
width: 15px;
height: 15px;
display: inline-block;
background: url(../../assets/imgs/layout/websiteicon.png) center center
no-repeat;
background-size: 15px 15px;
margin-right: 13px;
}
.con_item3 {
display: flex;
flex-direction: column;
p {
font-size: 16px;
font-weight: bold;
margin-bottom: 10px;
}
a {
font-size: 14px;
color: #fff;
padding: 5px 0;
opacity: 0.7;
&:hover {
opacity: 1;
}
}
}
.con_item4 {
display: flex;
flex-direction: column;
justify-content: center;
// margin-right:33px;
margin-top: -96px;
width: 143px;
align-items: center;
img {
width: 109px;
height: 109px;
object-fit: cover;
margin-bottom: 5px;
}
&:last-child {
margin-right: 0;
margin-top: -75px;
span {
// white-space:nowrap;
text-align: center;
}
}
}
}
}
& > p {
margin-top: 38px;
text-align: center;
padding: 12px 0;
color: #fff;
font-size: 12px;
background: #2c2c31;
}
}
</style>
<template>
<div class="header">
<div class="logo">
<img :src="logoImg" alt="" />
</div>
<div class="menu-container">
<div class="cursor" ref="cursor"></div>
<div class="cursor" ref="cursor-current"></div>
<ul class="menu">
<li
@click.self="topage(0, '/')"
@mouseenter.self="hover(0)"
@mouseleave="leave(0)"
>
首页
</li>
<li @mouseenter.self="hover(1)" @mouseleave="leave(1)">
产品家族
<div class="childs">
<div
class="prod"
@click.self="topage(1, '/thirdService/healthPlan')"
>
企业健康管理方案
</div>
<div
class="prod"
@click.self="topage(1, '/thirdService/healthPlan')"
>
企业定制方案
</div>
<div class="prod" @click.self="topage(1, '/products/personal')">
个人健康管理方案
</div>
<div class="prod" @click.self="topage(1, '/productDetails')">
新燕保
</div>
<div class="prod" @click.self="topage(1, '/productDetails2')">
喜燕保
</div>
<div class="prod" @click.self="topage(1, '/productDetails3')">
福燕保
</div>
<div class="prod" @click.self="topage(1, '/productDetails5')">
小燕保
</div>
<div class="prod" @click.self="topage(1, '/productDetails4')">
臻荣耀
</div>
</div>
</li>
<li @mouseenter.self="hover(2)" @mouseleave="leave(2)">
第三方管理服务
<div class="childs">
<div
class="prod"
@click.self="topage(2, '/thirdService/thirdPartService')"
>
第三方服务管理
</div>
<div class="prod" @click.self="topage(2, '/vipService')">
会员服务
</div>
<div class="prod" @click.self="topage(2, '/specialService')">
特色服务
</div>
</div>
</li>
<li
@click.self="topage(3, '/medicalNetwork')"
@mouseenter.self="hover(3)"
@mouseleave="leave(3)"
>
医疗网络
</li>
<li @mouseenter.self="hover(4)" @mouseleave="leave(4)">
医疗服务
<div class="childs">
<div class="prod" @click.self="topage(4, '/medicalService/yx')">
中间带·医杏
</div>
<div
class="prod"
@click.self="topage(4, '/medicalService/company')"
>
企业健保服务
</div>
</div>
</li>
<li
@click.self="topage(5, '/about')"
@mouseenter.self="hover(5)"
@mouseleave="leave(5)"
>
关于我们
</li>
<li></li>
<li @mouseenter.self="hover(7)" @mouseleave="leave(7)">
中文 <img class="down" :src="downIcon" alt="" />
<div class="childs">
<div class="prod" @click="changeLangEvent">中文 CN</div>
<div class="prod" @click="changeLangEvent">英文 EN</div>
</div>
</li>
<li @mouseenter.self="hover(8)" @mouseleave="leave(8)">
登陆 <img class="down" :src="downIcon" alt="" />
<div class="childs">
<a
href="https://provider.medilink-global.com.cn/pcadmin/loginPage"
target="_blank"
><div class="prod" @>会员登录</div></a
>
<a href="http://eccs.run4wd.com/login" target="_blank">
<div class="prod">医疗结构登陆</div></a
>
<a
href="https://secure.medilink-global.com.cn/eccs/"
target="_blank"
>
<div class="prod">合作伙伴登陆</div></a
>
</div>
</li>
</ul>
</div>
</div>
</template>
<script>
export default {
name: "Header",
components: {},
data() {
return {
logoImg: require("@/assets/imgs/layout/logo.png"),
downIcon: require("@/assets/imgs/layout/down.png"),
currentIndex: 0,
};
},
methods: {
changeLangEvent() {
if (this.$i18n.locale === "zh-CN") {
this.$i18n.locale = "en-US"; //关键语句
console.log("en-US");
} else {
this.$i18n.locale = "zh-CN"; //关键语句
console.log("zh-CN");
}
},
topage(index, url) {
let cursor = this.$refs["cursor"];
this.currentIndex = index;
switch (index) {
case 0:
cursor.style.left = "0";
break;
case 1:
cursor.style.left = "124px";
break;
case 2:
cursor.style.left = "284px";
break;
case 3:
cursor.style.left = "448px";
break;
case 4:
cursor.style.left = "586px";
break;
case 5:
cursor.style.left = "728px";
break;
}
// 跳页面
this.$router.push(url);
},
leave() {
let cursor = this.$refs["cursor"];
let cursorCurrent = this.$refs["cursor-current"];
let childs = this.$el.querySelectorAll(".childs");
childs.forEach((item) => {
item.style.display = "none";
});
switch (this.currentIndex) {
case 0:
cursor.style.left = "0";
cursorCurrent.style.left = "0";
break;
case 1:
cursor.style.left = "124px";
cursorCurrent.style.left = "124px";
break;
case 2:
cursor.style.left = "284px";
cursorCurrent.style.left = "284px";
break;
case 3:
cursor.style.left = "448px";
cursorCurrent.style.left = "448px";
break;
case 4:
cursor.style.left = "586px";
cursorCurrent.style.left = "586px";
break;
case 5:
cursor.style.left = "728px";
cursorCurrent.style.left = "728px";
break;
}
},
hover(index) {
let childs = this.$el.querySelectorAll(".childs");
// 游标
let cursor = this.$refs["cursor"];
let cursorCurrent = this.$refs["cursor-current"];
cursor.style.display = "show";
cursorCurrent.style.display = "show";
switch (index) {
case 0:
cursorCurrent.style.left = "0";
break;
case 1:
cursorCurrent.style.left = "124px";
childs[0].style.display = "block";
break;
case 2:
cursorCurrent.style.left = "284px";
childs[1].style.display = "block";
break;
case 3:
cursorCurrent.style.left = "448px";
break;
case 4:
cursorCurrent.style.left = "586px";
childs[2].style.display = "block";
break;
case 5:
cursorCurrent.style.left = "728px";
break;
case 7:
childs[3].style.display = "block";
break;
case 8:
childs[4].style.display = "block";
break;
}
},
},
};
</script>
<style lang="less" scoped>
.header {
display: flex;
justify-content: space-between;
background: #2c2c31;
.logo {
padding: 17px 47px;
}
.menu-container {
position: relative;
.cursor {
width: 29px;
height: 3px;
background: white;
position: absolute;
bottom: 0;
}
.menu {
display: flex;
justify-content: space-evenly;
color: white;
line-height: 63px;
margin: 0;
li {
.down {
width: 6px;
height: 5px;
margin-left: 8px;
position: relative;
top: -2px;
}
position: relative;
cursor: pointer;
margin-right: 84px;
font-size: 14px;
.childs {
display: none;
background: white;
position: absolute;
border-radius: 0px 0px 14px 14px;
padding: 20px 28px;
color: #666666;
font-size: 14px;
top: 63px;
left: -34px;
z-index: 9;
color: #666666;
.prod {
margin: 0;
width: 52px;
line-height: 28px;
text-align: center;
&:hover {
color: #000000;
}
}
}
:nth-child(6) {
margin-right: 67px;
}
&:nth-child(2) {
.childs {
left: -58px;
.prod {
width: 121px;
&:nth-child(1),
&:nth-child(3) {
font-weight: bold;
}
}
}
}
&:nth-child(3) {
.childs {
left: -39px;
.prod {
width: 121px;
}
}
}
&:nth-child(5) {
.childs {
left: -58px;
.prod {
width: 121px;
}
}
}
&:nth-child(8) {
.childs {
left: -30px;
.prod {
width: 52px;
}
}
}
&:nth-child(9) {
a {
color: #666666;
}
.childs {
left: -26px;
padding: 20px 8px;
.prod {
width: 88px;
}
}
}
&:nth-child(7) {
width: 1px;
background: white;
height: 19px;
position: relative;
top: 25px;
margin-right: 34px;
margin-right: 67px;
}
&:nth-child(8) {
margin-right: 34px;
}
&:nth-child(9) {
margin-right: 49px;
}
}
}
}
}
</style>
<template>
<div class="layout">
<Header />
<router-view />
<Footer />
</div>
</template>
<script>
import Header from "./header.vue";
import Footer from "./footer.vue";
export default {
name: "layout",
components: { Header, Footer },
directives: {},
filters: {},
extends: {},
mixins: {},
props: {},
data() {
return {};
},
computed: {},
watch: {},
beforeCreate() {
// 生命周期钩子:组件实例刚被创建,组件属性计算之前,如 data 属性等
},
created() {
// 生命周期钩子:组件实例创建完成,属性已绑定,但 DOM 还未生成,el 属性还不存在
// 初始化渲染页面
},
beforeMount() {
// 生命周期钩子:模板编译/挂载之前
},
mounted() {
// 生命周期钩子:模板编译、挂载之后(此时不保证已在 document 中)
},
beforeUpate() {
// 生命周期钩子:组件更新之前
},
updated() {
// 生命周期钩子:组件更新之后
},
activated() {
// 生命周期钩子:keep-alive 组件激活时调用
},
deactivated() {
// 生命周期钩子:keep-alive 组件停用时调用
},
beforeDestroy() {
// 生命周期钩子:实例销毁前调用
},
destroyed() {
// 生命周期钩子:实例销毁后调用
},
errorCaptured(err, vm, info) {
// 生命周期钩子:当捕获一个来自子孙组件的错误时被调用。此钩子会收到三个参数:错误对象、发生错误的组件实例以及一个包含错误来源信息的字符串。
console.log(err, vm, info);
},
methods: {},
};
</script>
<style lang="scss" scoped></style>
<template>
<div class="login">
<div class="header">
<img :src="logo" alt="" />
</div>
<div class="center">
<div class="left">
<img :src="left" alt="" />
</div>
<div class="right">
<div class="logo">
<img :src="logo" alt="" />
</div>
<div class="tips">账号密码登陆</div>
<div class="form">
<a-form
id="components-form-demo-normal-login"
:form="form"
class="login-form"
@submit="handleSubmit"
>
<a-form-item>
<a-input
v-decorator="[
'userName',
{
rules: [
{
required: true,
message: '请输入体检卡号码!',
},
],
},
]"
placeholder="请输入体检卡号码"
>
<a-icon
slot="prefix"
type="user"
style="color: rgba(0, 0, 0, 0.25)"
/>
</a-input>
</a-form-item>
<a-form-item>
<a-input
v-decorator="[
'password',
{
rules: [
{
required: true,
message: '请输入卡号密码!',
},
],
},
]"
type="password"
placeholder="请输入密码(默认身份证后6位)"
>
<a-icon
slot="prefix"
type="lock"
style="color: rgba(0, 0, 0, 0.25)"
/>
</a-input>
</a-form-item>
<a-form-item>
<a-button
type="primary"
html-type="submit"
class="login-form-button"
:disabled="isSub"
>
登陆
</a-button>
</a-form-item>
</a-form>
<div class="concat">
如果遇到操作问题,请拨打椋鸟健康热线
<span class="code">400-820-6523</span>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: "login",
components: {},
data() {
return {
logo: require("../../assets/imgs/login/logo.png"),
left: require("../../assets/imgs/login/left-bg.png"),
isSub: true,
};
},
beforeCreate() {
this.form = this.$form.createForm(this, { name: "normal_login" });
},
methods: {
// 控制提交是否可用
subState() {
this.isSub = false;
},
handleSubmit(e) {
e.preventDefault();
this.form.validateFields((err, values) => {
if (!err) {
console.log("Received values of form: ", values);
}
});
},
},
};
</script>
<style lang="less" scoped>
.login {
min-height: 100vh;
background: url(../../assets/imgs/login/bg.png) 100%;
.header {
padding: 2.5px 21.5px;
background: rgba(225, 225, 225, 0.32);
}
.center {
display: flex;
justify-content: center;
margin: 69.5px auto;
.left {
img {
width: 320.5px;
}
position: relative;
left: 27.5px;
top: 58px;
}
.right {
padding-bottom: 38px;
position: relative;
right: 27.5px;
.tips {
text-align: center;
margin-bottom: 23.5px;
margin-top: 5px;
}
.logo {
width: 115.5px;
height: 44.5px;
background: url("../../assets/imgs/login/right-bg.png");
background-size: 100% 100%;
text-align: center;
margin: 0 auto;
img {
width: 29.7px;
height: 29.7px;
position: relative;
top: 7px;
}
position: relative;
top: -21px;
}
width: 340px;
background: #ffffff;
box-shadow: 0px 7px 14px 1px rgba(214, 207, 194, 0.14);
border-radius: 12px;
.concat {
font-size: 12px;
text-align: center;
transform: scale(0.8);
.code {
color: #3f7ffb;
}
}
.form {
::v-deep .ant-form {
.ant-input {
font-size: 12px;
}
width: 260.8px;
margin: 0 auto;
.login-form-button {
width: 96%;
position: relative;
left: 2%;
}
}
}
}
}
}
</style>
const path = require("path");
module.exports = {
lintOnSave: false,
css: {
loaderOptions: {
less: {
javascriptEnabled: true,
},
},
},
configureWebpack: {
// provide the app's title in webpack's name field, so that
// it can be accessed in index.html to inject the correct title.
resolve: {
alias: {
"@": path.join(__dirname, "src"),
},
},
},
devServer: {
proxy: {
"^/api": {
target: "http://eccs.run4wd.com/api", //测试
// target: "http://provider.medilink-global.com.cn/api/",//生产,需api
ws: true,
changeOrigin: true,
pathRewrite: {
"^/api": "/", // rewrite path
},
},
},
},
publicPath: "/",
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment