|
|
|
@ -135,13 +135,13 @@
|
|
|
|
|
<div style="display: flex;align-items: center;cursor: pointer;" @click="goInfo(1,scope.row)">
|
|
|
|
|
<img src="@/assets/images/icon-ck@2x.png" alt="" style="width: 20px;margin-right: 5px;">
|
|
|
|
|
<span class="look-info"
|
|
|
|
|
style="color: #1485EF;margin-right: 15px;">查看</span>
|
|
|
|
|
style="color: #1485EF;">查看</span>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- v-if="scope.row.taskStatus == 1" -->
|
|
|
|
|
<div v-if="($route.query.pageType == 'info' || $route.meta.pageType == 'info') && scope.row.status != 3&& scope.row.status != 5&&scope.row.status != 1" style="display: flex;align-items: center;cursor: pointer;" @click="goInfo(2,scope.row)">
|
|
|
|
|
<div v-if="($route.query.pageType == 'info' || $route.meta.pageType == 'info') && scope.row.status != 3&& scope.row.status != 5&&scope.row.status != 1" style="display: flex;align-items: center;cursor: pointer;margin-left: 10px;" @click="goInfo(2,scope.row)">
|
|
|
|
|
<img src="@/assets/images/icon-shenhe@2x.png" alt="" style="width: 15px;margin-right: 5px;">
|
|
|
|
|
<span class="del-info"
|
|
|
|
|
style="color: #1485EF;margin-right: 15px;">核查</span>
|
|
|
|
|
style="color: #1485EF;">核查</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
@ -374,15 +374,15 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 屏幕尺寸变化
|
|
|
|
|
cancalDebounce() {
|
|
|
|
|
// const element = document.getElementById('L-size-main'); // 通过元素的 ID 获取元素
|
|
|
|
|
// const header = document.getElementById('L-header'); // 通过元素的 ID 获取元素
|
|
|
|
|
// const tab = document.getElementById('L-tab'); // 通过元素的 ID 获取元素
|
|
|
|
|
// const pagination = document.getElementById('L-pagination'); // 通过元素的 ID 获取元素
|
|
|
|
|
// const elementHeight = element.offsetHeight;
|
|
|
|
|
// const headerHeight = header.offsetHeight;
|
|
|
|
|
// const paginationtHeight = pagination.offsetHeight;
|
|
|
|
|
// const tabHeight = tab.offsetHeight;
|
|
|
|
|
// this.tabHeader = elementHeight - headerHeight - paginationtHeight - tabHeight - 120;
|
|
|
|
|
const element = document.getElementById('L-size-main'); // 通过元素的 ID 获取元素
|
|
|
|
|
const header = document.getElementById('L-header'); // 通过元素的 ID 获取元素
|
|
|
|
|
const tab = document.getElementById('L-tab'); // 通过元素的 ID 获取元素
|
|
|
|
|
const pagination = document.getElementById('L-pagination'); // 通过元素的 ID 获取元素
|
|
|
|
|
const elementHeight = element.offsetHeight;
|
|
|
|
|
const headerHeight = header.offsetHeight;
|
|
|
|
|
const paginationtHeight = pagination.offsetHeight;
|
|
|
|
|
const tabHeight = tab.offsetHeight;
|
|
|
|
|
this.tabHeader = elementHeight - headerHeight - paginationtHeight - tabHeight - 120;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
beforeRouteEnter(to,from,next){
|
|
|
|
|