|
|
@ -6,11 +6,7 @@ |
|
|
|
<li> |
|
|
|
<li> |
|
|
|
<label>题目类型</label> |
|
|
|
<label>题目类型</label> |
|
|
|
<el-radio-group v-model="subject" @change="initData"> |
|
|
|
<el-radio-group v-model="subject" @change="initData"> |
|
|
|
<el-radio |
|
|
|
<el-radio v-for="(item, index) in subjectList" :key="index" :label="item.id">{{ item.name }} |
|
|
|
v-for="(item,index) in subjectList" |
|
|
|
|
|
|
|
:key="index" |
|
|
|
|
|
|
|
:label="item.id" |
|
|
|
|
|
|
|
>{{ item.name }} |
|
|
|
|
|
|
|
</el-radio> |
|
|
|
</el-radio> |
|
|
|
</el-radio-group> |
|
|
|
</el-radio-group> |
|
|
|
</li> |
|
|
|
</li> |
|
|
@ -26,13 +22,11 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<el-table :data="listData" ref="table" row-key="id" class="table" stripe header-align="center" |
|
|
|
<el-table :data="listData" ref="table" row-key="id" class="table" header-align="center" |
|
|
|
@selection-change="handleSelectionChange"> |
|
|
|
@selection-change="handleSelectionChange"> |
|
|
|
<el-table-column type="selection" width="55" align="center" :reserve-selection="true"></el-table-column> |
|
|
|
<el-table-column type="selection" width="55" align="center" :reserve-selection="true"></el-table-column> |
|
|
|
<el-table-column type="index" width="100" label="序号" align="center"> |
|
|
|
<el-table-column type="index" width="100" label="序号" align="center"> |
|
|
|
<template |
|
|
|
<template slot-scope="scope">{{ scope.$index + (page - 1) * pageSize + 1 }} |
|
|
|
slot-scope="scope" |
|
|
|
|
|
|
|
>{{ scope.$index + (page - 1) * pageSize + 1 }} |
|
|
|
|
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="questionStem" label="题干" align="center"></el-table-column> |
|
|
|
<el-table-column prop="questionStem" label="题干" align="center"></el-table-column> |
|
|
@ -46,15 +40,9 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button v-auth type="text" @click="showQues(scope.row)">查看</el-button> |
|
|
|
<el-button v-auth type="text" @click="showQues(scope.row)">查看</el-button> |
|
|
|
<el-button v-auth type="text" @click="editQues(scope.row)">编辑</el-button> |
|
|
|
<el-button v-auth type="text" @click="editQues(scope.row)">编辑</el-button> |
|
|
|
<el-switch |
|
|
|
<el-switch v-auth="'禁用'" v-model="scope.row.isEnable" :active-text="!scope.row.isEnable ? '禁用' : '启用'" |
|
|
|
v-auth="'禁用'" |
|
|
|
:active-value="1" :inactive-value="0" style="margin: 0 10px;" |
|
|
|
v-model="scope.row.isEnable" |
|
|
|
@change="switchQues($event, scope.row, scope.$index)"></el-switch> |
|
|
|
:active-text="!scope.row.isEnable ? '禁用' : '启用'" |
|
|
|
|
|
|
|
:active-value="1" |
|
|
|
|
|
|
|
:inactive-value="0" |
|
|
|
|
|
|
|
style="margin: 0 10px;" |
|
|
|
|
|
|
|
@change="switchQues($event,scope.row,scope.$index)" |
|
|
|
|
|
|
|
></el-switch> |
|
|
|
|
|
|
|
<el-button v-auth type="text" @click="delData(scope.row)">删除</el-button> |
|
|
|
<el-button v-auth type="text" @click="delData(scope.row)">删除</el-button> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
@ -72,7 +60,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<!-- 随机 --> |
|
|
|
<!-- 随机 --> |
|
|
|
<el-card shadow="hover" class="card_m" v-show="info.evaluationType==1"> |
|
|
|
<el-card shadow="hover" class="card_m" v-show="info.evaluationType == 1"> |
|
|
|
<div class="input flex_around"> |
|
|
|
<div class="input flex_around"> |
|
|
|
<span>测评题目总数</span> |
|
|
|
<span>测评题目总数</span> |
|
|
|
<el-input placeholder="请输入题目数量" type="number" v-model="info.questionNum"></el-input> |
|
|
|
<el-input placeholder="请输入题目数量" type="number" v-model="info.questionNum"></el-input> |
|
|
@ -80,23 +68,23 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</el-card> |
|
|
|
</el-card> |
|
|
|
<!-- 自定义 --> |
|
|
|
<!-- 自定义 --> |
|
|
|
<el-card shadow="hover" class="card_m" v-show="info.evaluationType==0"> |
|
|
|
<el-card shadow="hover" class="card_m" v-show="info.evaluationType == 0"> |
|
|
|
<div class="input"> |
|
|
|
<div class="input"> |
|
|
|
<div class="check-wrap" :class="{checked: info.isSingleEnable}"> |
|
|
|
<div class="check-wrap" :class="{ checked: info.isSingleEnable }"> |
|
|
|
<el-checkbox v-model="info.isSingleEnable">单选题</el-checkbox> |
|
|
|
<el-checkbox v-model="info.isSingleEnable">单选题</el-checkbox> |
|
|
|
<el-input placeholder="请输入题目数量" type="number" v-model="info.singleNum" |
|
|
|
<el-input placeholder="请输入题目数量" type="number" v-model="info.singleNum" |
|
|
|
:disabled="!info.isSingleEnable"></el-input> |
|
|
|
:disabled="!info.isSingleEnable"></el-input> |
|
|
|
<span>(总数{{ info.totalSingleNum }}题)</span> |
|
|
|
<span>(总数{{ info.totalSingleNum }}题)</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div class="check-wrap" :class="{checked: info.isMultipleEnable}"> |
|
|
|
<div class="check-wrap" :class="{ checked: info.isMultipleEnable }"> |
|
|
|
<el-checkbox v-model="info.isMultipleEnable">多选题</el-checkbox> |
|
|
|
<el-checkbox v-model="info.isMultipleEnable">多选题</el-checkbox> |
|
|
|
<el-input placeholder="请输入题目数量" type="number" v-model="info.multipleNum" |
|
|
|
<el-input placeholder="请输入题目数量" type="number" v-model="info.multipleNum" |
|
|
|
:disabled="!info.isMultipleEnable"></el-input> |
|
|
|
:disabled="!info.isMultipleEnable"></el-input> |
|
|
|
<span>(总数{{ info.totalMultipleNum }}题)</span> |
|
|
|
<span>(总数{{ info.totalMultipleNum }}题)</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div class="check-wrap" :class="{checked: info.isJudgmentEnable}"> |
|
|
|
<div class="check-wrap" :class="{ checked: info.isJudgmentEnable }"> |
|
|
|
<el-checkbox v-model="info.isJudgmentEnable">判断题</el-checkbox> |
|
|
|
<el-checkbox v-model="info.isJudgmentEnable">判断题</el-checkbox> |
|
|
|
<el-input placeholder="请输入题目数量" type="number" v-model="info.judgmentNum" |
|
|
|
<el-input placeholder="请输入题目数量" type="number" v-model="info.judgmentNum" |
|
|
|
:disabled="!info.isJudgmentEnable"></el-input> |
|
|
|
:disabled="!info.isJudgmentEnable"></el-input> |
|
|
@ -120,14 +108,8 @@ |
|
|
|
|
|
|
|
|
|
|
|
<el-dialog :title="topicsTitle" :visible.sync="NewTopics" width="30%" @close="closeTopics" |
|
|
|
<el-dialog :title="topicsTitle" :visible.sync="NewTopics" width="30%" @close="closeTopics" |
|
|
|
:close-on-click-modal="false"> |
|
|
|
:close-on-click-modal="false"> |
|
|
|
<el-form |
|
|
|
<el-form :model="topicForm" :rules="rules" :disabled="isShowTopics" ref="topicForm" label-width="70px" |
|
|
|
:model="topicForm" |
|
|
|
class="demo-topicForm"> |
|
|
|
:rules="rules" |
|
|
|
|
|
|
|
:disabled="isShowTopics" |
|
|
|
|
|
|
|
ref="topicForm" |
|
|
|
|
|
|
|
label-width="70px" |
|
|
|
|
|
|
|
class="demo-topicForm" |
|
|
|
|
|
|
|
> |
|
|
|
|
|
|
|
<el-form-item label="题型" prop="questionType"> |
|
|
|
<el-form-item label="题型" prop="questionType"> |
|
|
|
<el-radio-group v-model="topicForm.questionType" @change="questionTypeChange"> |
|
|
|
<el-radio-group v-model="topicForm.questionType" @change="questionTypeChange"> |
|
|
|
<el-radio label="单选题"></el-radio> |
|
|
|
<el-radio label="单选题"></el-radio> |
|
|
@ -183,9 +165,8 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</el-dialog> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
|
|
<el-dialog title="批量上传" :visible.sync="BatchUpload" width="30%" @close="closeUpload" |
|
|
|
<el-dialog title="批量上传" :visible.sync="BatchUpload" width="30%" @close="closeUpload" :close-on-click-modal="false"> |
|
|
|
:close-on-click-modal="false"> |
|
|
|
<el-card shadow="hover" class="card_m" v-show="this.label = 1"> |
|
|
|
<el-card shadow="hover" class="card_m" v-show="this.label=1"> |
|
|
|
|
|
|
|
<div class="Upload"> |
|
|
|
<div class="Upload"> |
|
|
|
<div class="bt" @click="downloadTem"> |
|
|
|
<div class="bt" @click="downloadTem"> |
|
|
|
<el-link :underline="false"> |
|
|
|
<el-link :underline="false"> |
|
|
@ -194,19 +175,9 @@ |
|
|
|
</el-link> |
|
|
|
</el-link> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
<el-upload |
|
|
|
<el-upload name="file" accept=".xls,.xlsx" :on-remove="handleDataRemove" :on-error="uploadError" |
|
|
|
name="file" |
|
|
|
:on-success="uploadSuccess" :before-remove="beforeRemove" :limit="1" :on-exceed="handleExceed" |
|
|
|
accept=".xls,.xlsx" |
|
|
|
:action="questionsImport" :file-list="uploadDataList" :headers="headers"> |
|
|
|
:on-remove="handleDataRemove" |
|
|
|
|
|
|
|
:on-error="uploadError" |
|
|
|
|
|
|
|
:on-success="uploadSuccess" |
|
|
|
|
|
|
|
:before-remove="beforeRemove" |
|
|
|
|
|
|
|
:limit="1" |
|
|
|
|
|
|
|
:on-exceed="handleExceed" |
|
|
|
|
|
|
|
:action="questionsImport" |
|
|
|
|
|
|
|
:file-list="uploadDataList" |
|
|
|
|
|
|
|
:headers="headers" |
|
|
|
|
|
|
|
> |
|
|
|
|
|
|
|
<el-link :underline="false"> |
|
|
|
<el-link :underline="false"> |
|
|
|
2.请点击批量导入 |
|
|
|
2.请点击批量导入 |
|
|
|
<i class="el-icon-upload"></i> |
|
|
|
<i class="el-icon-upload"></i> |
|
|
@ -227,7 +198,7 @@ |
|
|
|
import util from "@/libs/util"; |
|
|
|
import util from "@/libs/util"; |
|
|
|
import Setting from "@/setting"; |
|
|
|
import Setting from "@/setting"; |
|
|
|
export default { |
|
|
|
export default { |
|
|
|
data() { |
|
|
|
data () { |
|
|
|
return { |
|
|
|
return { |
|
|
|
headers: { |
|
|
|
headers: { |
|
|
|
token: util.local.get(Setting.tokenKey) |
|
|
|
token: util.local.get(Setting.tokenKey) |
|
|
@ -304,11 +275,11 @@ export default { |
|
|
|
submiting: false // 新增编辑防抖标识 |
|
|
|
submiting: false // 新增编辑防抖标识 |
|
|
|
}; |
|
|
|
}; |
|
|
|
}, |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
mounted () { |
|
|
|
this.getData(); |
|
|
|
this.getData(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
watch: { |
|
|
|
watch: { |
|
|
|
keyword: function(val) { |
|
|
|
keyword: function (val) { |
|
|
|
clearTimeout(this.searchTimer); |
|
|
|
clearTimeout(this.searchTimer); |
|
|
|
this.searchTimer = setTimeout(() => { |
|
|
|
this.searchTimer = setTimeout(() => { |
|
|
|
this.initData(); |
|
|
|
this.initData(); |
|
|
@ -316,7 +287,7 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
getData() { |
|
|
|
getData () { |
|
|
|
this.$post(this.api.questionsList, { |
|
|
|
this.$post(this.api.questionsList, { |
|
|
|
pageNum: this.page, |
|
|
|
pageNum: this.page, |
|
|
|
pageSize: this.pageSize, |
|
|
|
pageSize: this.pageSize, |
|
|
@ -331,12 +302,12 @@ export default { |
|
|
|
console.log(err); |
|
|
|
console.log(err); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
initData() { |
|
|
|
initData () { |
|
|
|
this.page = 1; |
|
|
|
this.page = 1; |
|
|
|
this.getData(); |
|
|
|
this.getData(); |
|
|
|
this.$refs.table.clearSelection(); |
|
|
|
this.$refs.table.clearSelection(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
resetForm() { |
|
|
|
resetForm () { |
|
|
|
this.topicForm = { |
|
|
|
this.topicForm = { |
|
|
|
answer: "", |
|
|
|
answer: "", |
|
|
|
questionType: "", |
|
|
|
questionType: "", |
|
|
@ -359,16 +330,16 @@ export default { |
|
|
|
this.$refs.topicForm.clearValidate(); |
|
|
|
this.$refs.topicForm.clearValidate(); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
handleCurrentChange(val) { |
|
|
|
handleCurrentChange (val) { |
|
|
|
this.page = val; |
|
|
|
this.page = val; |
|
|
|
this.getData(); |
|
|
|
this.getData(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
addTopics() { |
|
|
|
addTopics () { |
|
|
|
this.topicForm.id = ""; |
|
|
|
this.topicForm.id = ""; |
|
|
|
this.topicsTitle = "新增题目"; |
|
|
|
this.topicsTitle = "新增题目"; |
|
|
|
this.NewTopics = true; |
|
|
|
this.NewTopics = true; |
|
|
|
}, |
|
|
|
}, |
|
|
|
getDetail(id) { |
|
|
|
getDetail (id) { |
|
|
|
this.$get(`${this.api.questionsDetail}`, { id }).then(res => { |
|
|
|
this.$get(`${this.api.questionsDetail}`, { id }).then(res => { |
|
|
|
this.topicForm = res.questions; |
|
|
|
this.topicForm = res.questions; |
|
|
|
this.topicForm.id = id; |
|
|
|
this.topicForm.id = id; |
|
|
@ -378,26 +349,26 @@ export default { |
|
|
|
console.log(err); |
|
|
|
console.log(err); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
editQues(row) { |
|
|
|
editQues (row) { |
|
|
|
this.topicsTitle = "编辑题目"; |
|
|
|
this.topicsTitle = "编辑题目"; |
|
|
|
this.getDetail(row.id); |
|
|
|
this.getDetail(row.id); |
|
|
|
}, |
|
|
|
}, |
|
|
|
showQues(row) { |
|
|
|
showQues (row) { |
|
|
|
this.topicsTitle = "查看题目"; |
|
|
|
this.topicsTitle = "查看题目"; |
|
|
|
this.isShowTopics = true; |
|
|
|
this.isShowTopics = true; |
|
|
|
this.getDetail(row.id); |
|
|
|
this.getDetail(row.id); |
|
|
|
}, |
|
|
|
}, |
|
|
|
closeTopics() { |
|
|
|
closeTopics () { |
|
|
|
this.isShowTopics = false; |
|
|
|
this.isShowTopics = false; |
|
|
|
this.resetForm(); |
|
|
|
this.resetForm(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
switchQues(val, row, index) { |
|
|
|
switchQues (val, row, index) { |
|
|
|
this.$post(`${this.api.questionsIsDisable}?id=${row.id}`).then(res => { |
|
|
|
this.$post(`${this.api.questionsIsDisable}?id=${row.id}`).then(res => { |
|
|
|
util.successMsg("更新状态成功"); |
|
|
|
util.successMsg("更新状态成功"); |
|
|
|
this.getData(); |
|
|
|
this.getData(); |
|
|
|
}).catch(err => {}); |
|
|
|
}).catch(err => { }); |
|
|
|
}, |
|
|
|
}, |
|
|
|
delData(row) { |
|
|
|
delData (row) { |
|
|
|
this.$confirm("确定要删除吗?", "提示", { |
|
|
|
this.$confirm("确定要删除吗?", "提示", { |
|
|
|
type: "warning" |
|
|
|
type: "warning" |
|
|
|
}) |
|
|
|
}) |
|
|
@ -411,10 +382,10 @@ export default { |
|
|
|
.catch(() => { |
|
|
|
.catch(() => { |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
handleSelectionChange(val) { |
|
|
|
handleSelectionChange (val) { |
|
|
|
this.multipleSelection = val; |
|
|
|
this.multipleSelection = val; |
|
|
|
}, |
|
|
|
}, |
|
|
|
delAllData() { |
|
|
|
delAllData () { |
|
|
|
if (this.multipleSelection.length) { |
|
|
|
if (this.multipleSelection.length) { |
|
|
|
this.$confirm("确定要删除吗?", "提示", { |
|
|
|
this.$confirm("确定要删除吗?", "提示", { |
|
|
|
type: "warning" |
|
|
|
type: "warning" |
|
|
@ -430,7 +401,7 @@ export default { |
|
|
|
}).catch(err => { |
|
|
|
}).catch(err => { |
|
|
|
console.log(err); |
|
|
|
console.log(err); |
|
|
|
}); |
|
|
|
}); |
|
|
|
if(this.multipleSelection.length === this.listData.length && this.page>1) { |
|
|
|
if (this.multipleSelection.length === this.listData.length && this.page > 1) { |
|
|
|
this.handleCurrentChange(this.page - 1) |
|
|
|
this.handleCurrentChange(this.page - 1) |
|
|
|
} |
|
|
|
} |
|
|
|
}).catch(() => { |
|
|
|
}).catch(() => { |
|
|
@ -439,10 +410,10 @@ export default { |
|
|
|
util.errorMsg("请先选择题目 !"); |
|
|
|
util.errorMsg("请先选择题目 !"); |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
downloadTem() { |
|
|
|
downloadTem () { |
|
|
|
location.href = this.api.questionsTemplate; |
|
|
|
location.href = this.api.questionsTemplate; |
|
|
|
}, |
|
|
|
}, |
|
|
|
getInfo() { |
|
|
|
getInfo () { |
|
|
|
this.$get(this.api.questionsInfo).then(res => { |
|
|
|
this.$get(this.api.questionsInfo).then(res => { |
|
|
|
this.info = res.data; |
|
|
|
this.info = res.data; |
|
|
|
this.info.evaluationType = this.info.evaluationType.toString(); |
|
|
|
this.info.evaluationType = this.info.evaluationType.toString(); |
|
|
@ -453,13 +424,13 @@ export default { |
|
|
|
}).catch(res => { |
|
|
|
}).catch(res => { |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
questionTypeChange() { |
|
|
|
questionTypeChange () { |
|
|
|
console.log(11, this.topicForm.questionType) |
|
|
|
console.log(11, this.topicForm.questionType) |
|
|
|
for (let i in this.topicForm) { |
|
|
|
for (let i in this.topicForm) { |
|
|
|
if (i.includes("isTrue")) this.topicForm[i] = false; |
|
|
|
if (i.includes("isTrue")) this.topicForm[i] = false; |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
submitSetEva() { // 提交测评设置 |
|
|
|
submitSetEva () { // 提交测评设置 |
|
|
|
let info = this.info; |
|
|
|
let info = this.info; |
|
|
|
if (info.evaluationType == 0) { |
|
|
|
if (info.evaluationType == 0) { |
|
|
|
let allEmpty = true; |
|
|
|
let allEmpty = true; |
|
|
@ -488,7 +459,7 @@ export default { |
|
|
|
console.log(err); |
|
|
|
console.log(err); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
saveTopics() { // 提交新增/编辑题目 |
|
|
|
saveTopics () { // 提交新增/编辑题目 |
|
|
|
this.$refs.topicForm.validate((valid) => { |
|
|
|
this.$refs.topicForm.validate((valid) => { |
|
|
|
if (valid) { |
|
|
|
if (valid) { |
|
|
|
if (this.submiting) return false |
|
|
|
if (this.submiting) return false |
|
|
@ -540,15 +511,15 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
showBatchUpload() { |
|
|
|
showBatchUpload () { |
|
|
|
this.BatchUpload = true; |
|
|
|
this.BatchUpload = true; |
|
|
|
}, |
|
|
|
}, |
|
|
|
handleExceed(files, fileList) { |
|
|
|
handleExceed (files, fileList) { |
|
|
|
util.warningMsg( |
|
|
|
util.warningMsg( |
|
|
|
`当前限制选择 1 个文件,如需更换,请删除上一个文件再重新选择!` |
|
|
|
`当前限制选择 1 个文件,如需更换,请删除上一个文件再重新选择!` |
|
|
|
); |
|
|
|
); |
|
|
|
}, |
|
|
|
}, |
|
|
|
uploadSuccess(res, file, fileList) { |
|
|
|
uploadSuccess (res, file, fileList) { |
|
|
|
this.uploadFaild = false; |
|
|
|
this.uploadFaild = false; |
|
|
|
let { message, status, data } = res; |
|
|
|
let { message, status, data } = res; |
|
|
|
if (status === 200) { |
|
|
|
if (status === 200) { |
|
|
@ -559,33 +530,33 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
showFaild() { |
|
|
|
showFaild () { |
|
|
|
location.href = `${this.api.questionsExportFailure}?exportCode=${this.exportCode}`; |
|
|
|
location.href = `${this.api.questionsExportFailure}?exportCode=${this.exportCode}`; |
|
|
|
}, |
|
|
|
}, |
|
|
|
uploadError(err, file, fileList) { |
|
|
|
uploadError (err, file, fileList) { |
|
|
|
this.$message({ |
|
|
|
this.$message({ |
|
|
|
message: "上传出错,请重试!", |
|
|
|
message: "上传出错,请重试!", |
|
|
|
type: "error", |
|
|
|
type: "error", |
|
|
|
center: true |
|
|
|
center: true |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
beforeRemove(file, fileList) { |
|
|
|
beforeRemove (file, fileList) { |
|
|
|
return this.$confirm(`确定移除 ${file.name}?`); |
|
|
|
return this.$confirm(`确定移除 ${file.name}?`); |
|
|
|
}, |
|
|
|
}, |
|
|
|
handleRemove(file, fileList) { |
|
|
|
handleRemove (file, fileList) { |
|
|
|
this.uploadList = fileList; |
|
|
|
this.uploadList = fileList; |
|
|
|
}, |
|
|
|
}, |
|
|
|
handleDataRemove(file, fileList) { |
|
|
|
handleDataRemove (file, fileList) { |
|
|
|
this.uploadList = fileList; |
|
|
|
this.uploadList = fileList; |
|
|
|
this.uploadFaild = false; |
|
|
|
this.uploadFaild = false; |
|
|
|
}, |
|
|
|
}, |
|
|
|
uploadSure() { |
|
|
|
uploadSure () { |
|
|
|
this.BatchUpload = false; |
|
|
|
this.BatchUpload = false; |
|
|
|
this.page = 1; |
|
|
|
this.page = 1; |
|
|
|
this.keyword = ""; |
|
|
|
this.keyword = ""; |
|
|
|
this.getData(); |
|
|
|
this.getData(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
closeUpload() { |
|
|
|
closeUpload () { |
|
|
|
this.uploadFaild = false; |
|
|
|
this.uploadFaild = false; |
|
|
|
this.uploadList = []; |
|
|
|
this.uploadList = []; |
|
|
|
this.uploadDataList = []; |
|
|
|
this.uploadDataList = []; |
|
|
@ -665,8 +636,8 @@ export default { |
|
|
|
.check-wrap.checked { |
|
|
|
.check-wrap.checked { |
|
|
|
color: #9076FF; |
|
|
|
color: #9076FF; |
|
|
|
} |
|
|
|
} |
|
|
|
/deep/ .el-switch__label *{ |
|
|
|
|
|
|
|
|
|
|
|
/deep/ .el-switch__label * { |
|
|
|
font-size: 12px; |
|
|
|
font-size: 12px; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |
|
|
|
|
|
|
|
|
|
|
|