123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397 |
- <template>
- <div id="">
- <table-list
- :tableSets="tableSet"
- :tableData="tableData"
- :navText="navText"
- :loading="loading"
- >
- <template slot="btn" slot-scope="props">
- <el-button type="text" @click="jumpPage(props.scope.row)"
- >学习记录</el-button
- >
- </template>
- </table-list>
- <pagination
- :total="total"
- :pageSize="formData.pageSize"
- :currentPage="formData.pageNum"
- @handleSizeChange="handleSizeChange"
- @handleCurrentChange="handleCurrentChange"
- />
- </div>
- </template>
- <script>
- import tableList from "@/components/tableList";
- import pagination from "@/components/pagination";
- export default {
- name: "",
- components: { tableList, pagination },
- data() {
- return {
- size: "small",
- loading: false, //当前表单加载是否加载动画
- navText: {
- title: "学习列表",
- index: 0,
- ch: "条",
- num: false,
- border: true,
- choice: true,
- addHide: true,
- backFatherBtn: {
- status: false,
- title: "未定义",
- },
- },
- formData: {
- profileStatus: "",
- periodStatus: "",
- status: 1,
- pageSize: 10,
- pageNum: 1,
- },
- // 表单
- tableSet: [
- {
- label: "学员姓名",
- prop: "realName",
- hidden: true,
- },
- {
- label: "学员身份证",
- prop: "idCard",
- hidden: true,
- },
- {
- label: "一寸头像照",
- prop: "oneInchPhotos",
- hidden: true,
- scope: "img",
- width: "120px",
- },
- {
- label: "最近人脸照",
- prop: "idCardImg1",
- hidden: true,
- scope: "img",
- width: "120px",
- },
- {
- label: "商品名称",
- prop: "goodsName",
- hidden: true,
- },
- {
- label: "学时",
- prop: "classHours",
- hidden: true,
- },
- {
- label: "所在班级",
- prop: "className",
- hidden: true,
- },
- // {
- // label: "学习服务期",
- // prop1: "serviceStartTime",
- // prop2: "serviceEndTime",
- // hidden: true,
- // Diszing: true,
- // scope: "TimeLists",
- // },
- // {
- // label: "班级有效期",
- // prop1: "classStartTime",
- // prop2: "classEndTime",
- // scope: "TimeLists",
- // Diszing: false,
- // hidden: false,
- // },
- {
- label: "学习时间",
- prop1: "startTime",
- prop2: "endTime",
- scope: "TimeLists",
- hidden: false,
- },
- // {
- // label: "学习状态",
- // prop: "periodStatus",
- // hidden: true,
- // scope: "isOptions",
- // options: [
- // {
- // label: "已完成",
- // value: 0,
- // },
- // {
- // label: "已完成",
- // value: 1,
- // },
- // {
- // label: "已完成",
- // value: 2,
- // },
- // {
- // label: "未完成",
- // value: -1,
- // },
- // ],
- // },
- {
- label: "学时审核状态",
- prop: "periodStatus",
- hidden: true,
- scope: "isOptions",
- options: [
- {
- label: "不可审核",
- value: -1,
- },
- {
- label: "待审核",
- value: 2,
- },
- {
- label: "审核不通过",
- value: 0,
- },
- {
- label: "审核通过",
- value: 1,
- },
- {
- label: "审核中",
- value: 3,
- },
- ],
- },
- // {
- // label: "学时官方推送状态",
- // prop: "periodPlush",
- // hidden: true,
- // scope: "isOptions",
- // options: [
- // {
- // label: "否",
- // value: null,
- // },
- // {
- // label: "否",
- // value: 0,
- // },
- // {
- // label: "是",
- // value: 1,
- // },
- // ],
- // },
- ],
- tableData: [], //表单数据
- total: 0, //一共多少条
- };
- },
- mounted() {
- this.$api
- .coursebusinessqueryFullId({
- educationName: "继续教育",
- projectName: "造价师",
- businessName: "二级",
- })
- .then((res) => {
- this.formData.educationId = res.data.educationId;
- this.formData.projectId = res.data.projectId;
- this.formData.businessId = res.data.businessId;
- this.search();
- });
- },
- methods: {
- jumpPage(options) {
- const jump = () => {
- //班级详情
- this.$router.push({
- name: "HoursTimesRecord",
- query: {
- gradeId: options.gradeId,
- userId: options.userId,
- goodsId: options.goodsId,
- goodsName: options.goodsName,
- className: options.className,
- classHours: options.classHours,
- studyStartTime: options.studyStartTime,
- studyEndTime: options.studyEndTime,
- },
- });
- };
- const statusPage = this.$store.state.tagsView.visitedViews.some(
- (item) => {
- return item.name == "HoursTimesRecord";
- }
- );
- if (statusPage) {
- this.$store
- .dispatch("tagsView/delCachedView", {
- name: "HoursTimesRecord",
- })
- .then((res) => {
- jump();
- });
- } else {
- jump();
- }
- },
- checkSession(row) {
- return new Promise((resolve, reject) => {
- const SESSION = sessionStorage.getItem("hoursAudit");
- try {
- if (SESSION) {
- let parseSession = JSON.parse(SESSION);
- const STATUS = parseSession.options.some((item) => {
- return (
- item.userId == row.userId &&
- item.goodsId == row.goodsId &&
- item.id == row.id
- );
- });
- if (!STATUS) {
- parseSession.options.push(row);
- }
- parseSession.activeData = `${row.userId}-${row.goodsId}-${row.id}`;
- sessionStorage.setItem("hoursAudit", JSON.stringify(parseSession));
- } else {
- let data = {
- activeData: `${row.userId}-${row.goodsId}-${row.id}`,
- options: [row],
- };
- sessionStorage.setItem("hoursAudit", JSON.stringify(data));
- }
- resolve();
- } catch (error) {
- reject();
- }
- });
- },
- search(int) {
- this.loading = true;
- if (int === 1) {
- this.formData.pageNum = 1;
- }
- var data = JSON.parse(JSON.stringify(this.formData));
- this.$api
- .inquireGradegradelistUserPeriod(data)
- .then((res) => {
- this.tableData = res.rows;
- this.total = res.total;
- this.navText.index = res.total;
- })
- .finally(() => {
- this.loading = false;
- });
- },
- handleSizeChange(v) {
- this.formData.pageSize = v;
- this.formData.pageNum = 1;
- this.search();
- },
- handleCurrentChange(v) {
- this.formData.pageNum = v;
- this.search();
- },
- },
- };
- </script>
- <style lang="less" scoped>
- /deep/.el-button {
- border-radius: 8px;
- }
- /deep/.el-dialog {
- border-radius: 8px;
- .el-dialog__header {
- padding: 0;
- .hearders {
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0px 18px 0px 20px;
- border-bottom: 1px solid #e2e2e2;
- .leftTitle {
- font-size: 14px;
- font-weight: bold;
- color: #2f4378;
- }
- .rightBoxs {
- display: flex;
- align-items: center;
- img {
- width: 14px;
- height: 14px;
- margin-left: 13px;
- cursor: pointer;
- }
- }
- }
- }
- .el-dialog__footer {
- padding: 0;
- .dialog-footer {
- padding: 0px 40px;
- height: 70px;
- border-top: 1px solid #e2e2e2;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- }
- }
- .imgBox {
- width: 100%;
- // height: 210px;
- border: 1px solid #e2e2e2;
- border-radius: 8px;
- padding: 8px 8px 3px;
- display: flex;
- flex-direction: column;
- align-items: center;
- .imgLabel {
- flex: 1;
- width: 100%;
- border: 1px dotted #e2e2e2;
- color: #999;
- font-size: 14px;
- cursor: pointer;
- border-radius: 8px;
- .msPhoto {
- display: flex;
- justify-content: center;
- align-items: center;
- max-width: 100%;
- max-height: 270px;
- img {
- max-width: 100%;
- max-height: 270px;
- }
- }
- .imgbbx {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- i {
- font-weight: bold;
- margin: 14px 0;
- font-size: 24px;
- }
- }
- }
- p {
- margin: 5px 0px;
- }
- }
- </style>
|