| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- <template>
- <div class="cp-container" v-if="panelVisible">
- <div class="cp-title">
- <span class="back" @click="back"></span>
- <span class="title" v-if="isTeacher">问卷调查作业</span>
- <span class="title" v-else>问卷调查作业-{{ sStudent.student }}</span>
- <span class="btn" v-if="type == 1" @click="addPz(type)">提交</span>
- </div>
- <div class="cp-box">
- <div class="cp-quest">标题:{{ askJson.askTitle }}</div>
- <div class="cp-conent" v-if="type == 1">
- <div v-for="(item, index) in askJson.askCount" :key="index" class="askBox">
- <div class="askTitle">
- {{ index + 1 + '、' }}
- <div>题目:{{ askJson.askJson[index].askstitle }}</div>
- </div>
- <img v-if="askJson.askJson[index].img" :src="askJson.askJson[index].img" />
- <div class="askBody">
- <el-radio-group
- v-model="radio[index]"
- v-if="askJson.askJson[index].type == '1' || !askJson.askJson[index].type"
- >
- <el-radio
- v-for="(item1, checkIndex) in askJson.askJson[index].checkList"
- :key="checkIndex"
- :label="checkIndex"
- class="redioStyle"
- ><span v-html="item1"></span
- ></el-radio>
- </el-radio-group>
- <el-checkbox-group v-model="radio[index]" v-if="askJson.askJson[index].type == '2'">
- <el-checkbox
- v-for="(item1, checkIndex) in askJson.askJson[index].checkList"
- :key="checkIndex"
- :label="checkIndex"
- class="redioStyle"
- ><span v-html="item1"></span>
- </el-checkbox>
- </el-checkbox-group>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { addCourseWorks, addCourseWorksTeacher } from '@/api/course'
- import { mapGetters } from 'vuex'
- export default {
- props: {
- panelVisible: {
- type: Boolean
- },
- courseid: {
- type: String,
- default: ''
- },
- courseType: {
- type: Number,
- default: 0
- },
- taskCount: {
- type: Number,
- default: 0
- },
- toolindex: {
- type: Number
- },
- isTeacher: {
- type: Boolean
- },
- askJson: {
- type: Object
- },
- sStudent: {
- type: Object
- }
- },
- components: {},
- data() {
- return {
- type: 1,
- message: '',
- imgList: [],
- radio: [],
- askList: []
- }
- },
- computed: {
- ...mapGetters(['userinfo'])
- },
- mounted() {
- for (var k = 0; k < this.askJson.askJson.length; k++) {
- if (this.askJson.askJson[k].type == '2') {
- this.radio.push([])
- } else {
- this.radio.push('')
- }
- }
- },
- methods: {
- back() {
- this.$emit('setAskPanelVisible', false)
- },
- setType(type) {
- this.type = type
- },
- getImage(imgList) {
- this.imgList = imgList
- this.$forceUpdate()
- },
- addPz() {
- if (!this.radio.length) {
- this.$message.error('请选择选项')
- return
- }
- for (var i = 0; i < this.askJson.askCount; i++) {
- if ((this.radio[i] instanceof Array && !this.radio[i].length) || (this.radio[i] !== 0 && !this.radio[i])) {
- this.$message.error('请选择选项')
- return
- }
- }
- const fun = [addCourseWorks, addCourseWorksTeacher]
- const askList = [
- {
- askJson: this.askJson,
- anwer: this.radio
- }
- ]
- let params = []
- if (this.isTeacher) {
- params = [
- {
- uid: this.userinfo.userid,
- cid: this.courseid,
- stage: this.courseType,
- task: this.taskCount,
- tool: this.toolindex,
- content: JSON.stringify(askList).replaceAll(/%/g, '%25'),
- type: 2
- }
- ]
- } else {
- params = [
- {
- uid: this.sStudent.userid,
- cid: this.courseid,
- stage: this.courseType,
- task: this.taskCount,
- tool: this.toolindex,
- content: JSON.stringify(askList),
- type: 2,
- ateacher: this.userinfo.userid
- }
- ]
- }
- fun[this.isTeacher ? 0 : 1](params)
- .then(res => {
- this.$toast({
- message: '上传成功',
- type: 'success'
- })
- this.$emit('setAskPanelVisible', false)
- })
- .catch(err => {
- console.error(err)
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .cp-container {
- width: 100vw;
- height: 100vh;
- position: fixed;
- top: 0;
- left: 0;
- background: #fff;
- z-index: 2;
- .cp-title {
- height: 1.5rem;
- width: 100%;
- border-bottom: 1px solid #cecece;
- display: flex;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- position: relative;
- .back {
- width: 0.3rem;
- height: 0.3rem;
- border-top: 2px solid #000000;
- border-left: 2px solid #000000;
- position: absolute;
- transform: rotate(-45deg) translateY(-50%);
- top: 47%;
- left: 0.8rem;
- cursor: pointer;
- }
- .title {
- font-size: 16px;
- }
- .btn {
- font-size: 14px;
- transform: translateY(-50%);
- top: 50%;
- right: 0.8rem;
- position: absolute;
- color: #2274ff;
- cursor: pointer;
- }
- }
- .cp-box {
- width: 100%;
- height: calc(100% - 1.5rem);
- overflow: auto;
- .type-nav {
- height: 60px;
- width: 100%;
- display: flex;
- align-items: center;
- padding: 10px 0.3rem;
- box-sizing: border-box;
- .type-nav-box {
- height: 100%;
- opacity: 0.5;
- transition: all 0.5s;
- + .type-nav-box {
- margin-left: 0.3rem;
- }
- &.active {
- opacity: 1;
- }
- > img {
- height: 100%;
- }
- }
- }
- .cp-quest {
- width: 100%;
- padding: 10px 15px;
- font-size: 18px;
- word-break: break-all;
- box-sizing: border-box;
- }
- .cp-conent {
- // margin-top: 10px;
- height: auto;
- overflow: auto;
- font-size: 14px;
- width: 100%;
- /deep/ .van-field__control {
- // height: auto !important;
- }
- .askBox {
- padding: 0.26667rem 0.4rem;
- .askTitle {
- display: flex;
- }
- .askBody {
- margin-top: 10px;
- /deep/.redioStyle {
- margin-bottom: 10px;
- }
- }
- }
- }
- .cp-audio {
- height: calc(100% - 60px);
- position: relative;
- width: 100%;
- }
- }
- }
- </style>
|