mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-18 07:16:44 +08:00
确认框样式
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
<template>
|
||||
<!--我的独立考试-->
|
||||
<div>
|
||||
<div style="display: flex; justify-content: flex-start;padding:12px 20px 10px 22px" >
|
||||
<div style="display: flex; justify-content: flex-start;padding:12px 20px 20px 22px" >
|
||||
<!--查询-->
|
||||
<div class="uc-center-page">我的考试</div>
|
||||
<div style="padding: 0px 0px">
|
||||
<el-select clearable v-model="status" placeholder="状态" style="width: 110px">
|
||||
<el-option label="未开始" :value="0"></el-option>
|
||||
@@ -11,17 +12,16 @@
|
||||
<el-option label="完成" :value="9"></el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<div style="padding-left: 10px">
|
||||
<div style="padding-left: 16px">
|
||||
<el-input v-model="testName" clearable placeholder="搜索名称"></el-input>
|
||||
</div>
|
||||
<div class="button-class" style="padding-left: 10px"><el-button type="primary" icon="el-icon-search" @click="search()">搜索</el-button></div>
|
||||
<div class="button-class" style="padding-left: 10px"><el-button type="primary" icon="el-icon-refresh-right" @click="reset()">重置</el-button></div>
|
||||
<div class="button-class" style="padding-left: 14px"><el-button type="primary" icon="el-icon-search" @click="search()">搜索</el-button></div>
|
||||
<div class="button-class" style="padding-left: 14px"><el-button type="primary" icon="el-icon-refresh-right" @click="reset()">重置</el-button></div>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
|
||||
<div v-for="(item,idx) in taskList" :key="idx" class="titem">
|
||||
<!-- <div><a :href="webBaseUrl+'/exam/test?id='+item.objId" target="_blank"> {{item.objId}}</a></div> -->
|
||||
<div class="task-info">
|
||||
<div @click="jumpRouter(item)" v-html="$keywordActiveShow(item.testName,testName)" class="task-tit one-line-ellipsis">
|
||||
</div>
|
||||
@@ -46,10 +46,6 @@
|
||||
<a v-if="item.status == 1 && 8" :href="webBaseUrl+'/exam/test?id='+item.testId" target="_blank" >
|
||||
<el-button type="primary" size="small">继续考试</el-button>
|
||||
</a>
|
||||
<!-- <a v-if="item.status == 9" :href="webBaseUrl+'/exam/test?id='+item.testId" target="_blank" >
|
||||
<el-button type="primary" size="small">回顾考试</el-button>
|
||||
</a> -->
|
||||
|
||||
<el-button type="primary" v-if="item.status == 9" size="small" @click="jumpRouter(item)">查看</el-button>
|
||||
</div>
|
||||
</div>
|
||||
@@ -65,11 +61,13 @@
|
||||
:total="total">
|
||||
</el-pagination>
|
||||
</div>
|
||||
<div v-else>
|
||||
<div v-if="taskList.length == 0">
|
||||
<div v-if="isSearh" class="zan-wu">没有查询到相关内容</div>
|
||||
<div v-else class="zan-wu">暂无数据</div>
|
||||
</div>
|
||||
<div v-else class="home-no-list">
|
||||
<img class="img" src="/images/homeWu/no-case.png" alt="" srcset="">
|
||||
<p class="text">还没有案例</p>
|
||||
<!-- <div v-if="taskList.length == 0"> -->
|
||||
<!-- <div v-if="isSearh" class="zan-wu">没有查询到相关内容</div>
|
||||
<div v-else class="zan-wu">暂无数据</div> -->
|
||||
<!-- </div> -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -166,7 +164,7 @@
|
||||
font-size: 18px;
|
||||
color: #333;
|
||||
margin-top: -3px;
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
}
|
||||
.task-text{
|
||||
color: #444;
|
||||
|
||||
Reference in New Issue
Block a user