123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- <template>
- <div
- class="pb_content"
- style="
- background: unset;
- overflow: auto;
- padding: 20px;
- margin: 0;
- box-sizing: border-box;
- "
- >
- <div
- style="
- position: absolute;
- width: 95%;
- top: 0;
- height: 100%;
- overflow: auto;
- left: 50%;
- transform: translateX(-50%);
- "
- >
- <div
- class="pb_content_body"
- style="
- background: #fff;
- padding: 0px 25px;
- box-sizing: border-box;
- border-radius: 5px;
- "
- >
- <div class="pb_head">
- <span>评价管理</span>
- <!-- <span>备注:教师可以根据课程、班级条件筛选学生并查看该学生信息</span> -->
- </div>
- <div class="student_head">
- <div class="student_search">
- <div>项目筛选</div>
- <el-select v-model="groupA" @change="search">
- <el-option value="0" label="我的课程"></el-option>
- <el-option value="1" label="他人课程"></el-option>
- </el-select>
- <el-input v-model="cn" placeholder="筛选项目名称" @input="search"></el-input>
- </div>
- </div>
- </div>
- <div class="pb_content_body">
- <div class="student_table">
- <el-table
- ref="table"
- :data="tableData1"
- border
- :height="tableHeight"
- :fit="true"
- v-loading="isLoading"
- style="width: 100%"
- :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
- :row-class-name="tableRowClassName"
- >
- <el-table-column prop="title" label="项目" min-width="30" align="center"></el-table-column>
- <el-table-column prop="uname" label="创建人" min-width="30" align="center"></el-table-column>
- <el-table-column prop="time" label="时间" min-width="20" align="center"></el-table-column>
- <el-table-column label="操作" min-width="30">
- <template slot-scope="scope">
- <!-- <el-button
- type="primary"
- size="small"
- @click="
- goTo(
- '/worksDetail?cid=' +
- scope.row.courseId +
- '&userid=' +
- userid +
- '&oid=' +
- oid
- )
- "
- >查看学生</el-button>-->
- <!-- <el-button type="primary" size="small" @click="getWorkData(scope.row)">生成报告</el-button> -->
- <el-button type="primary" size="small" @click="getWorkData(scope.row)">查看课程</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div class="student_page">
- <el-pagination
- background
- layout="prev, pager, next"
- :page-size="10"
- :total="total"
- v-if="page"
- @current-change="handleCurrentChange"
- ></el-pagination>
- </div>
- </div>
- </div>
- <!-- <el-dialog
- title="查看报告"
- :visible.sync="dialogVisible"
- :append-to-body="true"
- width="750px"
- :before-close="handleClose"
- class="dialog_diy"
- >
- <div>
- <div class="a_addBox">
- <WorkDate :dataJson="dataJson"></WorkDate>
- </div>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">关 闭</el-button>
- </span>
- </el-dialog>-->
- <WorkDate
- :dataJson="dataJson"
- :uid="userid"
- :cid="dataJson.courseId"
- :ooid="oid"
- v-if="dialogVisible"
- class="workdates"
- ></WorkDate>
- <div class="cancelbox" v-if="dialogVisible">
- <!-- <el-button @click="dialogVisibleBao = true" type="primary" size="small">自定义导出</el-button> -->
- <el-button @click="cancel" type="primary" size="small">返回</el-button>
- <!-- <el-button
- type="primary"
- size="small"
- @click="
- goTo(
- '/worksDetail?cid=' +
- dataJson.courseId +
- '&userid=' +
- userid +
- '&oid=' +
- oid
- )
- "
- >查看作业</el-button
- >-->
- </div>
- <el-dialog
- title="自定义导出报告"
- :visible.sync="dialogVisibleBao"
- :append-to-body="true"
- width="550px"
- :before-close="handleClose"
- class="dialog_diy"
- >
- <div>
- <div>
- <Report :cid="dataJson.courseId"></Report>
- </div>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisibleBao = false">关 闭</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import WorkDate from "./components/workData";
- import Report from "./components/report";
- export default {
- components: {
- WorkDate,
- Report
- },
- data() {
- return {
- tableHeight: "500px",
- isLoading: false,
- formLabelWidth: "100px",
- tableData1: [],
- subject: "",
- sClass: "",
- subjectJuri: [],
- projectJuri: [],
- grade: [],
- projectchoose: "",
- page: 1,
- total: 0,
- groupA: "0",
- cn: "",
- userid: this.$route.query.userid,
- oid: this.$route.query.oid,
- dialogVisible: false,
- dialogVisibleBao:false,
- dataJson: {},
- };
- },
- mounted() {
- this.$nextTick(function () {
- this.tableHeight =
- window.innerHeight - this.$refs.table.$el.offsetTop - 200;
- if (this.tableHeight <= 530) {
- this.tableHeight = 530;
- }
- // 监听窗口大小变化
- let self = this;
- window.onresize = function () {
- self.tableHeight =
- window.innerHeight - self.$refs.table.$el.offsetTop - 200;
- if (self.tableHeight <= 530) {
- self.tableHeight = 530;
- }
- };
- });
- },
- methods: {
- goTo(path) {
- this.$router.push(path);
- },
- tableRowClassName({ row, rowIndex }) {
- if ((rowIndex + 1) % 2 === 0) {
- return "even_row";
- } else {
- return "";
- }
- },
- handleClose(done) {
- done();
- },
- handleCurrentChange(val) {
- this.page = val;
- this.getProject();
- },
- //获取班级列表
- getClass() {
- this.isLoading = true;
- let params = {
- cu: "",
- cn: this.sClass,
- page: this.page,
- };
- this.ajax
- .get(this.$store.state.api + "selectClass", params)
- .then((res) => {
- this.isLoading = false;
- this.grade = res.data[0];
- })
- .catch((err) => {
- this.isLoading = false;
- console.error(err);
- });
- },
- getProject() {
- this.isLoading = true;
- let params = {
- type: this.groupA,
- uid: this.userid,
- oid: this.oid,
- cn: this.cn,
- page: this.page,
- };
- this.ajax
- .get(this.$store.state.api + "getProject", params)
- .then((res) => {
- this.isLoading = false;
- this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
- this.tableData1 = res.data[0];
- })
- .catch((err) => {
- this.isLoading = false;
- console.error(err);
- });
- },
- search() {
- this.page = 1;
- this.getProject();
- },
- getWorkData(res) {
- this.dataJson = res;
- this.dialogVisible = true;
- },
- cancel() {
- this.dataJson = "";
- this.dialogVisible = false;
- },
- },
- created() {
- this.page = 1;
- // this.getClass();
- // this.getGroup();
- this.getProject();
- },
- };
- </script>
- <style scoped>
- .pb_head > span:nth-child(2) {
- font-size: 16px;
- margin-left: 80px;
- color: #ab582f;
- }
- .pb_head {
- margin: 0 !important;
- width: 100% !important;
- }
- .student_page {
- margin-top: 10px;
- }
- .student_head {
- margin-top: 10px;
- padding-bottom: 15px;
- display: flex;
- justify-content: space-between;
- }
- .student_search {
- display: flex;
- }
- .student_search > div:nth-child(1) {
- line-height: 35px;
- font-size: 14px;
- min-width: 60px;
- }
- .student_search >>> .el-input__inner {
- width: 190px;
- height: 35px;
- margin-left: 10px;
- }
- .student_table >>> .el-table--border td {
- border-right: 0px !important;
- }
- .student_page {
- margin-top: 10px;
- }
- .student_table >>> .el-table {
- height: 635px !important;
- }
- .el-table >>> .even_row {
- background-color: #f1f1f1 !important;
- }
- .dialog_diy >>> .el-dialog__header {
- padding: 9px 20px 10px;
- background: #32455b !important;
- }
- .dialog_diy >>> .el-dialog__title {
- color: #fff;
- font-size: 15px;
- }
- .dialog_diy >>> .el-dialog__headerbtn {
- top: 14px;
- }
- .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
- color: #fff;
- }
- .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
- color: #fff;
- }
- .dialog_diy >>> .el-dialog__body,
- .dialog_diy >>> .el-dialog__footer {
- background: #fafafa;
- }
- .a_addBox {
- height: 570px;
- overflow: auto;
- }
- .workdates {
- height: 100%;
- position: absolute;
- top: 0;
- background: #fff;
- overflow: auto;
- z-index: 1;
- width: 95%;
- left: 50%;
- transform: translateX(-50%);
- padding: 20px;
- box-sizing: border-box;
- }
- .cancelbox {
- position: absolute;
- z-index: 2;
- left: 50%;
- width: 95%;
- transform: translateX(-50%);
- display: flex;
- justify-content: flex-end;
- padding: 0 90px 0px 0px;
- box-sizing: border-box;
- }
- </style>
|