语法错误修改
This commit is contained in:
@@ -1,44 +1,42 @@
|
||||
<template>
|
||||
<div class="app-box">
|
||||
<div class="con-box">
|
||||
<template #headContent>
|
||||
<view class="collection-search">
|
||||
<view class="search-content">
|
||||
<view class="header-input button-click">
|
||||
<uni-icons class="iconsearch" color="#6A6A6A" type="search" size="22"></uni-icons>
|
||||
<input
|
||||
class="input"
|
||||
v-model="searchKeyword"
|
||||
@confirm="searchVideo"
|
||||
placeholder="输入题目关键词"
|
||||
placeholder-class="inputplace"
|
||||
/>
|
||||
<uni-icons
|
||||
v-if="searchKeyword"
|
||||
class="clear-icon"
|
||||
type="clear"
|
||||
size="24"
|
||||
color="#999"
|
||||
@click="clearSearch"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
<view>
|
||||
<checkbox-group>
|
||||
<label>
|
||||
<checkbox :value="checkeds" :checked="checkeds" @click="selects()" />全选
|
||||
</label>
|
||||
</checkbox-group>
|
||||
</view>
|
||||
</view>
|
||||
<div class="serchBtns">
|
||||
<div class="btn" @click="startPractice" style="background-color: #4B9FF5;">开始练习</div>
|
||||
<div class="btn" @click="batchMark" style="background-color: #FF9F51;">批量标记</div>
|
||||
<div class="btn" @click="clearNotebook" style="background-color: #F1705F;">清空错题本</div>
|
||||
</div>
|
||||
</template>
|
||||
<view class="collection-search">
|
||||
<view class="search-content">
|
||||
<view class="header-input button-click">
|
||||
<uni-icons class="iconsearch" color="#6A6A6A" type="search" size="22"></uni-icons>
|
||||
<input
|
||||
class="input"
|
||||
v-model="searchKeyword"
|
||||
@confirm="searchVideo"
|
||||
placeholder="输入题目关键词"
|
||||
placeholder-class="inputplace"
|
||||
/>
|
||||
<uni-icons
|
||||
v-if="searchKeyword"
|
||||
class="clear-icon"
|
||||
type="clear"
|
||||
size="24"
|
||||
color="#999"
|
||||
@click="clearSearch"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
<view>
|
||||
<checkbox-group>
|
||||
<label>
|
||||
<checkbox :value="checkeds" :checked="checkeds" @click="selects()" />全选
|
||||
</label>
|
||||
</checkbox-group>
|
||||
</view>
|
||||
</view>
|
||||
<div class="serchBtns">
|
||||
<div class="btn" @click="startPractice" style="background-color: #4B9FF5;">开始练习</div>
|
||||
<div class="btn" @click="batchMark" style="background-color: #FF9F51;">批量标记</div>
|
||||
<div class="btn" @click="clearNotebook" style="background-color: #F1705F;">清空错题本</div>
|
||||
</div>
|
||||
<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">
|
||||
<checkbox-group>
|
||||
<label>
|
||||
@@ -582,4 +580,4 @@ function removeFromNotebook(id,i) {
|
||||
width: 2px;
|
||||
background-color: #C3E1FF;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user