xiangpei
2024-07-09 8a968bcc9d96c6ac88c6ec85b27be63ae40aef36
src/views/exam/question/components/Show.vue
@@ -1,6 +1,6 @@
<template>
  <div style="line-height:1.8">
    <div v-if="qType==1" v-loading="qLoading">
    <div v-if="qType==1 || qType == 6" v-loading="qLoading">
      <div class="q-title" v-html="question.title"/>
      <div class="q-content">
          <span :key="item.id" v-for="item in question.items" class="q-item-contain">
@@ -29,7 +29,7 @@
    <div v-else-if="qType==4" v-loading="qLoading">
      <div class="q-title" v-html="question.title"/>
    </div>
    <div v-else-if="qType==5" v-loading="qLoading">
    <div v-else-if="qType==5 || qType == 7 || qType == 8" v-loading="qLoading">
      <div class="q-title" v-html="question.title"/>
    </div>
    <div v-else>
@@ -60,3 +60,8 @@
  methods: {}
}
</script>
<style scoped>
  /deep/ td {
    background-color: #f0f0f0;
  }
</style>