Commit 2df16650 authored by 王晓旭's avatar 王晓旭

提交模块

parent c265c85a
<template>
<div class="h-full w-full flex flex-col">
<div class="total-info">
<span class="mr-[30px]">评价次数:{{ total ?? 0 }}</span>
<span class="mr-[30px]" v-if="isShow">评价次数{{ total || 0 }}</span>
<span>统计时间段:{{ time[0] }} - {{ time[1] }}</span>
</div>
<div class="reportforms-out-box">
......@@ -45,6 +45,14 @@ export default {
"evaluationRecordReport"
);
},
isShow(){
let val = this.$route.path
if ((val=='/home/dataManagement/evaluationRecordReport/windowLeft')||(val=='/home/dataManagement/evaluationRecordReport/staffLeft')) {
return false
}else{
return true
}
}
},
mounted() {},
methods: {
......
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