登录时间添加

dhy
吕天方 2 years ago
parent 456b728f2d
commit c5436954ec

@ -15,7 +15,7 @@
src: url('http://www.jichuanglanhai.com/demo/font-file/Alibaba-PuHuiTi-Regular.otf'); src: url('http://www.jichuanglanhai.com/demo/font-file/Alibaba-PuHuiTi-Regular.otf');
} }
@font-face { @font-face {
font-family: 'Source Han Sans CN-Regula'; font-family: 'Source Han Sans CN-Regular';
src: url('./SourceHanSansCN-Regular.otf'); src: url('./SourceHanSansCN-Regular.otf');
} }
@font-face { @font-face {

@ -4,7 +4,7 @@
* @Author: JC9527 * @Author: JC9527
* @Date: 2023-08-15 13:08:32 * @Date: 2023-08-15 13:08:32
* @LastEditors: JC9527 * @LastEditors: JC9527
* @LastEditTime: 2023-08-16 17:04:48 * @LastEditTime: 2023-08-18 20:42:21
--> -->
<template> <template>
<div class="map-middle"> <div class="map-middle">
@ -182,7 +182,7 @@ export default {
.el-input__inner::placeholder { .el-input__inner::placeholder {
/* 在这里添加你想要修改的 placeholder 样式 */ /* 在这里添加你想要修改的 placeholder 样式 */
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 20px; line-height: 20px;
@ -213,7 +213,7 @@ export default {
cursor: pointer; cursor: pointer;
span { span {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 20px; line-height: 20px;
@ -262,7 +262,7 @@ export default {
align-items: center; align-items: center;
span { span {
font-size: 16px; font-size: 16px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN; font-family: 'Source Han Sans CN-Bold';
font-weight: 700; font-weight: 700;
color: #FFFFFF; color: #FFFFFF;
line-height: 26px; line-height: 26px;
@ -281,7 +281,7 @@ export default {
text-align: center; text-align: center;
padding: 10px 33px; padding: 10px 33px;
font-size: 16px; font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
cursor: pointer; cursor: pointer;

@ -4,7 +4,7 @@
* @Author: JC9527 * @Author: JC9527
* @Date: 2023-08-15 09:44:13 * @Date: 2023-08-15 09:44:13
* @LastEditors: JC9527 * @LastEditors: JC9527
* @LastEditTime: 2023-08-18 12:05:14 * @LastEditTime: 2023-08-18 20:42:47
--> -->
<template> <template>
<div class="left-box"> <div class="left-box">
@ -200,7 +200,7 @@ export default {
.list-text { .list-text {
font-size: 15px; font-size: 15px;
height: 38px; height: 38px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 22px; line-height: 22px;
@ -219,7 +219,7 @@ export default {
} }
.list-num { .list-num {
font-size: 32px; font-size: 32px;
font-family: D-DIN-Regular, D-DIN; font-family: 'D-DIN';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 35px; line-height: 35px;

@ -4,13 +4,14 @@
* @Author: JC9527 * @Author: JC9527
* @Date: 2023-08-14 14:40:02 * @Date: 2023-08-14 14:40:02
* @LastEditors: JC9527 * @LastEditors: JC9527
* @LastEditTime: 2023-08-18 18:43:00 * @LastEditTime: 2023-08-18 20:37:07
--> -->
<template> <template>
<div class="pc-container"> <div class="pc-container">
<div class="system-header"> <div class="system-header">
<div class="left-tags"> <div class="left-tags">
<div class="new-time">{{ newTime }}</div> <div class="new-time">{{ newTime }}</div>
<div class="new-time">{{ time }}</div>
<div class="new-work">{{ currentWork }}</div> <div class="new-work">{{ currentWork }}</div>
</div> </div>
<div class="system-title" text="城市精细化管理监测主题"> <div class="system-title" text="城市精细化管理监测主题">
@ -48,6 +49,7 @@ export default {
input:'', input:'',
leftAnimation:true, leftAnimation:true,
rightAnimation:true, rightAnimation:true,
time:''
} }
}, },
created() { created() {
@ -77,7 +79,7 @@ export default {
this.rightAnimation = !this.rightAnimation this.rightAnimation = !this.rightAnimation
}, },
}, },
components:{myMap} components:{myMap},
// computed: { // computed: {
// routerList() { // routerList() {
// let staticRouter = myRouter.options.routes.filter( // let staticRouter = myRouter.options.routes.filter(
@ -86,6 +88,18 @@ export default {
// return staticRouter // return staticRouter
// }, // },
// }, // },
mounted(){
let time = new Date(Date.now());
// let time = new Date(Date.now());
// time.toTimeString();
this.time =
time.toLocaleDateString().replace(/\//g, "-") +
" " +
time.toTimeString().substr(0, 8);
this.time = this.time.split(' ')[1]
console.log(this.time)
}
} }
</script> </script>
@ -204,21 +218,22 @@ div {
width: 630px; width: 630px;
z-index: 600; z-index: 600;
align-items: flex-start; align-items: flex-start;
// align-items: center;
// flex-direction: row-reverse; // flex-direction: row-reverse;
// justify-content: center; // justify-content: center;
box-sizing: border-box; box-sizing: border-box;
padding: 10px 0 0 8px; padding: 10px 0 0 8px;
.new-time { .new-time {
padding: 28px 0 0 10px; padding: 32px 0 0 10px;
font-size: 22px; font-size: 18px;
font-family: 'YouSheBiaoTiHei'; font-family: 'D-DIN';
font-weight: 400; font-weight: 400;
color: #9ae6ff; color: #D3EEF2;
} }
.new-work { .new-work {
padding: 28px 0 0 10px; padding: 28px 0 0 10px;
font-size: 18px; font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #D3EEF2; color: #D3EEF2;
line-height: 26px; line-height: 26px;

@ -895,7 +895,7 @@ export default {
.el-input__inner::placeholder { .el-input__inner::placeholder {
/* 在这里添加你想要修改的 placeholder 样式 */ /* 在这里添加你想要修改的 placeholder 样式 */
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 20px; line-height: 20px;
@ -925,7 +925,7 @@ export default {
cursor: pointer; cursor: pointer;
span { span {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 20px; line-height: 20px;
@ -979,7 +979,7 @@ export default {
align-items: center; align-items: center;
span { span {
font-size: 16px; font-size: 16px;
font-family: Source Han Sans CN-Bold; font-family: 'Source Han Sans CN-Bold';
font-weight: 700; font-weight: 700;
color: #FFFFFF; color: #FFFFFF;
line-height: 26px; line-height: 26px;
@ -1008,7 +1008,7 @@ export default {
background-size: 100% 100%; background-size: 100% 100%;
padding: 10px 33px; padding: 10px 33px;
font-size: 16px; font-size: 16px;
font-family: Source Han Sans CN-Regular; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
line-height: 20px; line-height: 20px;
color: #D3EEF2; color: #D3EEF2;

@ -80,7 +80,7 @@ export default {
} }
.name,.position { .name,.position {
font-size: 12px; font-size: 12px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #E9F4FF; color: #E9F4FF;
line-height: 17px; line-height: 17px;
@ -97,7 +97,7 @@ export default {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 20px; line-height: 20px;

@ -4,7 +4,7 @@
* @Author: JC9527 * @Author: JC9527
* @Date: 2023-08-17 09:04:40 * @Date: 2023-08-17 09:04:40
* @LastEditors: JC9527 * @LastEditors: JC9527
* @LastEditTime: 2023-08-18 09:10:01 * @LastEditTime: 2023-08-18 20:45:06
--> -->
<template> <template>
<dia-log ref="dialog2" width="475px" title="人员指派"> <dia-log ref="dialog2" width="475px" title="人员指派">
@ -128,13 +128,13 @@ export default {
} }
.content { .content {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #CCCCCC; color: #CCCCCC;
line-height: 20px; line-height: 20px;
span { span {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #E9F4FF; color: #E9F4FF;
line-height: 20px; line-height: 20px;
@ -157,7 +157,7 @@ export default {
} }
.content { .content {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #CCCCCC; color: #CCCCCC;
line-height: 20px; line-height: 20px;
@ -181,7 +181,7 @@ export default {
width: 100%; width: 100%;
height: 35px; height: 35px;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #E9F4FF; color: #E9F4FF;
padding-left: 12px; padding-left: 12px;
@ -189,7 +189,7 @@ export default {
.el-input__inner::placeholder { .el-input__inner::placeholder {
/* 在这里添加你想要修改的 placeholder 样式 */ /* 在这里添加你想要修改的 placeholder 样式 */
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
-webkit-background-clip: text; -webkit-background-clip: text;
@ -222,14 +222,14 @@ export default {
width: 100%; width: 100%;
height: 35px; height: 35px;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #E9F4FF; color: #E9F4FF;
} }
.el-input__inner::placeholder { .el-input__inner::placeholder {
/* 在这里添加你想要修改的 placeholder 样式 */ /* 在这里添加你想要修改的 placeholder 样式 */
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
-webkit-background-clip: text; -webkit-background-clip: text;
@ -261,7 +261,7 @@ export default {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 20px; line-height: 20px;

@ -4,7 +4,7 @@
* @Author: JC9527 * @Author: JC9527
* @Date: 2023-08-16 14:19:37 * @Date: 2023-08-16 14:19:37
* @LastEditors: JC9527 * @LastEditors: JC9527
* @LastEditTime: 2023-08-18 14:04:13 * @LastEditTime: 2023-08-18 20:46:22
--> -->
<template> <template>
<el-dialog <el-dialog
@ -89,7 +89,7 @@ export default {
height: 38px; height: 38px;
.headlinetitle { .headlinetitle {
font-size: 20px; font-size: 20px;
font-family: YouSheBiaoTiHei-Bold, YouSheBiaoTiHei; font-family: 'YouSheBiaoTiHei';
font-weight: 400; font-weight: 400;
// line-height: 26px; // line-height: 26px;
color: #FFFFFF; color: #FFFFFF;

@ -93,7 +93,7 @@ export default {
} }
.name,.position { .name,.position {
font-size: 12px; font-size: 12px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #E9F4FF; color: #E9F4FF;
line-height: 17px; line-height: 17px;
@ -115,7 +115,7 @@ export default {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 20px; line-height: 20px;

@ -99,7 +99,7 @@ export default {
padding: 0 20px; padding: 0 20px;
div { div {
font-size: 16px; font-size: 16px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN; font-family: 'Source Han Sans CN-Bold';
font-weight: 700; font-weight: 700;
color: #D3EEF2; color: #D3EEF2;
line-height: 23px; line-height: 23px;
@ -115,7 +115,7 @@ export default {
flex: 1; flex: 1;
padding-left: 24px; padding-left: 24px;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN--Bold, Source Han Sans CN-; font-family: 'Source Han Sans CN-Bold';
font-weight: bold; font-weight: bold;
color: #D3EEF2; color: #D3EEF2;
} }
@ -133,7 +133,7 @@ export default {
.list-title { .list-title {
flex: 1; flex: 1;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 20px; line-height: 20px;
@ -144,7 +144,7 @@ export default {
display: flex; display: flex;
align-items: center; align-items: center;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #52B1FF; color: #52B1FF;
.real-time-location { .real-time-location {

@ -78,7 +78,7 @@ export default {
height: 33px; height: 33px;
div { div {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN--Bold, Source Han Sans CN-; font-family: 'Source Han Sans CN-Bold';
font-weight: bold; font-weight: bold;
color: #D3EEF2; color: #D3EEF2;
line-height: 21px; line-height: 21px;
@ -102,7 +102,7 @@ export default {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN--Regular, Source Han Sans CN-; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 21px; line-height: 21px;
@ -110,7 +110,7 @@ export default {
&:nth-child(1) { &:nth-child(1) {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN--Regular, Source Han Sans CN-; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #52B1FF; color: #52B1FF;
line-height: 21px; line-height: 21px;

@ -90,7 +90,7 @@ export default {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 20px; line-height: 20px;

@ -4,7 +4,7 @@
* @Author: JC9527 * @Author: JC9527
* @Date: 2023-08-17 15:43:51 * @Date: 2023-08-17 15:43:51
* @LastEditors: JC9527 * @LastEditors: JC9527
* @LastEditTime: 2023-08-17 21:27:22 * @LastEditTime: 2023-08-18 20:50:21
--> -->
<template> <template>
<div class="person-popup" :style="pointLocation"> <div class="person-popup" :style="pointLocation">
@ -84,7 +84,7 @@ export default {
justify-content: space-between; justify-content: space-between;
.title { .title {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN; font-family: 'Source Han Sans CN-Bold';
font-weight: 700; font-weight: 700;
color: #E9F4FF; color: #E9F4FF;
line-height: 19px; line-height: 19px;
@ -120,7 +120,7 @@ export default {
} }
.name,.position { .name,.position {
font-size: 12px; font-size: 12px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #E9F4FF; color: #E9F4FF;
line-height: 14px; line-height: 14px;
@ -141,7 +141,7 @@ export default {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
line-height: 20px; line-height: 20px;

@ -142,7 +142,7 @@ export default {
} }
span { span {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #E9F4FF; color: #E9F4FF;
line-height: 14px; line-height: 14px;
@ -172,13 +172,13 @@ export default {
} }
.content { .content {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #CCCCCC; color: #CCCCCC;
line-height: 20px; line-height: 20px;
span { span {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #E9F4FF; color: #E9F4FF;
line-height: 20px; line-height: 20px;
@ -208,7 +208,7 @@ export default {
display: flex; display: flex;
align-items: center; align-items: center;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #CCCCCC; color: #CCCCCC;
line-height: 20px; line-height: 20px;
@ -240,14 +240,14 @@ export default {
width: 100%; width: 100%;
height: 35px; height: 35px;
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #E9F4FF; color: #E9F4FF;
} }
.el-input__inner::placeholder { .el-input__inner::placeholder {
/* 在这里添加你想要修改的 placeholder 样式 */ /* 在这里添加你想要修改的 placeholder 样式 */
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #D3EEF2; color: #D3EEF2;
-webkit-background-clip: text; -webkit-background-clip: text;
@ -277,7 +277,7 @@ export default {
} }
span { span {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: 'Source Han Sans CN-Regular';
font-weight: 400; font-weight: 400;
color: #FFFFFF; color: #FFFFFF;
line-height: 20px; line-height: 20px;
@ -307,7 +307,7 @@ export default {
} }
.contentTitle { .contentTitle {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN; font-family: 'Source Han Sans CN-Medium';
font-weight: 500; font-weight: 500;
color: #CCCCCC; color: #CCCCCC;
line-height: 20px; line-height: 20px;

@ -53,7 +53,7 @@ export default {
justify-content: space-between; justify-content: space-between;
.title { .title {
font-size: 14px; font-size: 14px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN; font-family: 'Source Han Sans CN-Bold';
font-weight: 700; font-weight: 700;
color: #E9F4FF; color: #E9F4FF;
line-height: 19px; line-height: 19px;

Loading…
Cancel
Save