123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- <template>
- <section class="content" style="margin-top: -18px;">
- <div class="box box-info">
- <!-- 头信息 -->
- <div
- class="box-header with-border"
- style="background-color:#d3dce6;margin-bottom:20px;"
- >
- <h3 class="box-title">考试结构</h3>
- <div class="box-tools pull-right">
- <button type="button" class="btn btn-box-tool" data-widget="collapse">
- <i class="fa fa-minus"></i>
- </button>
- </div>
- </div>
- <!-- 正文信息 -->
- <div class="box-body">
- <el-form
- :model="formSearch"
- :inline="true"
- label-position="right"
- label-width="100px"
- >
- <el-form-item label="学校">
- <el-select
- v-model="formSearch.orgId"
- placeholder="请选择"
- clearable
- @change="searchExamList(formSearch.orgId);"
- >
- <el-option
- v-for="item in orgList"
- :label="item.orgName"
- :value="item.orgId"
- :key="item.orgId"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="考试">
- <el-select
- v-model="formSearch.examId"
- @change="searchRecords"
- placeholder="请选择"
- clearable
- >
- <el-option
- v-for="item in examList"
- :label="item.examName"
- :value="item.examId"
- :key="item.examId"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-search"
- @click="searchRecords"
- >查询
- </el-button>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- :disabled="!hasPermit"
- v-show="formSearch.examId != ''"
- @click="addStructure"
- >新增
- </el-button>
- </el-form-item>
- </el-form>
- <!-- 数据列表 -->
- <el-table
- v-loading="loading"
- :data="tableData"
- element-loading-text="数据加载中"
- style="width:100%;"
- border
- >
- <el-table-column label="学校名称" prop="orgName" />
- <el-table-column label="考试名称" prop="examName" />
- <el-table-column width="220" label="题数">
- <template slot-scope="scope">
- 单选:{{ scope.row.questionStructure.singleChoiceTotal }}<br />
- 多选:{{ scope.row.questionStructure.multipleChoiceTotal }}<br />
- 判断:{{ scope.row.questionStructure.boolQuestionTotal }}
- </template>
- </el-table-column>
- <el-table-column width="200" label="操作" :context="_self">
- <template slot-scope="scope">
- <el-button
- size="mini"
- icon="el-icon-menu"
- @click="cloneStructure(scope.row);"
- :disabled="!hasPermit"
- >复用
- </el-button>
- <el-button
- size="mini"
- type="danger"
- icon="el-icon-delete"
- @click="removeStructure(scope.row);"
- :disabled="!hasPermit"
- >删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页 -->
- <div class="page pull-right">
- <el-pagination
- @current-change="handlePager"
- :current-page="formSearch.pageNo"
- :page-size="formSearch.pageSize"
- :total="totalElements"
- layout="total, prev, pager, next, jumper"
- ></el-pagination>
- </div>
- </div>
- </div>
- </section>
- </template>
- <script>
- import { PRINT_API } from "@/constants/constants";
- import { userRole } from "../constants/constants.js";
- import { mapState } from "vuex";
- export default {
- data() {
- return {
- formSearch: {
- orgId: "",
- examId: "",
- pageNo: 1,
- pageSize: 10
- },
- curUserRole: userRole,
- hasPermit: false,
- totalElements: 0,
- loading: false,
- tableData: [],
- orgList: [],
- examList: [],
- rules: {}
- };
- },
- methods: {
- handlePager(current) {
- /* 处理分页 */
- this.formSearch.pageNo = current;
- this.searchRecords();
- },
- searchRecords() {
- /* 查询记录列表 */
- let orgId = this.formSearch.orgId;
- if (this.isEmptyNumber(orgId)) {
- this.$notify({
- message: "请选择学校!",
- type: "warning"
- });
- return;
- }
- this.loading = true;
- let url = PRINT_API + "/examStructure/list";
- this.$http.post(url, this.formSearch).then(
- response => {
- this.tableData = response.data.content;
- this.totalElements = response.data.totalElements;
- this.loading = false;
- },
- error => {
- console.log(error);
- this.loading = false;
- }
- );
- },
- searchExamList(orgId) {
- /* 查询考试列表 */
- this.formSearch.examId = "";
- this.examList = [];
- this.tableData = [];
- if (!this.isEmptyNumber(orgId)) {
- let url = PRINT_API + "/printing/project/exam/list?orgId=" + orgId;
- this.$http.post(url).then(response => {
- this.examList = response.data;
- });
- }
- },
- addStructure() {
- /* 新增考试结构 */
- this.$notify({
- message: "Todo...",
- type: "warning"
- });
- },
- cloneStructure(row) {
- /* 复用考试结构 */
- console.log(row);
- this.$notify({
- message: "Todo...",
- type: "warning"
- });
- },
- removeStructure(row) {
- /* 删除考试结构 */
- console.log(row);
- this.$notify({
- message: "Todo...",
- type: "warning"
- });
- }
- },
- computed: {
- ...mapState({ user: state => state.user })
- },
- created() {
- this.loadOrgList();
- this.loadUserRole(this.user);
- if (this.curUserRole.isSuperLeader || this.curUserRole.isPM) {
- this.hasPermit = true;
- } else {
- this.hasPermit = false;
- }
- }
- };
- </script>
- <style scoped>
- .page {
- margin-top: 10px;
- }
- .pull-right {
- float: right;
- }
- .pull-left {
- float: left;
- }
- </style>
|