|
@@ -57,7 +57,7 @@
|
|
|
<!-- 上下按钮 -->
|
|
<!-- 上下按钮 -->
|
|
|
<view class="score-bottom-box" v-if="activeSt">
|
|
<view class="score-bottom-box" v-if="activeSt">
|
|
|
<view @click="handleOpenCard" class="score-num-box">
|
|
<view @click="handleOpenCard" class="score-num-box">
|
|
|
- <icon class="score-num-icon"></icon>
|
|
|
|
|
|
|
+ <icon class="score-num-icon" :style="{ backgroundImage: 'url(' + data.imgsArr.shitiNumIcon + ')' }"></icon>
|
|
|
<text class="active-num" @click="handleOpenCard"><i></i>
|
|
<text class="active-num" @click="handleOpenCard"><i></i>
|
|
|
{{activeSt && activeSt.onlyNum||0}}/{{data.StListForSearch.length}}</text>
|
|
{{activeSt && activeSt.onlyNum||0}}/{{data.StListForSearch.length}}</text>
|
|
|
</view>
|
|
</view>
|
|
@@ -94,6 +94,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
|
|
|
+ import cacheManager from '@/utils/cacheManager.js';
|
|
|
import topCard from "@/components/score/topCard.vue"
|
|
import topCard from "@/components/score/topCard.vue"
|
|
|
import danxuan from "@/components/questions/danxuan.vue";
|
|
import danxuan from "@/components/questions/danxuan.vue";
|
|
|
import duoxuan from "@/components/questions/duoxuan.vue";
|
|
import duoxuan from "@/components/questions/duoxuan.vue";
|
|
@@ -133,6 +134,9 @@
|
|
|
ksScore: 0,
|
|
ksScore: 0,
|
|
|
StListForSearch: [],
|
|
StListForSearch: [],
|
|
|
duanluo: [],
|
|
duanluo: [],
|
|
|
|
|
+ imgsArr: {
|
|
|
|
|
+ shitiNumIcon: '',
|
|
|
|
|
+ },
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
const questionData = ref([]);
|
|
const questionData = ref([]);
|
|
@@ -252,6 +256,7 @@
|
|
|
|
|
|
|
|
onLoad((options) => {
|
|
onLoad((options) => {
|
|
|
hisId.value = options.hisId;
|
|
hisId.value = options.hisId;
|
|
|
|
|
+ data.imgsArr.shitiNumIcon = cacheManager.get('projectImg').shiti_num_icon;
|
|
|
initPage()
|
|
initPage()
|
|
|
})
|
|
})
|
|
|
|
|
|