|
|
@@ -0,0 +1,576 @@
|
|
|
+<template>
|
|
|
+ <div class="context">
|
|
|
+ <div class="panel">
|
|
|
+ <h5>课程表管理</h5>
|
|
|
+ </div>
|
|
|
+ <div class="change">
|
|
|
+ <el-button type="primary" @click="addLessonTable">新增课程表</el-button>
|
|
|
+ <el-button type="" @click="copy">复制</el-button>
|
|
|
+ <el-button type="" @click="delList">删除</el-button>
|
|
|
+ </div>
|
|
|
+ <div class="table">
|
|
|
+ <el-table
|
|
|
+ :data="tableData"
|
|
|
+ border
|
|
|
+ is-horizontal-resize
|
|
|
+ :default-sort="{prop: 'date', order: 'descending'}"
|
|
|
+ element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
|
+ class=""
|
|
|
+ @selection-change="handleSelectionChange"
|
|
|
+ >
|
|
|
+ <el-table-column
|
|
|
+ type="selection"
|
|
|
+ width="55">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ type="index"
|
|
|
+ label="序号"
|
|
|
+ width="50">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="name"
|
|
|
+ label="日期"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span class="readyTime" v-if="scope.row.Status == 0">
|
|
|
+ {{scope.row.name}}
|
|
|
+ </span>
|
|
|
+ <span class="CurTime" v-if="scope.row.Status == 1">
|
|
|
+ {{scope.row.name}}
|
|
|
+ </span>
|
|
|
+ <i class="curIcon" v-if="scope.row.Status == 1"></i>
|
|
|
+ <span class="runTime" v-if="scope.row.Status == 2">
|
|
|
+ {{scope.row.name}}
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="name"
|
|
|
+ label="课程表名称"
|
|
|
+ sortable
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="create"
|
|
|
+ label="最后修改时间"
|
|
|
+ sortable
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+ <el-table-column
|
|
|
+ prop="Status"
|
|
|
+ label="操作"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button type="text" @click="goEdit(scope.row)">编辑</el-button>
|
|
|
+ <el-button type="text" @click="goEdit(scope.row)">预览本周</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+ </el-table>
|
|
|
+ <br>
|
|
|
+ <el-pagination
|
|
|
+ background
|
|
|
+ :total="pageination.total"
|
|
|
+ :page-size="pageination.pageItem"
|
|
|
+ @current-change="pageChange"
|
|
|
+ ></el-pagination>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <el-dialog title="发布课程表" :visible.sync="dialogVisible" width="640px">
|
|
|
+ <div class="dialogTitle">
|
|
|
+ <span>{{form.name}}</span>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <span class="demonstration">选择发布日期(按周选取)</span>
|
|
|
+ <br>
|
|
|
+ <br>
|
|
|
+ <el-date-picker
|
|
|
+ v-model="form.week"
|
|
|
+ type="week"
|
|
|
+ :picker-options="{'firstDayOfWeek': 1}"
|
|
|
+ format="yyyy 第 WW 周"
|
|
|
+ placeholder="选择周">
|
|
|
+ </el-date-picker>
|
|
|
+ <br>
|
|
|
+ <br>
|
|
|
+ <span>
|
|
|
+ 微信可见
|
|
|
+ </span>
|
|
|
+ <el-switch
|
|
|
+ v-model="form.wechat"
|
|
|
+ active-value="1"
|
|
|
+ inactive-value="0"
|
|
|
+ active-color="#409EFF"
|
|
|
+ inactive-color="#D9D9D9">
|
|
|
+ </el-switch>
|
|
|
+ <span>
|
|
|
+ 微信可预约
|
|
|
+ </span>
|
|
|
+ <el-switch
|
|
|
+ v-model="form.appoint"
|
|
|
+ active-value="1"
|
|
|
+ inactive-value="0"
|
|
|
+ active-color="#409EFF"
|
|
|
+ inactive-color="#D9D9D9">
|
|
|
+ </el-switch>
|
|
|
+ </div>
|
|
|
+ <div class="dialogFooter">
|
|
|
+ <el-button type="primary" size="small" @click="public">确定</el-button>
|
|
|
+ <el-button @click="dialogVisible = false" size="small">取消</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import Global from '../Global.js'
|
|
|
+ import {
|
|
|
+ testTable,
|
|
|
+ testSelect
|
|
|
+ } from "../api/getApiRes";
|
|
|
+
|
|
|
+ let qs = require('qs');
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ dialogVisible: false,
|
|
|
+ dialogdata: [],
|
|
|
+ dialogValue: [],
|
|
|
+ // panel 配置项目
|
|
|
+ multipleSelection: [],
|
|
|
+ pageination: {
|
|
|
+ pageItem: 100,
|
|
|
+ pageoptions: pageOptions(),
|
|
|
+ total: 100,
|
|
|
+ pageIndex: 1,
|
|
|
+ },
|
|
|
+ form:{
|
|
|
+ Id:'',
|
|
|
+ name:'',
|
|
|
+ week:'',
|
|
|
+ wechat:1,
|
|
|
+ appoint:1,
|
|
|
+ },
|
|
|
+ tableData: []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.getTableQuery();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ addLessonTable() {
|
|
|
+ this.$router.push({
|
|
|
+ path: '/editLessonTable', query: {
|
|
|
+ id: 0
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 删除
|
|
|
+ delList() {
|
|
|
+ let that = this;
|
|
|
+ // checkNum
|
|
|
+ if (!this.multipleSelection.length) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '错了哦,需要先选中至少一条记录',
|
|
|
+ type: 'error'
|
|
|
+ });
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (this.multipleSelection.length != 1) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '错了哦,只能选中一条记录',
|
|
|
+ type: 'error'
|
|
|
+ });
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
+ let detectorid = that.multipleSelection[0].Id;
|
|
|
+
|
|
|
+ let param = {
|
|
|
+ token: localStorage.token,
|
|
|
+ detectorid: detectorid,
|
|
|
+ status: 9,//0禁用1启用9删除
|
|
|
+ };
|
|
|
+ let postdata = qs.stringify(param);
|
|
|
+
|
|
|
+ this.$confirm('此操作将永久删除该课程表模板, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ testSelect(postdata).then(res => {
|
|
|
+ let json = res;
|
|
|
+ if (json.Code == 0) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '选中的会员已删除!',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ // 重载列表
|
|
|
+ that.getTableQuery();
|
|
|
+ } else {
|
|
|
+ that.$message.error(json.Memo);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '已取消删除'
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ copy() {
|
|
|
+ let that = this;
|
|
|
+ // checkNum
|
|
|
+ if (!this.multipleSelection.length) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '错了哦,需要先选中至少一条记录',
|
|
|
+ type: 'error'
|
|
|
+ });
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (this.multipleSelection.length != 1) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '错了哦,只能选中一条记录',
|
|
|
+ type: 'error'
|
|
|
+ });
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
+ let detectorid = that.multipleSelection[0].Id;
|
|
|
+
|
|
|
+ let param = {
|
|
|
+ token: localStorage.token,
|
|
|
+ detectorid: detectorid,
|
|
|
+ status: 3,//0禁用1启用9删除
|
|
|
+ };
|
|
|
+ let postdata = qs.stringify(param);
|
|
|
+
|
|
|
+ this.$confirm('此操作将复制相同内容的课程表, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ testSelect(postdata).then(res => {
|
|
|
+ let json = res;
|
|
|
+ if (json.Code == 0) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '选中的课程表已复制!',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ // 重载列表
|
|
|
+ that.getTableQuery();
|
|
|
+ } else {
|
|
|
+ that.$message.error(json.Memo);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '已取消复制'
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 发布课程表
|
|
|
+ openLessonTable(row){
|
|
|
+ this.dialogVisible = true;
|
|
|
+ this.form.name = row.name;
|
|
|
+ this.form.Id = row.Id;
|
|
|
+ this.form.week = '';
|
|
|
+ },
|
|
|
+ // 发布
|
|
|
+ public() {
|
|
|
+ let that = this;
|
|
|
+ if (!this.form.week) {
|
|
|
+ this.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '错了哦,发布周期不能空',
|
|
|
+ type: 'error'
|
|
|
+ });
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
+ let param = {
|
|
|
+ token: localStorage.token,
|
|
|
+ detectorid: this.form.Id,
|
|
|
+ week: this.form.week,
|
|
|
+ wechat: this.form.wechat,
|
|
|
+ appoint: this.form.appoint,
|
|
|
+ };
|
|
|
+ let postdata = qs.stringify(param);
|
|
|
+ testSelect(postdata).then(res => {
|
|
|
+ let json = res;
|
|
|
+ if (json.Code == 0) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: this.form.name + '已发布!',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ // 重载列表
|
|
|
+ that.getTableQuery();
|
|
|
+ this.dialogVisible = false;
|
|
|
+ } else {
|
|
|
+ that.$message.error(json.Memo);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 取消发布
|
|
|
+ unpubilc(row) {
|
|
|
+ let that = this;
|
|
|
+ let param = {
|
|
|
+ token: localStorage.token,
|
|
|
+ detectorid: row.Id,
|
|
|
+ status: 4,//0禁用1启用9删除
|
|
|
+ };
|
|
|
+ let postdata = qs.stringify(param);
|
|
|
+ testSelect(postdata).then(res => {
|
|
|
+ let json = res;
|
|
|
+ if (json.Code == 0) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '选中的课程表模板已复制!',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ // 重载列表
|
|
|
+ that.getTableQuery();
|
|
|
+ } else {
|
|
|
+ that.$message.error(json.Memo);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 编辑课程表模板
|
|
|
+ goEdit(row) {
|
|
|
+ this.$router.push({
|
|
|
+ path: '/editLessonTable', query: {
|
|
|
+ id: row.id
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ handleSelectionChange(val) {
|
|
|
+ this.multipleSelection = val;
|
|
|
+ },
|
|
|
+ // 查询按钮
|
|
|
+ query() {
|
|
|
+ // this.getTableQuery();
|
|
|
+ this.$message.success('查询完毕');
|
|
|
+ },
|
|
|
+ // 页面数据查询
|
|
|
+ getTableQuery() {
|
|
|
+ let that = this;
|
|
|
+ // this.getGetChildRegionSelect(0, 1);
|
|
|
+ that.loading = true;
|
|
|
+ // 查询检测设备。上级区域id,区域id必传。regionid传0,查询supregionid对应所有子区域的检测设备。 如果supregionid,regionid都传0,默认查询企业ID下所有检测设备
|
|
|
+ let param = {
|
|
|
+ token: localStorage.token,
|
|
|
+ start: 1,//
|
|
|
+ tableMax: 9999,//
|
|
|
+ };
|
|
|
+ let postdata = qs.stringify(param);
|
|
|
+ testTable(postdata).then(res => {
|
|
|
+ let json = res;
|
|
|
+ if (json.Code == 0) {
|
|
|
+ that.loading = false;
|
|
|
+ if (json.Rs) {
|
|
|
+ that.allTableData = json.Rs;
|
|
|
+ that.recordsTotal = json.Rs.length;
|
|
|
+ } else {
|
|
|
+ that.allTableData = [];
|
|
|
+ that.recordsTotal = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 设置分页数据
|
|
|
+ that.setPaginations();
|
|
|
+ } else {
|
|
|
+ that.$message.error(json.Memo);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 设置分页数据
|
|
|
+ setPaginations() {
|
|
|
+ // 分页属性
|
|
|
+ let that = this;
|
|
|
+ that.pageination.total = that.recordsTotal;
|
|
|
+ // 默认分页
|
|
|
+ that.tableData = that.allTableData.filter((item, index) => {
|
|
|
+ return index < that.pageination.pageItem;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 每页显示数量
|
|
|
+ handleSizeChange() {
|
|
|
+ let that = this;
|
|
|
+ that.tableData = that.allTableData.filter((item, index) => {
|
|
|
+ return index < that.pageination.pageItem;
|
|
|
+ });
|
|
|
+ that.draw = that.pageination.pageItem;
|
|
|
+ that.getTableQuery();
|
|
|
+ },
|
|
|
+ // 翻页
|
|
|
+ pageChange(pageIndex) {
|
|
|
+ let that = this;
|
|
|
+ // 获取当前页
|
|
|
+ let index = that.pageination.pageItem * (pageIndex - 1);
|
|
|
+ // 数据总数
|
|
|
+ let nums = that.pageination.pageItem * pageIndex;
|
|
|
+ // 容器
|
|
|
+ let tables = [];
|
|
|
+ for (var i = index; i < nums; i++) {
|
|
|
+ if (that.allTableData[i]) {
|
|
|
+ tables.push(that.allTableData[i])
|
|
|
+ }
|
|
|
+ this.tableData = tables;
|
|
|
+ }
|
|
|
+ that.start = index * that.draw;
|
|
|
+ that.getTableQuery();
|
|
|
+ },
|
|
|
+ // 自动排序
|
|
|
+ sortChange(params) {
|
|
|
+ console.log(params)
|
|
|
+ },
|
|
|
+ // 过滤时间
|
|
|
+ filterFmtDate(value, row, column) {
|
|
|
+ let that = this;
|
|
|
+ return globalfmtDate(column, 11);
|
|
|
+ },
|
|
|
+ // 过滤金额
|
|
|
+ filterMoney(value, row, column) {
|
|
|
+ let that = this;
|
|
|
+ return parseFloat(column).toFixed(2);
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+ @import "../assets/css/panel.css";
|
|
|
+
|
|
|
+ .context {
|
|
|
+ overflow: hidden;
|
|
|
+ display: block;
|
|
|
+ margin: 0 auto;
|
|
|
+ background-color: #fff !important;
|
|
|
+ padding: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .panel-body {
|
|
|
+ padding: 20px;
|
|
|
+ background: #F0F2F5;
|
|
|
+ }
|
|
|
+
|
|
|
+ .change {
|
|
|
+ width: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ display: block;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding-top: 10px;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .change button {
|
|
|
+ float: left;
|
|
|
+ }
|
|
|
+
|
|
|
+ .change button.pull-right {
|
|
|
+ float: right;
|
|
|
+ }
|
|
|
+
|
|
|
+ .dialogTitle {
|
|
|
+ width: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ display: block;
|
|
|
+ margin: 0 auto;
|
|
|
+ color: #000000;
|
|
|
+ font-size: 18px;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .dialogTitle span {
|
|
|
+ width: 169px;
|
|
|
+ height: 40px;
|
|
|
+ line-height: 40px;
|
|
|
+ text-align: center;
|
|
|
+ color: #fff;
|
|
|
+ background: #3799FF;
|
|
|
+ border-radius: 250px;
|
|
|
+ font-size: 18px;
|
|
|
+ overflow: hidden;
|
|
|
+ display: block;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-bottom: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .dialogTitle em {
|
|
|
+ float: none;
|
|
|
+ font-style: normal;
|
|
|
+ color: #3799FF;
|
|
|
+ margin: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ /deep/ .el-transfer-panel__item .el-checkbox__input {
|
|
|
+ left: 40px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .dialogFooter {
|
|
|
+ width: 90%;
|
|
|
+ overflow: hidden;
|
|
|
+ display: block;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .dialogFooter button {
|
|
|
+ float: right;
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .link {
|
|
|
+ color: #03B1FF;
|
|
|
+ text-decoration: underline;
|
|
|
+ }
|
|
|
+ .readyTime {
|
|
|
+ width: 90%;
|
|
|
+ overflow: hidden;
|
|
|
+ display: block;
|
|
|
+ margin: 0 auto;
|
|
|
+ border: 1px solid #FFC769;
|
|
|
+ border-radius: 4px;
|
|
|
+ background: #FFF0D6;
|
|
|
+ }
|
|
|
+ .CurTime {
|
|
|
+ width: 90%;
|
|
|
+ overflow: hidden;
|
|
|
+ display: block;
|
|
|
+ margin: 0 auto;
|
|
|
+ border: 1px solid #3799FF;
|
|
|
+ border-radius: 4px;
|
|
|
+ background: #D9ECFF;
|
|
|
+ padding: 3px 6px;
|
|
|
+ }
|
|
|
+ .runTime {
|
|
|
+ width: 90%;
|
|
|
+ overflow: hidden;
|
|
|
+ display: block;
|
|
|
+ margin: 0 auto;
|
|
|
+ border: 1px solid #3799FF;
|
|
|
+ border-radius: 4px;
|
|
|
+ background: #D9ECFF;
|
|
|
+ padding: 3px 6px;
|
|
|
+ }
|
|
|
+ .curIcon {
|
|
|
+ position: relative;
|
|
|
+ left: 13px;
|
|
|
+ top: -30px;
|
|
|
+ width: 24px;
|
|
|
+ height: 24px;
|
|
|
+ float: left;
|
|
|
+ background: url("../assets/img/lessonTable/star.png")top center no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+
|
|
|
+ }
|
|
|
+</style>
|