Commit 70b17ef5 authored by 姬鋆屾's avatar 姬鋆屾

提交

parent fee608c5
...@@ -194,7 +194,6 @@ export default { ...@@ -194,7 +194,6 @@ export default {
}, },
methods: { methods: {
submitFresh() { submitFresh() {
console.log(this.freshDate);
if (this.freshDate) { if (this.freshDate) {
this.submitLoad = true; this.submitLoad = true;
this.$post("/attendance/record/hik/addAttendanceHikRecordCustom", { this.$post("/attendance/record/hik/addAttendanceHikRecordCustom", {
...@@ -203,6 +202,7 @@ export default { ...@@ -203,6 +202,7 @@ export default {
}) })
.then((res) => { .then((res) => {
if (res.code == 1) { if (res.code == 1) {
this.getData();
this.$message.success(res.msg); this.$message.success(res.msg);
this.dialogOpen = false; this.dialogOpen = false;
this.btnFreshLoading = false; this.btnFreshLoading = false;
......
...@@ -20,8 +20,13 @@ ...@@ -20,8 +20,13 @@
<div class="user-right"> <div class="user-right">
<!-- <div class="n">{{ form.otherScore }}</div> <!-- <div class="n">{{ form.otherScore }}</div>
<div class="m">{{ form.month }}月自评绩效得分</div> --> <div class="m">{{ form.month }}月自评绩效得分</div> -->
<div class="n" style="margin-top: 10px;">{{ form.totalScore }}</div> <div class="n" style="margin-top: 10px;color: #409eff;">
{{ form.totalScore }}
</div>
<div class="m">{{ form.month }}月得分</div> <div class="m">{{ form.month }}月得分</div>
<div class="m" style="color: #aaa;">
绩效分数更新时间:{{ momentVal(form.updateTime) }}
</div>
</div> </div>
</div> </div>
<div class="dialog_box" v-if="pageInfo.type == 'view'"> <div class="dialog_box" v-if="pageInfo.type == 'view'">
...@@ -49,6 +54,9 @@ ...@@ -49,6 +54,9 @@
}}{{ util_formatter("subMethod", item.subMethod) }}</span }}{{ util_formatter("subMethod", item.subMethod) }}</span
> >
</div> </div>
<div class="user-info" v-if="item.performType == 'attend'">
<span class="user-i">异常时间:{{ momentVal(item.remark) }}</span>
</div>
<div class="user-info"> <div class="user-info">
<span class="user-i" <span class="user-i"
>核查时间:{{ momentVal(item.updateTime) }}</span >核查时间:{{ momentVal(item.updateTime) }}</span
......
...@@ -20,6 +20,14 @@ ...@@ -20,6 +20,14 @@
:loading="btnFreshLoading" :loading="btnFreshLoading"
>手动更新</el-button >手动更新</el-button
> >
<span class="freshTime" slot="table-head-left2">
<i class="el-icon-refresh"></i>
<span
>上次同步时间:{{
tableData.dict.summaryTime ? tableData.dict.summaryTime : "--"
}}</span
>
</span>
</LayoutTable> </LayoutTable>
<dialog-show ref="dialogform" @ok="getData" /> <dialog-show ref="dialogform" @ok="getData" />
...@@ -636,4 +644,8 @@ export default { ...@@ -636,4 +644,8 @@ export default {
overflow: hidden; overflow: hidden;
top: -50px; top: -50px;
} }
.freshTime {
color: #999;
font-size: 14px;
}
</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