|
@@ -42,7 +42,7 @@
|
|
|
<button class="phone-green-btn bj-btn" hover-class="none" type="default" size="mini"
|
|
<button class="phone-green-btn bj-btn" hover-class="none" type="default" size="mini"
|
|
|
@click="handleBiaoji">{{activeSt && activeSt.marked ? '取标':'标记'}}</button>
|
|
@click="handleBiaoji">{{activeSt && activeSt.marked ? '取标':'标记'}}</button>
|
|
|
<view @click="showAnswerCard" class="shiti-num-box">
|
|
<view @click="showAnswerCard" class="shiti-num-box">
|
|
|
- <icon class="shiti-num-icon"></icon>
|
|
|
|
|
|
|
+ <icon class="shiti-num-icon" :style="{ backgroundImage: 'url(' + data.imgsArr.shitiNumIcon + ')' }"></icon>
|
|
|
<text
|
|
<text
|
|
|
class="active-num">{{activeSt ? activeSt.onlyNum: 0}}</text>/<text>{{data.StListForSearch.length}}</text>
|
|
class="active-num">{{activeSt ? activeSt.onlyNum: 0}}</text>/<text>{{data.StListForSearch.length}}</text>
|
|
|
</view>
|
|
</view>
|
|
@@ -81,6 +81,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
|
|
|
+ import cacheManager from '@/utils/cacheManager.js';
|
|
|
import {ref,reactive,computed,watch,nextTick} from "vue";
|
|
import {ref,reactive,computed,watch,nextTick} from "vue";
|
|
|
import customNavbarVue from "@/components/custom-navbar/custom-navbar.vue";
|
|
import customNavbarVue from "@/components/custom-navbar/custom-navbar.vue";
|
|
|
import answerQueren from "@/components/zhuapaiConfirm/answerQueren.vue";
|
|
import answerQueren from "@/components/zhuapaiConfirm/answerQueren.vue";
|
|
@@ -110,6 +111,7 @@
|
|
|
data.lxId = option.lxId;
|
|
data.lxId = option.lxId;
|
|
|
data.zhuapai = option.zhuapai;
|
|
data.zhuapai = option.zhuapai;
|
|
|
data.from = option.from;
|
|
data.from = option.from;
|
|
|
|
|
+ data.imgsArr.shitiNumIcon = cacheManager.get('projectImg').shiti_num_icon;
|
|
|
initKaoshi();
|
|
initKaoshi();
|
|
|
})
|
|
})
|
|
|
|
|
|
|
@@ -137,7 +139,10 @@
|
|
|
duanluo: [],
|
|
duanluo: [],
|
|
|
StListForSearch: [],
|
|
StListForSearch: [],
|
|
|
from: '',
|
|
from: '',
|
|
|
- hisId: null
|
|
|
|
|
|
|
+ hisId: null,
|
|
|
|
|
+ imgsArr: {
|
|
|
|
|
+ shitiNumIcon: '',
|
|
|
|
|
+ },
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
const markDB = ref([]);
|
|
const markDB = ref([]);
|