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

提交

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