|
|
@ -327,9 +327,10 @@ |
|
|
|
<DetailTable /> |
|
|
|
</div> |
|
|
|
<div class="progress_btn"> |
|
|
|
<p class="title"> |
|
|
|
核查进度({{ hasTestedLength }} / {{ testArrLength }}) |
|
|
|
</p> |
|
|
|
<div class="title"> |
|
|
|
<p>核查进度({{ hasTestedLength }} / {{ testArrLength }})</p> |
|
|
|
<t-button @click="continueWork">继续操作</t-button> |
|
|
|
</div> |
|
|
|
<t-progress theme="plump" :percentage="detailProcess" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -458,6 +459,15 @@ const clickLogo = () => { |
|
|
|
// taskStore.updateType(0) |
|
|
|
// getInitData() |
|
|
|
} |
|
|
|
const continueWork = () => { |
|
|
|
// 重置图片 |
|
|
|
imageStore.reset() |
|
|
|
taskStore.updateCurrentDetailTaskId(null) |
|
|
|
accountStore.changePage(0) |
|
|
|
// 需要将进行中的数据渲染 |
|
|
|
taskStore.updateType(0) |
|
|
|
getInitData() |
|
|
|
} |
|
|
|
|
|
|
|
const getInitData = async () => { |
|
|
|
// 需要得到当前list中进行中的任务数据 从而防止刷新后页面消失 |
|
|
@ -905,6 +915,8 @@ initWebSocket() |
|
|
|
font-weight: 500; |
|
|
|
letter-spacing: 0.07em; |
|
|
|
color: #3d3d3d; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
} |
|
|
|
} |
|
|
|
.history_btn { |
|
|
@ -944,18 +956,21 @@ initWebSocket() |
|
|
|
align-items: center; |
|
|
|
justify-content: space-between; |
|
|
|
.progress_btn { |
|
|
|
padding: 25px 24px 18px 24px; |
|
|
|
padding: 25px 24px 18px 0; |
|
|
|
box-sizing: border-box; |
|
|
|
border-radius: 6px; |
|
|
|
background: #ffffff; |
|
|
|
margin-left: 30px; |
|
|
|
width: 311.41px; |
|
|
|
width: 411.41px; |
|
|
|
.title { |
|
|
|
margin-bottom: 33px; |
|
|
|
font-size: 22px; |
|
|
|
font-weight: 500; |
|
|
|
letter-spacing: 0.07em; |
|
|
|
color: #3d3d3d; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: space-between; |
|
|
|
} |
|
|
|
} |
|
|
|
.table_wrap { |
|
|
|