Commit a2684d8c authored by 罗超's avatar 罗超

1

parent 5852cafc
......@@ -59,9 +59,9 @@
>
<view class="flex questionTitle">
<view
>{{ index2 + 1 }}、({{ item2.QuestionName }},{{
item2.SubScore
}})</view
>{{ index2 + 1 }}、({{
item2.QuestionName.slice(0, 2)
}})</view
>
<view v-html="item2.SubTitle"></view>
</view>
......@@ -141,7 +141,7 @@
<view class="chooseNum">{{ index3 + 1 }} </view>
<template v-if="isOperate">
<input
v-for="cItem in item2.SubAnwser"
v-for="cItem in item2.SubAnwser"
type="text"
v-model="cItem.Content"
class="chooseName chooseName2"
......@@ -151,7 +151,7 @@
</template>
<template v-else>
<view
v-for="cItem in item2.SubAnwser"
v-for="cItem in item2.SubAnwser"
class="viewAnswerContent"
v-html="cItem.Content"
></view>
......@@ -482,6 +482,7 @@ export default {
.viewAnswerContent {
width: 100%;
min-height: 44rpx;
border-bottom: 1px solid #d1d1d1;
padding-bottom: 5px;
}
......
......@@ -183,6 +183,7 @@ export default {
TotalPoint: 0,
Sex: userinfo.StuSex + 1,
StuBirth: userinfo.StuBirth,
EduStudentId: userinfo.Id,
},
list: [
{ name: "在线支付", Id: 1, disabled: false },
......
......@@ -376,7 +376,7 @@ import Dataquestion from "../../components/subject/Dataquestion.vue";
import SortingProblem from "../../components/subject/SortingProblem.vue";
import Connect from "../../components/subject/Connect.vue"; //"连线题"
import SharingChoose from "../../components/subject/SharingChoose.vue";
import answer from "../../components/subject/answer.vue"; //答题卡
import answer from "../../components/subject/answerSee.vue"; //答题卡
import examNotice from "../../components/subject/examNotice.vue"; //考前须知
export default {
components: {
......
//请求教育接口
let host = ''
if (process.env.NODE_ENV === "development") {
host = 'http://192.168.20.17:8017/api'
// host = 'http://192.168.20.24:8300/api'
// host = 'http://192.168.20.17:8017/api'
host = 'http://192.168.20.24:8300/api'
} else {
host = 'https://eduapi.oytour.com/api'
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment