数据看板代码修改
|
@ -0,0 +1,33 @@
|
|||
node_modules
|
||||
.DS_Store
|
||||
.github
|
||||
dist
|
||||
.npmrc
|
||||
node_modules/.cache
|
||||
|
||||
|
||||
tests/server/static
|
||||
tests/server/static/upload
|
||||
public/united/StreamingAssets
|
||||
public/united/Build
|
||||
.local
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
.eslintcache
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
*.zip
|
|
@ -1 +0,0 @@
|
|||
http://172.16.1.168:5000
|
|
@ -1 +0,0 @@
|
|||
{"Keys":["com.unity.services.core.version"],"Values":[{"m_Value":"1.3.1","m_IsReadOnly":true}]}
|
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 175 B |
Before Width: | Height: | Size: 96 B |
Before Width: | Height: | Size: 109 B |
Before Width: | Height: | Size: 74 B |
Before Width: | Height: | Size: 84 B |
|
@ -1,16 +0,0 @@
|
|||
body { padding: 0; margin: 0 }
|
||||
#unity-container { position: absolute }
|
||||
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
|
||||
#unity-container.unity-mobile { width: 100%; height: 100% }
|
||||
#unity-canvas { background: #231F20 }
|
||||
.unity-mobile #unity-canvas { width: 100%; height: 100% }
|
||||
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
|
||||
#unity-logo { width: 154px; height: 130px; background: url('unity-logo-dark.png') no-repeat center }
|
||||
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; margin-left: 6.5px; background: url('progress-bar-empty-dark.png') no-repeat center }
|
||||
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-dark.png') no-repeat center }
|
||||
#unity-footer { position: relative }
|
||||
.unity-mobile #unity-footer { display: none }
|
||||
#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url('webgl-logo.png') no-repeat center }
|
||||
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
|
||||
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
|
||||
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
|
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 2.9 KiB |
|
@ -1,244 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Unity WebGL Player | Painter</title>
|
||||
<link rel="shortcut icon" href="TemplateData/favicon.ico">
|
||||
<link rel="stylesheet" href="TemplateData/style.css">
|
||||
</head>
|
||||
<style>
|
||||
body,html{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="unity-container" style="height: 100%;" class="unity-desktop">
|
||||
<canvas id="unity-canvas" width=1600 height=900></canvas>
|
||||
<div id="unity-loading-bar">
|
||||
<div id="unity-logo"></div>
|
||||
<div id="unity-progress-bar-empty">
|
||||
<div id="unity-progress-bar-full"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="unity-warning"> </div>
|
||||
<div id="unity-footer">
|
||||
<!-- <div id="unity-webgl-logo"></div> -->
|
||||
<!-- <div id="unity-fullscreen-button"></div> -->
|
||||
<!-- <div id="unity-build-title">Painter</div> -->
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
var container = document.querySelector("#unity-container");
|
||||
var canvas = document.querySelector("#unity-canvas");
|
||||
var loadingBar = document.querySelector("#unity-loading-bar");
|
||||
var progressBarFull = document.querySelector("#unity-progress-bar-full");
|
||||
var fullscreenButton = document.querySelector("#unity-fullscreen-button");
|
||||
var warningBanner = document.querySelector("#unity-warning");
|
||||
|
||||
// Shows a temporary message banner/ribbon for a few seconds, or
|
||||
// a permanent error message on top of the canvas if type=='error'.
|
||||
// If type=='warning', a yellow highlight color is used.
|
||||
// Modify or remove this function to customize the visually presented
|
||||
// way that non-critical warnings and error messages are presented to the
|
||||
// user.
|
||||
function unityShowBanner(msg, type) {
|
||||
function updateBannerVisibility() {
|
||||
warningBanner.style.display = warningBanner.children.length ? 'block' : 'none';
|
||||
}
|
||||
var div = document.createElement('div');
|
||||
div.innerHTML = msg;
|
||||
warningBanner.appendChild(div);
|
||||
if (type == 'error') div.style = 'background: red; padding: 10px;';
|
||||
else {
|
||||
if (type == 'warning') div.style = 'background: yellow; padding: 10px;';
|
||||
setTimeout(function() {
|
||||
warningBanner.removeChild(div);
|
||||
updateBannerVisibility();
|
||||
}, 5000);
|
||||
}
|
||||
updateBannerVisibility();
|
||||
}
|
||||
|
||||
var buildUrl = "Build";
|
||||
var loaderUrl = buildUrl + "/APP.loader.js";
|
||||
var config = {
|
||||
dataUrl: buildUrl + "/APP.data.unityweb",
|
||||
frameworkUrl: buildUrl + "/APP.framework.js.unityweb",
|
||||
codeUrl: buildUrl + "/APP.wasm.unityweb",
|
||||
streamingAssetsUrl: "StreamingAssets",
|
||||
companyName: "DefaultCompany",
|
||||
productName: "Painter",
|
||||
productVersion: "0.1",
|
||||
showBanner: unityShowBanner,
|
||||
};
|
||||
|
||||
// By default Unity keeps WebGL canvas render target size matched with
|
||||
// the DOM size of the canvas element (scaled by window.devicePixelRatio)
|
||||
// Set this to false if you want to decouple this synchronization from
|
||||
// happening inside the engine, and you would instead like to size up
|
||||
// the canvas DOM size and WebGL render target sizes yourself.
|
||||
// config.matchWebGLToCanvasSize = false;
|
||||
|
||||
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
|
||||
// Mobile device style: fill the whole browser client area with the game canvas:
|
||||
|
||||
var meta = document.createElement('meta');
|
||||
meta.name = 'viewport';
|
||||
meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';
|
||||
document.getElementsByTagName('head')[0].appendChild(meta);
|
||||
container.className = "unity-mobile";
|
||||
|
||||
// To lower canvas resolution on mobile devices to gain some
|
||||
// performance, uncomment the following line:
|
||||
// config.devicePixelRatio = 1;
|
||||
|
||||
canvas.style.width = window.innerWidth + 'px';
|
||||
canvas.style.height = window.innerHeight + 'px';
|
||||
|
||||
unityShowBanner('WebGL builds are not supported on mobile devices.');
|
||||
} else {
|
||||
// Desktop style: Render the game canvas in a window that can be maximized to fullscreen:
|
||||
|
||||
// canvas.style.width = "960px";
|
||||
// canvas.style.height = "600px";
|
||||
// canvas.style.width = window.innerWidth + 'px';
|
||||
// canvas.style.height = window.innerHeight + 'px';
|
||||
}
|
||||
|
||||
loadingBar.style.display = "block";
|
||||
var unity;
|
||||
var script = document.createElement("script");
|
||||
script.src = loaderUrl;
|
||||
script.onload = () => {
|
||||
createUnityInstance(canvas, config, (progress) => {
|
||||
progressBarFull.style.width = 100 * progress + "%";
|
||||
}).then((unityInstance) => {
|
||||
unity = unityInstance
|
||||
loadingBar.style.display = "none";
|
||||
// fullscreenButton.onclick = () => {
|
||||
// unityInstance.SetFullscreen(1);
|
||||
// };
|
||||
}).catch((message) => {
|
||||
alert(message);
|
||||
});
|
||||
};
|
||||
//unity初始化
|
||||
function OnSceneLoaded(){
|
||||
window.parent.OnScene();
|
||||
}
|
||||
//获取图像
|
||||
function getDestination(string){
|
||||
// console.log("string",string)
|
||||
if(unity!=null){
|
||||
unity.SendMessage('AAA', 'SendImage', string);
|
||||
}
|
||||
}
|
||||
//获取图像id等数据
|
||||
function getData(string){
|
||||
// console.log("string",string)
|
||||
if(unity!=null){
|
||||
unity.SendMessage('AAA', 'SendStream', string);
|
||||
}
|
||||
}
|
||||
//获取轨迹方法
|
||||
function getGuiJi(string){
|
||||
if(unity!=null){
|
||||
unity.SendMessage('AAA', 'SendJT_GuiJi', string);
|
||||
}
|
||||
}
|
||||
//传触发数据
|
||||
function getChuFa(string){
|
||||
// console.log("string",string)
|
||||
if(unity!=null){
|
||||
unity.SendMessage('AAA', 'SendJT_JianCeQi', string);
|
||||
}
|
||||
}
|
||||
//获取图形数据
|
||||
function getfigureData(string,string1,string2){
|
||||
// console.log("图形类型",string)
|
||||
// console.log("图形名称",string1)
|
||||
// console.log("图形位置",string2)
|
||||
window.parent.getFigure(string,string1,string2);
|
||||
}
|
||||
//新增图形传图形id
|
||||
function postFigureId(string){
|
||||
console.log("图形id",string)
|
||||
// if(unity!=null){
|
||||
unity.SendMessage("GameManager",'ReceivingPatternId', string);
|
||||
//打开新增图形命名弹窗
|
||||
|
||||
// }
|
||||
}
|
||||
//打开修改图形名称弹框
|
||||
function modifyTheName(data){
|
||||
console.log("图形名称弹框",data)
|
||||
window.parent.getModifyTheName(data,1);
|
||||
}
|
||||
//传单个视频id获取到单个视频配置下的所有图形
|
||||
function postVideoId(data){
|
||||
console.log("所有图形id",data)
|
||||
if(unity!=null){
|
||||
unity.SendMessage("GameManager",'ReceptionVideoId', data);
|
||||
}
|
||||
}
|
||||
//传修改好的名称
|
||||
function postFigureName(data){
|
||||
console.log("修改好的名称",data)
|
||||
if(unity!=null){
|
||||
unity.SendMessage("GameManager",'ReceiveModifiedName', data);
|
||||
}
|
||||
}
|
||||
//新增图形点击取消
|
||||
function delFigure(){
|
||||
if(unity!=null){
|
||||
unity.SendMessage("GameManager",'DestoryMyLine');
|
||||
}
|
||||
}
|
||||
//获取组件id
|
||||
function getComponentId(id,type,name){
|
||||
console.log("id",id)
|
||||
console.log("type",type)
|
||||
console.log("name",name)
|
||||
window.parent.getSingleComponentId(id,type,name);
|
||||
// window.parent.getSingleComponentId('a840492e26354c0a851fecd675e9f59a');
|
||||
}
|
||||
//退出编辑图形
|
||||
function closeEdit(data){
|
||||
// type,id
|
||||
// console.log("type",type)
|
||||
console.log("data",data)
|
||||
if(unity!=null){
|
||||
unity.SendMessage("GameManager",'ExitEdit',data);
|
||||
}
|
||||
}
|
||||
//编辑组件名称传名称
|
||||
function editComponent(data){
|
||||
// type,id
|
||||
console.log("data",data)
|
||||
if(unity!=null){
|
||||
unity.SendMessage("GameManager",'Unity_UpdateInstanceName',data);
|
||||
}
|
||||
}
|
||||
//编辑模拟区域组件交互弹窗
|
||||
function simulationAreaEdit(id,type,componentType,name){
|
||||
console.log("id",id)
|
||||
console.log("type",type)
|
||||
console.log("组件类型",componentType)
|
||||
console.log("组件名称",name)
|
||||
window.parent.getSimulationAreaEdit(id,type,componentType,name,2);
|
||||
}
|
||||
|
||||
document.body.appendChild(script);
|
||||
|
||||
|
||||
</script>
|
||||
<style>
|
||||
#unity-container.unity-desktop::-webkit-scrollbar{
|
||||
display: none; /* Chrome Safari */
|
||||
}
|
||||
</style>
|
||||
</body>
|
||||
</html>
|
|
@ -1 +0,0 @@
|
|||
http://172.16.1.168:5000
|
|
@ -1,24 +0,0 @@
|
|||
{
|
||||
"code": 200,
|
||||
"msg": "成功",
|
||||
"data": {
|
||||
"analysisSettingId": "e1af117da47e402d9b30e7cc499a158f",
|
||||
"cameraPositionLongitude": "1",
|
||||
"cameraPositionLatitude": "3",
|
||||
"licensePlateRecognitionSwitch": "1",
|
||||
"parkingDisplacement": 1,
|
||||
"parkingSpeed": 6,
|
||||
"coordinateTransformationId": "7ab32c790ec34b95a58e18b8bad8e46c",
|
||||
"utmArea": 10,
|
||||
"hemisphere": "南",
|
||||
"coordinateTransformation": "其他",
|
||||
"pointData": [{
|
||||
"pointId": "b0c734bfa81f41d8909b74b983429146",
|
||||
"pointName": "点2",
|
||||
"longitude": "1",
|
||||
"latitude": "1",
|
||||
"imageXCoordinate": "17.17",
|
||||
"imageYCoordinate": "1065.16"
|
||||
}]
|
||||
}
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
"code": 200,
|
||||
"msg": "成功",
|
||||
"data": [{
|
||||
"graphicId": "35fb0709596841e5b005fb1bc33a0fa4",
|
||||
"graphicName": "测试区域",
|
||||
"graphicType": "区域",
|
||||
"coordinate": "218.6106 984.2285,453.5649 994.1006,267.9708 820.3528,218.6106 984.2285"
|
||||
}, {
|
||||
"graphicId": "957eb7cba61240f5a099ee6080bd29f0",
|
||||
"graphicName": "测试路线2",
|
||||
"graphicType": "轨迹",
|
||||
"coordinate": "157.404 236.9287,179.1225 260.6216,192.9433 300.1097,202.8154 329.7258,214.6618 357.3675,222.5594 392.9068,236.3803 424.4973,258.0987 446.2157,289.6892 465.9598,317.3309 485.7039,350.8958 503.4735,382.4863 509.3967,420 517.2943,467.3858 521.2432,508.8483 525.192,556.234 525.192,599.671 525.192,631.2614 525.192,662.8519 513.3455,690.4936 499.5247,712.2121 477.8062,724.0585 444.2413,728.0073 412.6508,745.777 386.9836,775.3931 377.1115,806.9836 379.0859"
|
||||
}, {
|
||||
"graphicId": "7c24aa16e12840859164780d71827f5f",
|
||||
"graphicName": "测试线2",
|
||||
"graphicType": "断面",
|
||||
"coordinate": "437.7697 642.6563,880.0366 737.4278"
|
||||
}]
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
{"Keys":["com.unity.services.core.version"],"Values":[{"m_Value":"1.3.1","m_IsReadOnly":true}]}
|
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 175 B |
Before Width: | Height: | Size: 96 B |
Before Width: | Height: | Size: 109 B |
Before Width: | Height: | Size: 74 B |
Before Width: | Height: | Size: 84 B |
|
@ -1,16 +0,0 @@
|
|||
body { padding: 0; margin: 0 }
|
||||
#unity-container { position: absolute }
|
||||
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
|
||||
#unity-container.unity-mobile { width: 100%; height: 100% }
|
||||
#unity-canvas { background: #231F20 }
|
||||
.unity-mobile #unity-canvas { width: 100%; height: 100% }
|
||||
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
|
||||
#unity-logo { width: 154px; height: 130px; background: url('unity-logo-dark.png') no-repeat center }
|
||||
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; margin-left: 6.5px; background: url('progress-bar-empty-dark.png') no-repeat center }
|
||||
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-dark.png') no-repeat center }
|
||||
#unity-footer { position: relative }
|
||||
.unity-mobile #unity-footer { display: none }
|
||||
#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url('webgl-logo.png') no-repeat center }
|
||||
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
|
||||
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
|
||||
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
|
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 2.9 KiB |
|
@ -1,166 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Unity WebGL Player | Painter</title>
|
||||
<link rel="shortcut icon" href="TemplateData/favicon.ico">
|
||||
<link rel="stylesheet" href="TemplateData/style.css">
|
||||
<style>
|
||||
body,html{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="unity-container" style="height: 100%;width: 100%;" class="unity-desktop">
|
||||
<canvas id="unity-canvas" width=960 height=600></canvas>
|
||||
<div id="unity-loading-bar">
|
||||
<div id="unity-logo"></div>
|
||||
<div id="unity-progress-bar-empty">
|
||||
<div id="unity-progress-bar-full"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="unity-warning"> </div>
|
||||
<div id="unity-footer" style="display: none;">
|
||||
<div id="unity-webgl-logo"></div>
|
||||
<div id="unity-fullscreen-button"></div>
|
||||
<div id="unity-build-title">Painter</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
var container = document.querySelector("#unity-container");
|
||||
var canvas = document.querySelector("#unity-canvas");
|
||||
var loadingBar = document.querySelector("#unity-loading-bar");
|
||||
var progressBarFull = document.querySelector("#unity-progress-bar-full");
|
||||
var fullscreenButton = document.querySelector("#unity-fullscreen-button");
|
||||
var warningBanner = document.querySelector("#unity-warning");
|
||||
|
||||
// Shows a temporary message banner/ribbon for a few seconds, or
|
||||
// a permanent error message on top of the canvas if type=='error'.
|
||||
// If type=='warning', a yellow highlight color is used.
|
||||
// Modify or remove this function to customize the visually presented
|
||||
// way that non-critical warnings and error messages are presented to the
|
||||
// user.
|
||||
function unityShowBanner(msg, type) {
|
||||
function updateBannerVisibility() {
|
||||
warningBanner.style.display = warningBanner.children.length ? 'block' : 'none';
|
||||
}
|
||||
var div = document.createElement('div');
|
||||
div.innerHTML = msg;
|
||||
warningBanner.appendChild(div);
|
||||
if (type == 'error') div.style = 'background: red; padding: 10px;';
|
||||
else {
|
||||
if (type == 'warning') div.style = 'background: yellow; padding: 10px;';
|
||||
setTimeout(function() {
|
||||
warningBanner.removeChild(div);
|
||||
updateBannerVisibility();
|
||||
}, 5000);
|
||||
}
|
||||
updateBannerVisibility();
|
||||
}
|
||||
|
||||
var buildUrl = "Build";
|
||||
var loaderUrl = buildUrl + "/APP.loader.js";
|
||||
var config = {
|
||||
dataUrl: buildUrl + "/APP.data.unityweb",
|
||||
frameworkUrl: buildUrl + "/APP.framework.js.unityweb",
|
||||
codeUrl: buildUrl + "/APP.wasm.unityweb",
|
||||
streamingAssetsUrl: "StreamingAssets",
|
||||
companyName: "DefaultCompany",
|
||||
productName: "Painter",
|
||||
productVersion: "0.1",
|
||||
showBanner: unityShowBanner,
|
||||
};
|
||||
|
||||
// By default Unity keeps WebGL canvas render target size matched with
|
||||
// the DOM size of the canvas element (scaled by window.devicePixelRatio)
|
||||
// Set this to false if you want to decouple this synchronization from
|
||||
// happening inside the engine, and you would instead like to size up
|
||||
// the canvas DOM size and WebGL render target sizes yourself.
|
||||
// config.matchWebGLToCanvasSize = false;
|
||||
|
||||
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
|
||||
// Mobile device style: fill the whole browser client area with the game canvas:
|
||||
|
||||
var meta = document.createElement('meta');
|
||||
meta.name = 'viewport';
|
||||
meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';
|
||||
document.getElementsByTagName('head')[0].appendChild(meta);
|
||||
container.className = "unity-mobile";
|
||||
|
||||
// To lower canvas resolution on mobile devices to gain some
|
||||
// performance, uncomment the following line:
|
||||
// config.devicePixelRatio = 1;
|
||||
|
||||
canvas.style.width = window.innerWidth + 'px';
|
||||
canvas.style.height = window.innerHeight + 'px';
|
||||
|
||||
unityShowBanner('WebGL builds are not supported on mobile devices.');
|
||||
} else {
|
||||
// Desktop style: Render the game canvas in a window that can be maximized to fullscreen:
|
||||
|
||||
canvas.style.width = "100%";
|
||||
canvas.style.height = "100%";
|
||||
}
|
||||
|
||||
loadingBar.style.display = "block";
|
||||
|
||||
var script = document.createElement("script");
|
||||
var unityInstanceA
|
||||
script.src = loaderUrl;
|
||||
script.onload = () => {
|
||||
createUnityInstance(canvas, config, (progress) => {
|
||||
progressBarFull.style.width = 100 * progress + "%";
|
||||
}).then((unityInstance) => {
|
||||
unityInstanceA = unityInstance
|
||||
loadingBar.style.display = "none";
|
||||
fullscreenButton.onclick = () => {
|
||||
unityInstance.SetFullscreen(1);
|
||||
};
|
||||
}).catch((message) => {
|
||||
alert(message);
|
||||
});
|
||||
};
|
||||
//unity初始化
|
||||
function OnSceneLoaded(){
|
||||
window.parent.OnSceneload();
|
||||
}
|
||||
function getDianwei(string){
|
||||
unityInstanceA.SendMessage('GameManager','ReceptionVideoIdSececeTwo',JSON.stringify(string));
|
||||
}
|
||||
function setPOS(string){
|
||||
console.log(string,'123');
|
||||
unityInstanceA.SendMessage('GameManager','WebToUnityDot',JSON.stringify(string));
|
||||
}
|
||||
function saveDian(string){
|
||||
console.log(string,'string');
|
||||
unityInstanceA.SendMessage('GameManager','WebToUnitySave',JSON.stringify(string));
|
||||
}
|
||||
function ReceivingCoordinate(x,y,name){
|
||||
var obj = {
|
||||
imageXCoordinate:x,
|
||||
imageYCoordinate:y,
|
||||
pointName:name
|
||||
}
|
||||
window.parent.saveCoordinate(obj)
|
||||
}
|
||||
function getDestination(string){
|
||||
console.log(string,'hjm');
|
||||
if(unityInstanceA!=null){
|
||||
unityInstanceA.SendMessage('AAA', 'SendImage', JSON.stringify(string));
|
||||
}
|
||||
}
|
||||
function deletePoint(string){
|
||||
unityInstanceA.SendMessage('GameManager','WebToUnityDeletePont',JSON.stringify(string));
|
||||
}
|
||||
function exitPoint(string){
|
||||
console.log(string,'11111111');
|
||||
unityInstanceA.SendMessage('GameManager','WebToUnityPointModification',JSON.stringify(string));
|
||||
}
|
||||
document.body.appendChild(script);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -1 +0,0 @@
|
|||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"><link rel=stylesheet href=//at.alicdn.com/t/font_830376_qzecyukz0s.css><title>后台管理系统</title><link href=/static/css/chunk-03ef1325.fefb88e9.css rel=prefetch><link href=/static/css/chunk-0a122200.40a3275f.css rel=prefetch><link href=/static/css/chunk-1417f69c.31330ebf.css rel=prefetch><link href=/static/css/chunk-2126896d.97aa3da3.css rel=prefetch><link href=/static/css/chunk-25001e32.fe5bf00c.css rel=prefetch><link href=/static/css/chunk-25a6b5bf.0e6487a9.css rel=prefetch><link href=/static/css/chunk-298ee65b.4eb5f10f.css rel=prefetch><link href=/static/css/chunk-2ffccff5.f7b2802b.css rel=prefetch><link href=/static/css/chunk-301b50ea.a45a62f4.css rel=prefetch><link href=/static/css/chunk-32f17606.42b5599c.css rel=prefetch><link href=/static/css/chunk-40d445aa.99399cac.css rel=prefetch><link href=/static/css/chunk-450b0085.1deb87de.css rel=prefetch><link href=/static/css/chunk-6269b174.cef9a5b0.css rel=prefetch><link href=/static/css/chunk-68b5485e.d555ed50.css rel=prefetch><link href=/static/css/chunk-6c1c489d.261aa5c0.css rel=prefetch><link href=/static/css/chunk-73ef8f6c.60101364.css rel=prefetch><link href=/static/css/chunk-74f53d49.d961ab7f.css rel=prefetch><link href=/static/css/chunk-7daf91be.3933e170.css rel=prefetch><link href=/static/css/chunk-8a85a220.88c8d204.css rel=prefetch><link href=/static/css/chunk-ad10cd4c.e1f5e94d.css rel=prefetch><link href=/static/css/chunk-b6a8269c.07b148a8.css rel=prefetch><link href=/static/css/chunk-db12337e.97aa3da3.css rel=prefetch><link href=/static/css/chunk-f4b8e89c.97aa3da3.css rel=prefetch><link href=/static/css/chunk-f94c3e26.33f00271.css rel=prefetch><link href=/static/css/chunk-fc7c4266.77b39054.css rel=prefetch><link href=/static/js/chunk-03ef1325.8085e8ef.js rel=prefetch><link href=/static/js/chunk-0a122200.4fabf56e.js rel=prefetch><link href=/static/js/chunk-1417f69c.621b7e3d.js rel=prefetch><link href=/static/js/chunk-2126896d.50eadf9c.js rel=prefetch><link href=/static/js/chunk-25001e32.6998196e.js rel=prefetch><link href=/static/js/chunk-25a6b5bf.31998b63.js rel=prefetch><link href=/static/js/chunk-298ee65b.25f1344d.js rel=prefetch><link href=/static/js/chunk-2d217aeb.a5bf3762.js rel=prefetch><link href=/static/js/chunk-2ffccff5.d34c9262.js rel=prefetch><link href=/static/js/chunk-301b50ea.f5816a80.js rel=prefetch><link href=/static/js/chunk-32f17606.d51df642.js rel=prefetch><link href=/static/js/chunk-40d445aa.0882010e.js rel=prefetch><link href=/static/js/chunk-450b0085.82339920.js rel=prefetch><link href=/static/js/chunk-6269b174.fc2fbe05.js rel=prefetch><link href=/static/js/chunk-68b5485e.e9d3faad.js rel=prefetch><link href=/static/js/chunk-6c1c489d.ffec9e9c.js rel=prefetch><link href=/static/js/chunk-73ef8f6c.6e6d72ae.js rel=prefetch><link href=/static/js/chunk-74f53d49.4e803418.js rel=prefetch><link href=/static/js/chunk-7daf91be.ff22ba9d.js rel=prefetch><link href=/static/js/chunk-8a85a220.f306fdc3.js rel=prefetch><link href=/static/js/chunk-ad10cd4c.1345e169.js rel=prefetch><link href=/static/js/chunk-b6a8269c.1912d475.js rel=prefetch><link href=/static/js/chunk-db12337e.c32a4f84.js rel=prefetch><link href=/static/js/chunk-f4b8e89c.c7ee164c.js rel=prefetch><link href=/static/js/chunk-f94c3e26.4b8cbabf.js rel=prefetch><link href=/static/js/chunk-fc7c4266.70d991a2.js rel=prefetch><link href=/static/css/app.faaa2d02.css rel=preload as=style><link href=/static/css/chunk-vendors.7a32ca23.css rel=preload as=style><link href=/static/js/app.e0e9ef01.js rel=preload as=script><link href=/static/js/chunk-vendors.a131cda0.js rel=preload as=script><link href=/static/css/chunk-vendors.7a32ca23.css rel=stylesheet><link href=/static/css/app.faaa2d02.css rel=stylesheet></head><body><noscript><strong>We're sorry but vms doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/static/js/chunk-vendors.a131cda0.js></script><script src=/static/js/app.e0e9ef01.js></script></body></html>
|
|
@ -1 +0,0 @@
|
|||
*{margin:0;padding:0}#app,body,html{width:100%;height:100%;background:#f0f0f0}body{font-family:PingFang SC,Helvetica Neue,Helvetica,microsoft yahei,arial,STHeiTi,sans-serif}a{text-decoration:none}.header{background-color:#fff}.login-wrap{background:#324157}.plugins-tips{background:#eef1f6;padding:20px 10px;margin-bottom:20px}.el-upload--text em,.plugins-tips a{color:#20a0ff}.pure-button{background:#20a0ff}.tags-li.active{border:1px solid #409eff;background-color:#409eff}.message-title{color:#20a0ff}.collapse-btn:hover{background:none}.error-page{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;height:100%;background:#f3f3f3;-webkit-box-sizing:border-box;box-sizing:border-box}.error-code{line-height:1;font-size:250px;font-weight:bolder;color:#f02d2d}.error-code span{color:#00a854}.error-desc{font-size:30px;color:#777}.error-handle{margin-top:30px;padding-bottom:200px}.error-btn{margin-left:100px}.content-box{position:absolute;left:250px;right:0;top:40px;bottom:0;overflow-y:scroll;padding:10px 20px;-webkit-transition:left .3s ease-in-out;transition:left .3s ease-in-out;background:#f0f0f0}.content{width:auto;height:100%;padding:10px;overflow-y:scroll;-webkit-box-sizing:border-box;box-sizing:border-box}.content-collapse{left:65px}.container{min-height:100%;padding:20px;background:#fff;border:1px solid #ddd;border-radius:5px}.crumbs{margin:10px 0}.el-table th{background-color:#f5f7fa!important}.pagination{margin:20px 0;text-align:right}.el-button+.el-tooltip{margin-left:10px}.el-table tr:hover{background:#f6faff}.mgb20{margin-bottom:20px}.move-enter-active,.move-leave-active{-webkit-transition:opacity .5s;transition:opacity .5s}.move-enter,.move-leave{opacity:0}.table-container{margin-top:20px}.pagination-area{width:100%;text-align:right;margin:20px 0 10px 0}.test-div{margin:15px}.title{width:95%;font-size:25px;text-align:left;border-bottom:1px solid #000;margin-bottom:20px;font-family:Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,SimSun,sans-serif}.chartTitle,.el-form-item__label{font-size:15px}.chartTitle{font-family:Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,SimSun,sans-serif;font-weight:400;padding-left:15px;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:15px}.typeContent>p{margin-bottom:20px}.titleIcon{width:3px;height:18px;display:inline-block;background-color:#3297ff;vertical-align:middle}.theme1 .el-menu-item,.theme1 .sidebar-el-menu:not(.el-menu--collapse),.theme1 .sidebar>ul{background:#012d4b!important}.theme1 .el-menu-item{color:#fff!important}.theme1 .el-menu-item,.theme1 .el-submenu__title{background:#012d4b!important}.theme1 .header{background-color:#001d30!important}.theme1 .el-dropdown-link,.theme1 .header{color:#fff!important}.theme1 .el-menu--horizontal>.el-menu-item.is-active{border-bottom:2px solid #7fffd4!important;color:#7fffd4!important}.theme1 .el-menu--horizontal>.el-menu-item,.theme1 .el-menu--horizontal>.el-menu-item:hover{background:transparent!important;color:#fff!important}.theme1 .el-icon-bell,.theme1 .el-icon-caret-bottom{color:#fff}
|
|
@ -1 +0,0 @@
|
|||
[data-v-ffc21db4] .el-form-item__label{text-align:right;font-size:14px;margin-left:15px;padding:0}[data-v-ffc21db4] .el-form-item__label:before{display:none}[data-v-ffc21db4] .el-input{width:100%;height:100%;border-radius:20px;border:1px solid #e7e7e7}[data-v-ffc21db4] .el-input .el-input-group__prepend,[data-v-ffc21db4] .el-input .el-input__inner{background:transparent;border:none}.login-wrap[data-v-ffc21db4]{position:absolute;width:100%;height:100%;background:url(../../static/img/newlogin-bg.5699381c.png)}.ms-login[data-v-ffc21db4]{width:24%;height:59%;position:absolute;left:58.44%;top:23.2%}.ms-login .ms-title[data-v-ffc21db4]{width:100%;height:42px;background:url(../../static/img/login_title.436f898e.png) no-repeat;background-size:100% 100%}.ms-login .content[data-v-ffc21db4]{margin-top:33px;width:100%;height:calc(100% - 75px);border-radius:20px;background:#fff;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ms-login .content .welcome[data-v-ffc21db4]{margin-top:28px;font-size:16px;letter-spacing:1px}.ms-login .content .ms-content[data-v-ffc21db4]{width:80%;margin-top:25px}.ms-login .content .login-btn[data-v-ffc21db4]{width:80%;margin-top:45px}.ms-login .content .login-btn[data-v-ffc21db4] .el-button{width:100%;border-radius:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.ms-login .content .login-btn[data-v-ffc21db4] .el-button span{letter-spacing:15px;margin-left:15px}
|
|
@ -1 +0,0 @@
|
|||
.test-div i{font-size:25px}.warning{margin-top:10px;width:35%}
|
|
@ -1 +0,0 @@
|
|||
.test-div i[data-v-d1607e46]{font-size:25px}.el-form-item[data-v-d1607e46]{margin-bottom:0}.el-col-6[data-v-d1607e46]{padding-top:0;padding-left:0;line-height:32px}
|
|
@ -1 +0,0 @@
|
|||
.test-div i{font-size:25px}
|
|
@ -1 +0,0 @@
|
|||
.title[data-v-7c867450]{width:95%;font-size:25px;text-align:left;border-bottom:1px solid #000;margin-bottom:20px}.el-form-item[data-v-7c867450]{margin-bottom:15px}.test-div i[data-v-7c867450]{font-size:25px}
|
|
@ -1 +0,0 @@
|
|||
.title[data-v-4415e7e6]{width:95%;font-size:25px;text-align:left;border-bottom:1px solid #000;margin-bottom:20px}.test-div i[data-v-4415e7e6]{font-size:25px}[data-v-4415e7e6] .el-select{width:130px}
|
|
@ -1 +0,0 @@
|
|||
.error-code[data-v-6d985bfa]{color:#f02d2d}
|
|
@ -1 +0,0 @@
|
|||
.test-div i{font-size:25px}[data-v-78e27c9a] .el-form-item__label{text-align:left;font-size:15px}[data-v-78e27c9a] .el-form-item{margin-bottom:15px}.container[data-v-78e27c9a]{width:100%;height:100%}.container p[data-v-78e27c9a]{width:95%;font-size:25px;text-align:left;border-bottom:1px solid #000;margin-bottom:20px}
|
|
@ -1 +0,0 @@
|
|||
.el-form-item[data-v-60272bdc]{margin-bottom:15px}.test-div i[data-v-60272bdc]{font-size:25px}
|
|
@ -1 +0,0 @@
|
|||
h1[data-v-a647aa9a]{text-align:center;margin:30px 0}p[data-v-a647aa9a]{line-height:30px;margin-bottom:10px;text-indent:2em}.logout[data-v-a647aa9a]{color:#409eff}
|
|
@ -1 +0,0 @@
|
|||
.el-menu-item.is-active[data-v-453319cf]{color:#fff!important;background:#3989fa!important}.el-menu-item[data-v-453319cf],.el-submenu__title[data-v-453319cf]{height:50px!important;line-height:50px!important}[data-v-76d7e6a9] .el-menu{background:transparent;border:none}.logo[data-v-76d7e6a9]{float:left;margin-left:60px;margin-top:17.5px;height:29px;width:160px;vertical-align:middle}.sidebar[data-v-76d7e6a9]{display:block;position:absolute;left:0;top:70px;bottom:0;overflow-y:scroll}.sidebar[data-v-76d7e6a9]::-webkit-scrollbar{width:0}.sidebar-el-menu[data-v-76d7e6a9]{width:250px}.sidebar>ul[data-v-76d7e6a9]{height:100%}.el-menu-item[data-v-76d7e6a9]{font-size:14px!important}.el-menu-item.is-active[data-v-76d7e6a9]{color:#fff!important;background:#3989fa!important}.el-menu-item[data-v-76d7e6a9],.el-submenu__title[data-v-76d7e6a9]{height:50px!important;line-height:50px!important}.navMenu[data-v-76d7e6a9]{max-height:850px}.el-menu[data-v-76d7e6a9]{background-size:100%}.el-submenu__title[data-v-76d7e6a9]:hover{background-color:#3989fa!important}.aside{overflow-y:scroll;overflow-x:hidden}.aside::-webkit-scrollbar{display:none}.el-submenu__title:hover{background-color:#3989fa!important}.el-menu-item:focus,.el-menu-item:hover{outline:0;background-color:#3989fa!important}
|
|
@ -1 +0,0 @@
|
|||
.test-div i[data-v-182d8b66]{font-size:25px}.dialog .el-form-item[data-v-182d8b66]{margin-bottom:20px}
|
|
@ -1 +0,0 @@
|
|||
.statusMain[data-v-73eb1b5c]{width:100%;height:100%}.statusMain .el-descriptions[data-v-73eb1b5c]{margin-top:15px!important}
|
|
@ -1 +0,0 @@
|
|||
.title{width:95%;text-align:left;border-bottom:1px solid #000;margin-bottom:20px}.test-div i,.title{font-size:25px}.state{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.state .Badge{width:20px;height:20px;border-radius:50%;margin:20px 5px 0 0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}
|
|
@ -1 +0,0 @@
|
|||
[data-v-6ad3a79c] .el-form-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}[data-v-6ad3a79c] .el-form-item__label{text-align:left;font-size:15px}[data-v-6ad3a79c] .el-button--small{margin-left:0!important}.container[data-v-6ad3a79c]{width:100%;height:100%}.container p[data-v-6ad3a79c]{width:95%;font-size:25px;text-align:left;border-bottom:1px solid #000;margin-bottom:20px}
|
|
@ -1 +0,0 @@
|
|||
.test-div i[data-v-565e4e7a]{font-size:25px}.el-form-item[data-v-565e4e7a]{margin-bottom:0}.mar-top20[data-v-565e4e7a]{margin-top:20px}
|
|
@ -1 +0,0 @@
|
|||
.el-menu-item.is-active[data-v-453319cf]{color:#fff!important;background:#3989fa!important}.el-menu-item[data-v-453319cf],.el-submenu__title[data-v-453319cf]{height:50px!important;line-height:50px!important}[data-v-76d7e6a9] .el-menu{background:transparent;border:none}.logo[data-v-76d7e6a9]{float:left;margin-left:60px;margin-top:17.5px;height:29px;width:160px;vertical-align:middle}.sidebar[data-v-76d7e6a9]{display:block;position:absolute;left:0;top:70px;bottom:0;overflow-y:scroll}.sidebar[data-v-76d7e6a9]::-webkit-scrollbar{width:0}.sidebar-el-menu[data-v-76d7e6a9]{width:250px}.sidebar>ul[data-v-76d7e6a9]{height:100%}.el-menu-item[data-v-76d7e6a9]{font-size:14px!important}.el-menu-item.is-active[data-v-76d7e6a9]{color:#fff!important;background:#3989fa!important}.el-menu-item[data-v-76d7e6a9],.el-submenu__title[data-v-76d7e6a9]{height:50px!important;line-height:50px!important}.navMenu[data-v-76d7e6a9]{max-height:850px}.el-menu[data-v-76d7e6a9]{background-size:100%}.el-submenu__title[data-v-76d7e6a9]:hover{background-color:#3989fa!important}.aside{overflow-y:scroll;overflow-x:hidden;background:url(../../static/img/leftBg.3a3010cf.png);max-height:100%;background-size:100% 100%}.aside::-webkit-scrollbar{display:none}.el-submenu__title:hover{background-color:#3989fa!important}.el-menu-item:focus,.el-menu-item:hover{outline:0;background-color:#3989fa!important}.wrapper[data-v-5d48844f]{width:100%;height:100%;background:#f0f0f0}.logo[data-v-5d48844f]{margin-left:10px;margin-top:10px;width:80%}.header[data-v-5d48844f]{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:45px;right:0;font-size:22px;top:5px}.header .logo[data-v-5d48844f]{float:left;margin-left:60px;margin-top:17.5px;height:29px;width:160px;vertical-align:middle;position:relative}.header-right[data-v-5d48844f]{float:right;padding-right:50px}.header-user-con[data-v-5d48844f]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:45px}.user-avator[data-v-5d48844f]{margin-left:20px}.user-avator img[data-v-5d48844f]{display:block;width:30px;height:30px;border-radius:50%}.user-name[data-v-5d48844f]{margin-left:10px}.el-dropdown-link[data-v-5d48844f]{cursor:pointer}.el-dropdown-menu__item[data-v-5d48844f]{text-align:center}.el-menu.el-menu--horizontal[data-v-5d48844f]{border-bottom:none!important;float:left;margin-left:50px;background:transparent}.el-menu--horizontal>.el-menu-item.is-active[data-v-5d48844f]{font-weight:700}.el-menu--horizontal>.el-menu-item[data-v-5d48844f]{font-size:16px;margin:0 15px}
|
|
@ -1 +0,0 @@
|
|||
.time{font-size:13px;color:#999}.bot{padding:14px}.bottom{margin-top:13px;line-height:12px;margin-left:15px}.bottom,.st{display:inline-block}.st{position:absolute;right:4%}.st span{color:#999}.button{padding:0;float:right}.image{width:100%;display:block}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}.middle{width:100%;height:284px}.el-col-6{width:25%;padding-left:20px;padding-top:20px}.type{left:0;z-index:98}.del,.type{position:absolute;top:0}.del{right:0;width:25px;height:25px;z-index:9999}.card{position:relative;cursor:pointer}.name{left:7px;z-index:99}.name,.status{position:absolute;top:0}.status{left:30px;z-index:97}.statusName{position:absolute;left:13px;top:6px;z-index:99;color:#eee}.el_dialog{position:fixed;width:100%;height:100%;background-color:rgba(0,0,0,.5);margin:0;padding:0}.el_dialog,.el_dialog__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el_dialog__content{width:v-bind(width1);height:400px;background-color:#fff}#dialog .el-dialog__header{border-bottom:1px solid #eee}#dialog .el-dialog__title{font-weight:700;color:#000}.btn{position:absolute;right:10%;bottom:18%}
|
|
@ -1 +0,0 @@
|
|||
.error-code[data-v-2df7448e]{color:#2d8cf0}
|
|
@ -1 +0,0 @@
|
|||
.test-div i{font-size:25px}[data-v-19189a1c] .el-form-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}[data-v-19189a1c] .el-form-item__label{text-align:left;font-size:15px}.el-form-item[data-v-19189a1c]{margin-bottom:15px}.container[data-v-19189a1c]{width:100%;height:100%;overflow-y:scroll}.container[data-v-19189a1c]::-webkit-scrollbar{width:0}.container .title[data-v-19189a1c]{width:95%;font-size:25px;text-align:left;border-bottom:1px solid #000;margin-bottom:20px}.container .el-col-6[data-v-19189a1c]{padding-left:0;padding-top:0}
|
|
@ -1 +0,0 @@
|
|||
.test-div i{font-size:25px}
|
|
@ -1 +0,0 @@
|
|||
.test-div i{font-size:25px}
|
|
@ -1 +0,0 @@
|
|||
[data-v-6320eb1c] .el-form-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}[data-v-6320eb1c] .el-form-item__label{text-align:left;font-size:15px}.container[data-v-6320eb1c]{width:100%;height:100%}.container p[data-v-6320eb1c]{width:95%;font-size:25px;text-align:left;border-bottom:1px solid #000;margin-bottom:20px}
|
|
@ -1 +0,0 @@
|
|||
.list[data-v-18c1aa32]{padding:30px 0}.list p[data-v-18c1aa32]{margin-bottom:20px}a[data-v-18c1aa32]{color:#409eff}
|
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 197 KiB |
Before Width: | Height: | Size: 542 KiB |
Before Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 2.9 MiB |
Before Width: | Height: | Size: 30 KiB |
|
@ -1,2 +0,0 @@
|
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-03ef1325"],{"2d92":function(e,t,s){"use strict";var a=s("6515"),r=s.n(a);r.a},6515:function(e,t,s){},"914f":function(e,t,s){"use strict";s.r(t);var a=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("div",{staticClass:"login-wrap"},[s("div",{staticClass:"ms-login"},[s("div",{staticClass:"ms-title"}),s("div",{staticClass:"content"},[s("div",{staticClass:"welcome"},[e._v("欢迎登录")]),s("el-form",{ref:"login",staticClass:"ms-content",attrs:{model:e.param,rules:e.rules,"label-width":"100px","label-position":"top"}},[s("el-form-item",{attrs:{prop:"username",label:"用户名"}},[s("el-input",{attrs:{placeholder:"输入您的账号"},model:{value:e.param.username,callback:function(t){e.$set(e.param,"username",t)},expression:"param.username"}},[s("el-button",{attrs:{slot:"prepend",icon:"el-icon-user"},slot:"prepend"})],1)],1),s("el-form-item",{staticStyle:{"margin-top":"15px"},attrs:{prop:"password",label:"密码"}},[s("el-input",{attrs:{type:"password",placeholder:"请输入密码"},nativeOn:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.submitForm()}},model:{value:e.param.password,callback:function(t){e.$set(e.param,"password",t)},expression:"param.password"}},[s("el-button",{attrs:{slot:"prepend",icon:"el-icon-lock"},slot:"prepend"})],1)],1),s("div",{staticClass:"unforget",staticStyle:{"margin-left":"15px"}},[s("el-checkbox",{model:{value:e.checked,callback:function(t){e.checked=t},expression:"checked"}},[e._v("保存登录")])],1)],1),s("div",{staticClass:"login-btn"},[s("el-button",{attrs:{type:"primary"},on:{click:function(t){return e.submitForm()}}},[e._v("登录")])],1)],1)])])},r=[],n=s("b775"),o=s.n(n);function l(e){return o()({url:"/hxh/api-test/login",method:"post",data:e})}var i={name:"Login",data:function(){return{param:{username:"admin",password:"123456"},checked:!1,rules:{username:[{required:!0,message:"账号不能为空",trigger:"blur"}],password:[{required:!0,message:"密码不能为空",trigger:"blur"}]}}},created:function(){this.getType()},methods:{getType:function(){var e={telephone:"13088888888",typeCode:2};l(e).then((function(e){console.log("c",e)}))},submitForm:function(){var e=this;this.$refs.login.validate((function(t){if(!t)return e.$message.error("请输入账号和密码"),console.log("error submit!!"),!1;e.$message.success("登录成功"),localStorage.setItem("ms_username",e.param.username),e.$router.push("/")}))}}},c=i,u=(s("2d92"),s("2877")),p=Object(u["a"])(c,a,r,!1,null,"ffc21db4",null);t["default"]=p.exports},b775:function(e,t){}}]);
|
||||
//# sourceMappingURL=chunk-03ef1325.8085e8ef.js.map
|
|
@ -1,2 +0,0 @@
|
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-0a122200"],{2188:function(t,s,e){},"97e2":function(t,s,e){"use strict";var o=e("2188"),l=e.n(o);l.a},d66a:function(t,s,e){"use strict";e.r(s);var o=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"content-box"},[e("div",{staticClass:"container"},[e("p",{staticClass:"title"},[t._v("导入设置")]),e("el-upload",{ref:"upload",staticClass:"upload-demo",attrs:{action:"https://jsonplaceholder.typicode.com/posts/","file-list":t.fileList,"auto-upload":!1},on:{"on-success":t.fileSuccess,"on-error":t.fileError,"on-progress":t.fileProgress}},[e("el-button",{attrs:{slot:"trigger",size:"small",type:"primary"},slot:"trigger"},[t._v("选取文件")]),e("el-button",{staticStyle:{"margin-left":"10px"},attrs:{size:"small",type:"success"},on:{click:t.submitUpload}},[t._v("导入")])],1),t._m(0)],1)])},l=[function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"warning"},[e("i",{staticClass:"el-icon-warning",staticStyle:{color:"#409EFF",margin:"0 3px 0 10px"}}),t._v("范围1-8、默认6\n 将一个保存好的系统设置文件导入本系统。导入后将覆盖现有的所有分析和用户设置,并重启系统,未保存的数据可能会丢失,请谨慎使用.\n ")])}],i={data:function(){return{fileList:[]}},methods:{submitUpload:function(){this.$refs.upload.submit(),console.log(this.$refs.upload,"上传")},fileSuccess:function(t,s,e){console.log(t,s,e,"成功")},fileError:function(t,s,e){console.log(t,s,e,"失败")},fileProgress:function(t,s,e){console.log(t,s,e,"上传中")}}},n=i,a=(e("97e2"),e("2877")),c=Object(a["a"])(n,o,l,!1,null,null,null);s["default"]=c.exports}}]);
|
||||
//# sourceMappingURL=chunk-0a122200.4fabf56e.js.map
|
|
@ -1,2 +0,0 @@
|
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-1417f69c"],{"242b":function(t,e,a){"use strict";var s=a("2cf6"),o=a.n(s);o.a},"2cf6":function(t,e,a){},b53f:function(t,e,a){"use strict";a.r(e);var s=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"content-box"},[a("div",{staticClass:"container"},[a("p",{staticClass:"title"},[t._v("用于REAST API的ssl web服务器证书")]),a("el-form",{attrs:{model:t.form,"label-position":"left","label-width":"220px"}},[a("el-form-item",{attrs:{label:"证书颁发者名称:"}},[t._v("\n "+t._s(t.form.name1)+"\n ")]),a("el-form-item",{attrs:{label:"证书使用者名称:"}},[t._v("\n "+t._s(t.form.name2)+"\n ")]),a("el-form-item",{attrs:{label:"证书有效时间:"}},[t._v("\n "+t._s(t.form.startTime)+"\n ")]),a("el-form-item",{attrs:{label:"证书到期时间:"}},[t._v("\n "+t._s(t.form.endTime)+"\n ")]),a("el-form-item",{attrs:{label:"证书被列入黑名单:"}},[t._v("\n "+t._s(t.form.blacklist)+"\n ")]),a("el-form-item",{attrs:{label:"自签名证书:"}},[t._v("\n "+t._s(t.form.autograph)+"\n ")]),a("el-form-item",{attrs:{label:"证书版本:"}},[t._v("\n "+t._s(t.form.version)+"\n ")])],1),a("el-button",{attrs:{type:"primary"},on:{click:function(e){t.showUpdateCertificate=!0}}},[t._v("更新证书")]),a("el-dialog",{attrs:{title:"提示",visible:t.showUpdateCertificate,width:"30%"},on:{"update:visible":function(e){t.showUpdateCertificate=e}}},[a("el-row",[a("el-col",{attrs:{span:6}},[t._v("\n 文件选择:\n ")]),a("el-col",{attrs:{span:18}},[a("el-upload",{attrs:{action:"https://jsonplaceholder.typicode.com/posts/"}},[a("el-button",{attrs:{size:"small",type:"primary"}},[t._v("点击上传")])],1)],1)],1),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{attrs:{type:"primary"},on:{click:function(e){t.showUpdateCertificate=!1}}},[t._v("确 定")])],1)],1)],1)])},o=[],r={data:function(){return{form:{name1:"ParkingDetrctionCA",name2:"loc.rcesystems.cz",startTime:"2019-12-02 22::17:47",endTime:"2033-08-10 22::17:47",blacklist:"否",autograph:"否",version:"3"},showUpdateCertificate:!1}}},l=r,n=(a("242b"),a("2877")),i=Object(n["a"])(l,s,o,!1,null,"d1607e46",null);e["default"]=i.exports}}]);
|
||||
//# sourceMappingURL=chunk-1417f69c.621b7e3d.js.map
|
|
@ -1,2 +0,0 @@
|
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2126896d"],{"1eb8":function(e,t,n){"use strict";var a=n("bd10"),l=n.n(a);l.a},"61a9":function(e,t,n){"use strict";n.r(t);var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"content-box"},[n("div",{staticClass:"container"},[n("p",{staticClass:"title"},[e._v("通知/日志")]),n("el-table",{staticStyle:{width:"100%"},attrs:{data:e.tableData,height:e.tableHeight,border:""}},[n("el-table-column",{attrs:{align:"center",prop:"date",label:"通知类型",width:"180"}}),n("el-table-column",{attrs:{align:"center",prop:"name",label:"产生时机",width:"180"}}),n("el-table-column",{attrs:{align:"center",prop:"address",label:"内容"}}),n("el-table-column",{attrs:{align:"center",label:"操作",width:"160"},scopedSlots:e._u([{key:"default",fn:function(t){return[n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return e.download(t.row)}}},[e._v("下载")]),n("el-button",{staticClass:"el-icon-view",attrs:{type:"text",size:"small"},on:{click:function(n){return e.showView(t.row)}}}),n("el-button",{staticClass:"el-icon-delete",attrs:{type:"text",size:"small"},on:{click:function(n){return e.clickDelete(t.row)}}})]}}])})],1),n("el-pagination",{staticStyle:{"padding-top":"10px"},attrs:{"current-page":e.currentPage,"page-sizes":[100,200,300,400],"page-size":e.pageSize,layout:"sizes, prev, pager, next",total:e.totalNumber},on:{"size-change":e.handleSizeChange,"current-change":e.handleCurrentChange,"update:currentPage":function(t){e.currentPage=t},"update:current-page":function(t){e.currentPage=t}}}),n("el-dialog",{attrs:{title:"提示",visible:e.dialogVisible,width:"30%"},on:{"update:visible":function(t){e.dialogVisible=t}}},[n("span",[e._v("这是一段信息")])])],1)])},l=[],i={data:function(){return{tableData:[{date:"2016-05-02",name:"王小虎",address:"上海市普陀区金沙江路 1518 弄"},{date:"2016-05-04",name:"王小虎",address:"上海市普陀区金沙江路 1517 弄"},{date:"2016-05-01",name:"王小虎",address:"上海市普陀区金沙江路 1519 弄"},{date:"2016-05-03",name:"王小虎",address:"上海市普陀区金沙江路 1516 弄"}],currentPage:1,pageSize:100,totalNumber:1e3,tableHeight:0,dialogVisible:!1}},created:function(){var e=document.documentElement.clientHeight||document.body.clientHeight;this.tableHeight=e-170},methods:{download:function(e){console.log(e,"下载")},showView:function(e){console.log(e,"查看"),this.dialogVisible=!0},clickDelete:function(e){console.log(e,"删除")},handleSizeChange:function(e){console.log("每页 ".concat(e," 条"))},handleCurrentChange:function(e){console.log("当前页: ".concat(e))}}},o=i,c=(n("1eb8"),n("2877")),s=Object(c["a"])(o,a,l,!1,null,null,null);t["default"]=s.exports},bd10:function(e,t,n){}}]);
|
||||
//# sourceMappingURL=chunk-2126896d.50eadf9c.js.map
|
|
@ -1,2 +0,0 @@
|
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-25001e32"],{2024:function(t,e,o){"use strict";o.r(e);var a=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"content-box"},[o("div",{staticClass:"container"},[o("p",{staticClass:"title"},[t._v("FTP设置")]),o("el-form",{staticStyle:{width:"50%"},attrs:{model:t.form,"label-position":"left","label-width":"110px"}},[o("el-form-item",{attrs:{label:"账号:"}},[o("el-input",{attrs:{placeholder:"请输入账号名",clearable:""},model:{value:t.form.ComponentPropsname,callback:function(e){t.$set(t.form,"ComponentPropsname",e)},expression:"form.ComponentPropsname"}})],1),o("el-form-item",{attrs:{label:"密码:"}},[o("el-input",{attrs:{placeholder:"请输入密码","show-password":""},model:{value:t.form.password,callback:function(e){t.$set(t.form,"password",e)},expression:"form.password"}})],1),o("el-form-item",{attrs:{label:"FTP:"}},[o("el-input",{attrs:{placeholder:"请输入账号名",clearable:""},model:{value:t.form.FTP,callback:function(e){t.$set(t.form,"FTP",e)},expression:"form.FTP"}})],1)],1),o("el-button",{attrs:{type:"primary"},on:{cilck:t.Submit}},[t._v("修改")])],1)])},l=[],r={data:function(){return{form:{name:"",password:"",FTP:""}}},methods:{Submit:function(){this.form}}},s=r,n=(o("ae9d"),o("2877")),i=Object(n["a"])(s,a,l,!1,null,"7c867450",null);e["default"]=i.exports},ae9d:function(t,e,o){"use strict";var a=o("cb70"),l=o.n(a);l.a},cb70:function(t,e,o){}}]);
|
||||
//# sourceMappingURL=chunk-25001e32.6998196e.js.map
|
|
@ -1,2 +0,0 @@
|
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-298ee65b"],{"0ad1":function(t,r,e){"use strict";var a=e("fac8"),n=e.n(a);n.a},"7eb4":function(t,r,e){"use strict";e.r(r);var a=function(){var t=this,r=t.$createElement,e=t._self._c||r;return e("div",{staticClass:"error-page"},[t._m(0),e("div",{staticClass:"error-desc"},[t._v("啊哦~ 你没有权限访问该页面哦")]),e("div",{staticClass:"error-handle"},[e("router-link",{attrs:{to:"/"}},[e("el-button",{attrs:{type:"primary",size:"large"}},[t._v("返回首页")])],1),e("el-button",{staticClass:"error-btn",attrs:{type:"primary",size:"large"},on:{click:function(r){return t.goBack()}}},[t._v("返回上一页")])],1)])},n=[function(){var t=this,r=t.$createElement,e=t._self._c||r;return e("div",{staticClass:"error-code"},[t._v("4"),e("span",[t._v("0")]),t._v("3")])}],s={data:function(){return{}},methods:{goBack:function(){this.$router.go(-1)}}},c=s,i=(e("0ad1"),e("2877")),o=Object(i["a"])(c,a,n,!1,null,"6d985bfa",null);r["default"]=o.exports},fac8:function(t,r,e){}}]);
|
||||
//# sourceMappingURL=chunk-298ee65b.25f1344d.js.map
|
|
@ -1,2 +0,0 @@
|
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d217aeb"],{c888:function(n,u,c){"use strict";c.r(u);var e,l,a=c("2877"),o={},p=Object(a["a"])(o,e,l,!1,null,null,null);u["default"]=p.exports}}]);
|
||||
//# sourceMappingURL=chunk-2d217aeb.a5bf3762.js.map
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"sources":["webpack:///./src/views/interface.vue"],"names":["render","staticRenderFns","script","component"],"mappings":"gHAAA,WAAIA,EAAQC,EAAZ,YACIC,EAAS,GAKTC,EAAY,eACdD,EACAF,EACAC,GACA,EACA,KACA,KACA,MAIa,aAAAE,E","file":"static/js/chunk-2d217aeb.a5bf3762.js","sourcesContent":["var render, staticRenderFns\nvar script = {}\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports"],"sourceRoot":""}
|
|
@ -1,2 +0,0 @@
|
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2ffccff5"],{"299c7":function(e,t,a){},"4c20":function(e,t,a){"use strict";var n=a("7555"),l=a.n(n);l.a},"6f10":function(e,t,a){"use strict";a.r(t);var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"content-box"},[a("div",{staticClass:"container"},[a("el-form",{ref:"form",attrs:{model:e.sizeForm,"label-width":"140px"}},[a("p",[e._v("主机")]),a("el-form-item",{attrs:{label:"名称:","label-width":e.formLabelWidth}},[a("el-input",{staticStyle:{width:"50%"},attrs:{autocomplete:"off"},model:{value:e.sizeForm.name,callback:function(t){e.$set(e.sizeForm,"name",t)},expression:"sizeForm.name"}})],1),a("el-form-item",{attrs:{label:"时间:","label-width":e.formLabelWidth}},[a("el-date-picker",{staticStyle:{width:"50%"},attrs:{type:"date",placeholder:"选择日期",autocomplete:"off"},model:{value:e.sizeForm.date1,callback:function(t){e.$set(e.sizeForm,"date1",t)},expression:"sizeForm.date1"}}),a("el-button",{staticStyle:{"margin-left":"10px"},attrs:{type:"primary",size:"small"}},[e._v("自动校验")])],1),a("p",[e._v("备份&恢复")]),a("el-form-item",{attrs:{label:"备份服务器设置:"}},[a("el-col",{attrs:{span:12}},[a("el-button",{attrs:{type:"primary",size:"small"}},[e._v("备份")])],1)],1),a("el-form-item",{attrs:{label:"还原服务器设置:"}},[a("el-col",{attrs:{span:3}},[a("el-button",{attrs:{type:"primary",disabled:"",size:"small"}},[e._v("备份")])],1),a("el-col",{attrs:{span:4}},[a("el-upload",{staticClass:"upload-demo",attrs:{action:"https://jsonplaceholder.typicode.com/posts/","on-preview":e.handlePreview,"on-remove":e.handleRemove,"before-remove":e.beforeRemove,multiple:"",limit:3,"on-exceed":e.handleExceed,"file-list":e.fileList}},[a("el-button",{attrs:{size:"small",type:"primary"}},[e._v("点击上传")])],1)],1)],1),a("p",[e._v("出厂默认值")]),a("el-form-item",{attrs:{label:"还原服务器设置:"}},[a("el-col",{attrs:{span:12}},[a("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(t){return e.handleReset()}}},[e._v("重置默认值")])],1)],1),a("p",[e._v("重新启动")]),a("el-form-item",{attrs:{label:"重新启动系统:"}},[a("el-col",{attrs:{span:12}},[a("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(t){return e.handleagain()}}},[e._v("重新启动")])],1)],1)],1)],1)])},l=[],o=(a("7f7f"),{data:function(){return{formLabelWidth:"120px",sizeForm:{name:"",region:"",date1:"",date2:"",delivery:!1,type:[],resource:"",desc:""},fileList:[]}},methods:{handleagain:function(){var e=this;this.$confirm("此操作将重新启动系统, 是否继续?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){})).catch((function(){e.$message({type:"info",message:"已取消"})}))},handleReset:function(){var e=this;this.$confirm("此操作将重置默认值, 是否继续?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){})).catch((function(){e.$message({type:"info",message:"已取消重置"})}))},handleRemove:function(e,t){console.log(e,t)},handlePreview:function(e){console.log(e)},handleExceed:function(e,t){this.$message.warning("当前限制选择 3 个文件,本次选择了 ".concat(e.length," 个文件,共选择了 ").concat(e.length+t.length," 个文件"))},beforeRemove:function(e,t){return this.$confirm("确定移除 ".concat(e.name,"?"))}}}),i=o,s=(a("f1ca"),a("4c20"),a("2877")),r=Object(s["a"])(i,n,l,!1,null,"78e27c9a",null);t["default"]=r.exports},7555:function(e,t,a){},f1ca:function(e,t,a){"use strict";var n=a("299c7"),l=a.n(n);l.a}}]);
|
||||
//# sourceMappingURL=chunk-2ffccff5.d34c9262.js.map
|
|
@ -1,2 +0,0 @@
|
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-301b50ea"],{"064f":function(e,t,l){"use strict";var a=l("791d"),n=l.n(a);n.a},"791d":function(e,t,l){},b1d0:function(e,t,l){"use strict";l.r(t);var a=function(){var e=this,t=e.$createElement,l=e._self._c||t;return l("div",{staticClass:"content-box"},[l("div",{staticClass:"container"},[l("p",{staticClass:"title"},[e._v("导出设置")]),l("el-form",{attrs:{"label-position":"left","label-width":"180px"}},[l("el-form-item",{attrs:{label:"文件格式:"}},[l("el-select",{attrs:{placeholder:"请选择导出文件格式"},model:{value:e.value,callback:function(t){e.value=t},expression:"value"}},e._l(e.options,(function(e){return l("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),l("el-form-item",{attrs:{label:"文件保存位置:"}},[l("input",{attrs:{type:"file",id:"file",hidden:"",webkitdirectory:""},on:{change:e.fileChange}}),l("el-input",{staticClass:"input-with-select",attrs:{placeholder:"请输入内容"},model:{value:e.imgSavePath,callback:function(t){e.imgSavePath=t},expression:"imgSavePath"}},[l("el-button",{attrs:{slot:"append",icon:"el-icon-folder",type:"success"},on:{click:e.btnChange},slot:"append"})],1)],1)],1),l("el-button",{staticClass:"el-icon-download",attrs:{type:"primary"}},[e._v("导出")])],1)])},n=[],i={data:function(){return{options:[{value:"zip",label:"zip"},{value:"7z",label:"7z"}],value:"zip",imgSavePath:""}},methods:{fileChange:function(e){try{var t=document.getElementById("file");if(null==t)return;this.imgSavePath=t.files[0].path,console.log(t.files)}catch(l){console.debug("choice file err:",l)}},btnChange:function(){var e=document.getElementById("file");e.click()}}},o=i,s=(l("064f"),l("2877")),c=Object(s["a"])(o,a,n,!1,null,"60272bdc",null);t["default"]=c.exports}}]);
|
||||
//# sourceMappingURL=chunk-301b50ea.f5816a80.js.map
|
|
@ -1,2 +0,0 @@
|
|||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-32f17606"],{"4e1e":function(t,a,e){},"6ced":function(t,a,e){"use strict";e.r(a);var n=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",[e("div",{staticClass:"crumbs"},[e("el-breadcrumb",{attrs:{separator:"/"}},[e("el-breadcrumb-item",[e("i",{staticClass:"el-icon-warning"}),t._v(" 权限测试")])],1)],1),e("div",{staticClass:"container"},[e("h1",[t._v("管理员权限页面")]),e("p",[t._v("只有用 admin 账号登录的才拥有管理员权限,才能进到这个页面,其他账号想进来都会跳到403页面,重新用管理员账号登录才有权限。")]),e("p",[t._v("想尝试一下,请"),e("router-link",{staticClass:"logout",attrs:{to:"/Login"}},[t._v("退出登录")]),t._v(",随便输入个账号名,再进来试试看。")],1)])])},s=[],i={data:function(){return{}}},r=i,c=(e("9e70"),e("2877")),u=Object(c["a"])(r,n,s,!1,null,"a647aa9a",null);a["default"]=u.exports},"9e70":function(t,a,e){"use strict";var n=e("4e1e"),s=e.n(n);s.a}}]);
|
||||
//# sourceMappingURL=chunk-32f17606.d51df642.js.map
|