Commit 0c42f0dd authored by xulili's avatar xulili

--

parent 2d800aca
...@@ -163,7 +163,7 @@ export default { ...@@ -163,7 +163,7 @@ export default {
left: 50%; left: 50%;
margin-top: -50%; margin-top: -50%;
margin-left: -50%; margin-left: -50%;
width:100%; width: 100%;
} }
.page-title { .page-title {
width: 100%; width: 100%;
...@@ -191,6 +191,7 @@ export default { ...@@ -191,6 +191,7 @@ export default {
.icon-pwd { .icon-pwd {
background: url("~@/assets/login/pwd.png") no-repeat center/ 100%; background: url("~@/assets/login/pwd.png") no-repeat center/ 100%;
} }
/deep/.el-form { /deep/.el-form {
width: 100%; width: 100%;
text-align: center; text-align: center;
...@@ -213,6 +214,9 @@ export default { ...@@ -213,6 +214,9 @@ export default {
padding-top: 12px; padding-top: 12px;
} }
} }
.el-form-item__error {
left: calc(50% - 160px);
}
.el-button.login { .el-button.login {
width: 320px; width: 320px;
height: 48px; height: 48px;
......
...@@ -33,7 +33,7 @@ export default { ...@@ -33,7 +33,7 @@ export default {
methods: { methods: {
getList() { getList() {
let curTime = getCurDate(); let curTime = getCurDate();
let frequencyDate = curTime.year + curTime.month; let frequencyDate = curTime.year + curTime.month + curTime.date;
this.$https({ this.$https({
method: "post", method: "post",
url: "tBoardStatistic/getInteractionFrequencyPageList?frequencyDate=" + frequencyDate, url: "tBoardStatistic/getInteractionFrequencyPageList?frequencyDate=" + frequencyDate,
......
...@@ -24,13 +24,13 @@ export default { ...@@ -24,13 +24,13 @@ export default {
}, },
components: {}, components: {},
mounted() { mounted() {
this.getList() this.getList();
}, },
methods: { methods: {
getList() { getList() {
let curTime = getCurDate(); let curTime = getCurDate();
let playDate = curTime.year + curTime.month; let playDate = curTime.year + curTime.month + curTime.date;
let _this = this let _this = this;
this.$https({ this.$https({
method: "post", method: "post",
url: "tBoardStatistic/getBoardTrendPageList?playDate=" + playDate, url: "tBoardStatistic/getBoardTrendPageList?playDate=" + playDate,
......
...@@ -49,7 +49,7 @@ export default { ...@@ -49,7 +49,7 @@ export default {
_this.$https({ _this.$https({
method: "post", method: "post",
url: url:
"tBoardStatistic/getInteractionFrequencyPageList?frequencyDate=" + "tBoardStatistic/getInteractionPageList?frequencyDate=" +
frequencyDate, frequencyDate,
authType: this.backToken, authType: this.backToken,
}) })
......
...@@ -77,7 +77,7 @@ export default { ...@@ -77,7 +77,7 @@ export default {
.$https({ .$https({
method: "post", method: "post",
url: url:
"tBoardStatistic/getInteractionFrequencyPageList?frequencyDate=" + "tBoardStatistic/getBoardPageList?frequencyDate=" +
frequencyDate, frequencyDate,
authType: this.backToken, authType: this.backToken,
}) })
......
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