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

ti

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