mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/student-h5.git
synced 2025-12-13 12:56:46 +08:00
fix:测评未选择时间时展示问题
This commit is contained in:
@@ -27,7 +27,7 @@ import { GET_USER_INFO } from "@/api/ThirdApi";
|
|||||||
import { getCookie } from "@/api/utils";
|
import { getCookie } from "@/api/utils";
|
||||||
|
|
||||||
import { USER_INFO } from "@/api/api";
|
import { USER_INFO } from "@/api/api";
|
||||||
console.log("版本2.3.1------------");
|
console.log("版本2.3.2------------");
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<div class="contenttitle">
|
<div class="contenttitle">
|
||||||
<img class="timeimg" src="../../assets/image/ballotpage/time.png" />
|
<img class="timeimg" src="../../assets/image/ballotpage/time.png" />
|
||||||
<div class="timee">
|
<div class="timee">
|
||||||
{{ data?.evaluationStartTime + " 至 " + data?.evaluationEndTime }}
|
{{ (data?.evaluationStartTime&&data.evaluationStartTime!==null?data.evaluationStartTime:'-') + " 至 " + (data?.evaluationEndTime&&data.evaluationEndTime!==null?data.evaluationEndTime:'-') }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="timebox">
|
<div class="timebox">
|
||||||
|
|||||||
Reference in New Issue
Block a user