语法错误修改
This commit is contained in:
@@ -1,32 +1,30 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-box">
|
<div class="app-box">
|
||||||
<div class="con-box">
|
<div class="con-box">
|
||||||
<template #headContent>
|
<view class="collection-search">
|
||||||
<view class="collection-search">
|
<view class="search-content">
|
||||||
<view class="search-content">
|
<view class="header-input button-click">
|
||||||
<view class="header-input button-click">
|
<uni-icons class="iconsearch" color="#6A6A6A" type="search" size="22"></uni-icons>
|
||||||
<uni-icons class="iconsearch" color="#6A6A6A" type="search" size="22"></uni-icons>
|
<input
|
||||||
<input
|
class="input"
|
||||||
class="input"
|
v-model="searchKeyword"
|
||||||
v-model="searchKeyword"
|
@confirm="searchVideo"
|
||||||
@confirm="searchVideo"
|
placeholder="输入考试名称"
|
||||||
placeholder="输入考试名称"
|
placeholder-class="inputplace"
|
||||||
placeholder-class="inputplace"
|
/>
|
||||||
/>
|
<uni-icons
|
||||||
<uni-icons
|
v-if="searchKeyword"
|
||||||
v-if="searchKeyword"
|
class="clear-icon"
|
||||||
class="clear-icon"
|
type="clear"
|
||||||
type="clear"
|
size="24"
|
||||||
size="24"
|
color="#999"
|
||||||
color="#999"
|
@click="clearSearch"
|
||||||
@click="clearSearch"
|
/>
|
||||||
/>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
<scroll-view scroll-y class="main-scroll" @scrolltolower="handleScrollToLower">
|
<scroll-view scroll-y class="main-scroll" @scrolltolower="handleScrollToLower">
|
||||||
<div class="cards" v-for="(item,index) in dataList">
|
<div class="cards" v-for="(item,index) in dataList" :key="item.examPaperId">
|
||||||
<div class="cardHead">
|
<div class="cardHead">
|
||||||
<div class="cardHeadLeft">
|
<div class="cardHeadLeft">
|
||||||
<div class="cardTitle">{{item.name}}</div>
|
<div class="cardTitle">{{item.name}}</div>
|
||||||
@@ -45,7 +43,7 @@
|
|||||||
<div class="conten">考试时长:{{item.timeLimit}}分钟</div>
|
<div class="conten">考试时长:{{item.timeLimit}}分钟</div>
|
||||||
<div class="conten">题目数量:{{item.totalQuestions}}题</div>
|
<div class="conten">题目数量:{{item.totalQuestions}}题</div>
|
||||||
<div class="conten">分类:
|
<div class="conten">分类:
|
||||||
<span v-for="(val, key) in classification">
|
<span v-for="val in classification" :key="val.dictValue">
|
||||||
<template v-if="item.category==val.dictValue">{{ val.dictLabel }}</template>
|
<template v-if="item.category==val.dictValue">{{ val.dictLabel }}</template>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,44 +1,42 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-box">
|
<div class="app-box">
|
||||||
<div class="con-box">
|
<div class="con-box">
|
||||||
<template #headContent>
|
<view class="collection-search">
|
||||||
<view class="collection-search">
|
<view class="search-content">
|
||||||
<view class="search-content">
|
<view class="header-input button-click">
|
||||||
<view class="header-input button-click">
|
<uni-icons class="iconsearch" color="#6A6A6A" type="search" size="22"></uni-icons>
|
||||||
<uni-icons class="iconsearch" color="#6A6A6A" type="search" size="22"></uni-icons>
|
<input
|
||||||
<input
|
class="input"
|
||||||
class="input"
|
v-model="searchKeyword"
|
||||||
v-model="searchKeyword"
|
@confirm="searchVideo"
|
||||||
@confirm="searchVideo"
|
placeholder="输入题目关键词"
|
||||||
placeholder="输入题目关键词"
|
placeholder-class="inputplace"
|
||||||
placeholder-class="inputplace"
|
/>
|
||||||
/>
|
<uni-icons
|
||||||
<uni-icons
|
v-if="searchKeyword"
|
||||||
v-if="searchKeyword"
|
class="clear-icon"
|
||||||
class="clear-icon"
|
type="clear"
|
||||||
type="clear"
|
size="24"
|
||||||
size="24"
|
color="#999"
|
||||||
color="#999"
|
@click="clearSearch"
|
||||||
@click="clearSearch"
|
/>
|
||||||
/>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
<view>
|
||||||
<view>
|
<checkbox-group>
|
||||||
<checkbox-group>
|
<label>
|
||||||
<label>
|
<checkbox :value="checkeds" :checked="checkeds" @click="selects()" />全选
|
||||||
<checkbox :value="checkeds" :checked="checkeds" @click="selects()" />全选
|
</label>
|
||||||
</label>
|
</checkbox-group>
|
||||||
</checkbox-group>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
<div class="serchBtns">
|
||||||
<div class="serchBtns">
|
<div class="btn" @click="startPractice" style="background-color: #4B9FF5;">开始练习</div>
|
||||||
<div class="btn" @click="startPractice" style="background-color: #4B9FF5;">开始练习</div>
|
<div class="btn" @click="batchMark" style="background-color: #FF9F51;">批量标记</div>
|
||||||
<div class="btn" @click="batchMark" style="background-color: #FF9F51;">批量标记</div>
|
<div class="btn" @click="clearNotebook" style="background-color: #F1705F;">清空错题本</div>
|
||||||
<div class="btn" @click="clearNotebook" style="background-color: #F1705F;">清空错题本</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<scroll-view scroll-y class="main-scroll" @scrolltolower="handleScrollToLower">
|
<scroll-view scroll-y class="main-scroll" @scrolltolower="handleScrollToLower">
|
||||||
<div class="cards" v-for="(item,index) in dataList">
|
<div class="cards" v-for="(item,index) in dataList" :key="item.questionId">
|
||||||
<div class="choices">
|
<div class="choices">
|
||||||
<checkbox-group>
|
<checkbox-group>
|
||||||
<label>
|
<label>
|
||||||
|
|||||||
Reference in New Issue
Block a user