This commit is contained in:
parent
147c830917
commit
efd3a500e6
|
@ -50,6 +50,7 @@
|
|||
<img :src="lampImages[data.character.zt]" @click="escalation" />
|
||||
<div class="lampBox" v-if="clicked">
|
||||
<div class="lampTitle">确定要上报吗?</div>
|
||||
<div class="lampMessage">注:工作日早上8:30,自动推送</div>
|
||||
<div class="lampBtn">
|
||||
<div class="confirm" @click="confirmEvent()">上报</div>
|
||||
<div class="cancel" @click="cancelEvent()">取消</div>
|
||||
|
@ -145,6 +146,7 @@ import lamp8 from "../../assets/sy-table/lampRed3.png";
|
|||
import lamp9 from "../../assets/sy-table/lampYellow3.png";
|
||||
import { ElMessage } from "element-plus";
|
||||
import http from "@/utils/request.js";
|
||||
import { reRendering } from "element-plus/es/components/watermark/src/utils.mjs";
|
||||
const router = useRouter();
|
||||
const routers = useRoute();
|
||||
|
||||
|
@ -204,6 +206,7 @@ const escalation = () => {
|
|||
}
|
||||
console.log(clicked.value);
|
||||
};
|
||||
|
||||
const confirmEvent = () => {
|
||||
console.log("confirm!", data.character);
|
||||
let ReportedDto = {
|
||||
|
@ -363,7 +366,7 @@ const handle = (current) => {
|
|||
.lampTitle {
|
||||
text-align: center;
|
||||
// padding-top: 33px;
|
||||
margin: 33px 0 30px 0;
|
||||
margin: 28px 0 10px 0;
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
font-family: PingFangSC, PingFang SC;
|
||||
|
@ -371,6 +374,17 @@ const handle = (current) => {
|
|||
line-height: 22px;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
.lampMessage {
|
||||
text-align: center;
|
||||
// padding-top: 33px;
|
||||
margin: 10px 0 14px 0;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
font-family: PingFangSC, PingFang SC;
|
||||
color: red;
|
||||
line-height: 22px;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
.lampBtn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
|
@ -136,7 +136,7 @@
|
|||
class="progress-bar"
|
||||
:style="{ width: item.progress + '%' }"
|
||||
>
|
||||
<span>{{ item.progress }}%</span>
|
||||
<!-- <span>{{ item.progress }}%</span> -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue