Commit 628ba4a5 authored by 吴冠's avatar 吴冠

ti

parent 2e706508
...@@ -228,6 +228,7 @@ export default { ...@@ -228,6 +228,7 @@ export default {
border: 1px solid rgba(219, 219, 219, 1); border: 1px solid rgba(219, 219, 219, 1);
min-height: 6.8rem; min-height: 6.8rem;
width: 9.2rem; width: 9.2rem;
/* margin-bottom: 200px; */
} }
.message > ul > li { .message > ul > li {
......
...@@ -154,9 +154,11 @@ import Cookies from 'js-cookie' ...@@ -154,9 +154,11 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours() + ':';
var mm = date.getMinutes();
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day; var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D; return Y + M + D + " " +hh + mm;
}, },
async getErrorList(params){ async getErrorList(params){
const {data,total} = await getErrorList(params) const {data,total} = await getErrorList(params)
......
...@@ -80,7 +80,7 @@ import Cookies from 'js-cookie' ...@@ -80,7 +80,7 @@ import Cookies from 'js-cookie'
let mes ={ let mes ={
currentPage:1, currentPage:1,
size:10, size:10,
title:inputContent /* title:inputContent */
} }
if(inputContent){ if(inputContent){
mes.title = inputContent mes.title = inputContent
...@@ -90,6 +90,8 @@ import Cookies from 'js-cookie' ...@@ -90,6 +90,8 @@ import Cookies from 'js-cookie'
} }
Cookies.remove("details") Cookies.remove("details")
Cookies.remove("currentPage") Cookies.remove("currentPage")
Cookies.remove("inputContent")
Cookies.remove("contentStatus")
const res = await industryList(); const res = await industryList();
const {data,total} = await getAllList(mes) const {data,total} = await getAllList(mes)
console.log(data+'------------') console.log(data+'------------')
...@@ -190,9 +192,11 @@ import Cookies from 'js-cookie' ...@@ -190,9 +192,11 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours() + ':';
var mm = date.getMinutes();
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day; var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D; return Y + M + D + " " +hh + mm;
}, },
async getAllList(params){ async getAllList(params){
const {data,total} = await getAllList(params) const {data,total} = await getAllList(params)
......
...@@ -140,9 +140,11 @@ import Cookies from 'js-cookie' ...@@ -140,9 +140,11 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours() + ':';
var mm = date.getMinutes();
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day; var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D; return Y + M + D + " " +hh + mm;
}, },
timeChange(e){ timeChange(e){
this.getData.beginDate = e[0].getTime() this.getData.beginDate = e[0].getTime()
......
...@@ -198,9 +198,11 @@ export default { ...@@ -198,9 +198,11 @@ export default {
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours() + ':';
var mm = date.getMinutes();
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day; var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D; return Y + M + D + " " +hh + mm;
}, },
reset(){ reset(){
this.getData.industryId = '' this.getData.industryId = ''
......
...@@ -156,9 +156,11 @@ import Cookies from 'js-cookie' ...@@ -156,9 +156,11 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours() + ':';
var mm = date.getMinutes();
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day; var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D; return Y + M + D + " " +hh + mm;
}, },
async getCadidateList(params){ async getCadidateList(params){
const {data,total} = await getCadidateList(params) const {data,total} = await getCadidateList(params)
......
...@@ -156,9 +156,11 @@ import Cookies from 'js-cookie' ...@@ -156,9 +156,11 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours() + ':';
var mm = date.getMinutes();
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day; var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D; return Y + M + D + " " +hh + mm;
}, },
async getChangeList(params){ async getChangeList(params){
const {data,total} = await getChangeList(params) const {data,total} = await getChangeList(params)
......
...@@ -154,9 +154,11 @@ import Cookies from 'js-cookie' ...@@ -154,9 +154,11 @@ import Cookies from 'js-cookie'
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours() + ':';
var mm = date.getMinutes();
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day; var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D; return Y + M + D + " " +hh + mm;
}, },
async getClerList(params){ async getClerList(params){
const {data,total} = await getClerList(params) const {data,total} = await getClerList(params)
......
...@@ -189,9 +189,11 @@ export default { ...@@ -189,9 +189,11 @@ export default {
var Month = date.getMonth() + 1; var Month = date.getMonth() + 1;
var Day = date.getDate(); var Day = date.getDate();
var Y = date.getFullYear() + '-'; var Y = date.getFullYear() + '-';
var hh = date.getHours() + ':';
var mm = date.getMinutes();
var M = Month < 10 ? '0' + Month + '-' : Month + '-'; var M = Month < 10 ? '0' + Month + '-' : Month + '-';
var D = Day + 1 < 10 ? '0' + Day : Day; var D = Day + 1 < 10 ? '0' + Day : Day;
return Y + M + D; return Y + M + D + " " +hh + mm;
}, },
testChange(e) { testChange(e) {
......
...@@ -319,7 +319,7 @@ ...@@ -319,7 +319,7 @@
.login_a{ .login_a{
cursor: pointer; cursor: pointer;
} }
.pos{ /* .pos{
margin-left: 0px; margin-left: 0px;
} } */
</style> </style>
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