游戏数学学期计划

This commit is contained in:
sk1551
2020-10-29 15:19:18 +08:00
parent b5a602af52
commit 09ca6827c4
10 changed files with 1256 additions and 54 deletions

View File

@ -0,0 +1,61 @@
import request from '@/utils/request'
// 查询游戏数学学期计划列表
export function listMathtermplan(query) {
return request({
url: '/benyi/mathtermplan/list',
method: 'get',
params: query
})
}
// 查询游戏数学学期计划详细
export function getMathtermplan(id) {
return request({
url: '/benyi/mathtermplan/' + id,
method: 'get'
})
}
// 新增游戏数学学期计划
export function addMathtermplan(data) {
return request({
url: '/benyi/mathtermplan',
method: 'post',
data: data
})
}
// 修改游戏数学学期计划
export function updateMathtermplan(data) {
return request({
url: '/benyi/mathtermplan',
method: 'put',
data: data
})
}
// 提交主题整合学期计划
export function checkTermplan(id) {
return request({
url: '/benyi/mathtermplan/check/' + id,
method: 'post'
})
}
// 删除游戏数学学期计划
export function delMathtermplan(id) {
return request({
url: '/benyi/mathtermplan/' + id,
method: 'delete'
})
}
// 导出游戏数学学期计划
export function exportMathtermplan(query) {
return request({
url: '/benyi/mathtermplan/export',
method: 'get',
params: query
})
}

View File

@ -387,26 +387,7 @@ export default {
};
},
created() {
// const sid = this.$route.params && this.$route.params.id;
// this.queryParams.schoolid = sid;
// this.getDicts("sys_user_sex").then(response => {
// this.sexOptions = response.data;
// });
// this.getDicts("sys_normal_disable").then(response => {
// this.statusOptions = response.data;
// });
// this.getDicts("sys_dm_mz").then(response => {
// this.mzOptions = response.data;
// });
// this.getDicts("sys_yes_no").then(response => {
// this.ynOptions = response.data;
// });
// this.getDicts("sys_dm_ryqd").then(response => {
// this.sourceOptions = response.data;
// });
// this.getDicts("sys_dm_jtgx").then((response) => {
// this.jtgxOptions = response.data;
// });
},
components: {
//省市区三级联动全局组件
@ -417,26 +398,7 @@ export default {
onInput() {
this.$forceUpdate();
},
// // 性别字典翻译
// xbFormat(row, column) {
// return this.selectDictLabel(this.sexOptions, row.xb);
// },
// // 字典翻译
// mzFormat(row, column) {
// return this.selectDictLabel(this.mzOptions, row.mz);
// },
// // 字典翻译
// ynFormat(row, column) {
// return this.selectDictLabel(this.ynOptions, row.learnEnglish);
// },
// // 字典翻译
// sourceFormat(row, column) {
// return this.selectDictLabel(this.sourceOptions, row.source);
// },
// // 字典翻译
// statusFormat(row, column) {
// return this.selectDictLabel(this.statusOptions, row.status);
// },
// 字典翻译
classFormat(row, column) {
// return this.selectDictLabel(this.classOptions, row.classid);

View File

@ -0,0 +1,504 @@
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
:inline="true"
label-width="68px"
>
<el-form-item label="班级编码" prop="classid">
<el-select v-model="queryParams.classid" placeholder="请选择班级">
<el-option
v-for="dict in classOptions"
:key="dict.bjbh"
:label="dict.bjmc"
:value="dict.bjbh"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="学年学期" prop="xnxq">
<el-select
v-model="queryParams.xnxq"
placeholder="请选择学年学期"
clearable
size="small"
>
<el-option
v-for="dict in xnxqOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item>
<el-form-item label="状态" prop="status">
<el-select
v-model="queryParams.status"
placeholder="请选择状态"
clearable
size="small"
>
<el-option
v-for="dict in statusOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['benyi:mathtermplan:add']"
>新增</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['benyi:mathtermplan:edit']"
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['benyi:mathtermplan:remove']"
>删除</el-button
>
</el-col>
</el-row>
<el-table
v-loading="loading"
:data="mathtermplanList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" :selectable="isShow" />
<el-table-column label="班级名称" align="center" prop="classid" :formatter="classFormat"/>
<el-table-column
label="计划名称"
align="center"
prop="name"
:show-overflow-tooltip="true"
>
<template slot-scope="scope">
<router-link
:to="'/benyi_course/mathtermplan/data/' + scope.row.id"
class="link-type"
>
<span>{{ scope.row.name }}</span>
</router-link>
</template>
</el-table-column>
<el-table-column
label="开始月份"
align="center"
prop="startmonth"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.startmonth, "{y}-{m}") }}</span>
</template>
</el-table-column>
<el-table-column
label="结束月份"
align="center"
prop="endmonth"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.endmonth, "{y}-{m}") }}</span>
</template>
</el-table-column>
<el-table-column
label="学年学期"
align="center"
prop="xnxq"
:formatter="xnxqFormat"
/>
<el-table-column
label="状态"
align="center"
prop="status"
:formatter="statusFormat"
/>
<el-table-column label="备注" align="center" prop="remark" />
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['benyi:mathtermplan:edit']"
v-show="isShow(scope.row)"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['benyi:mathtermplan:remove']"
v-show="isShow(scope.row)"
>删除</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-check"
@click="handleCheck(scope.row)"
v-hasPermi="['benyi:mathtermplan:edit']"
v-show="isShow(scope.row)"
>提交</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-view"
@click="handleView(scope.row)"
v-hasPermi="['benyi:mathtermplan:query']"
:disabled=true
>预览</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改游戏数学学期计划对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="月份" prop="startmonth">
<el-date-picker
v-model="form.startmonth"
type="monthrange"
range-separator=""
start-placeholder="开始月份"
end-placeholder="结束月份"
value-format="yyyy-MM"
></el-date-picker>
</el-form-item>
<el-form-item label="学年学期">
<el-select v-model="form.xnxq" placeholder="请选择学年学期">
<el-option
v-for="dict in xnxqOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input
v-model="form.remark"
type="textarea"
placeholder="请输入备注"
/>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listMathtermplan,
getMathtermplan,
delMathtermplan,
addMathtermplan,
updateMathtermplan,
checkTermplan,
} from "@/api/benyi/mathtermplan";
import { listClass } from "@/api/system/class";
export default {
name: "Mathtermplan",
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 总条数
total: 0,
// 游戏数学学期计划表格数据
mathtermplanList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 学年学期字典
xnxqOptions: [],
// 班级字典
classOptions: [],
// 状态字典
statusOptions: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
schoolid: undefined,
classid: undefined,
name: undefined,
startmonth: undefined,
endmonth: undefined,
xnxq: undefined,
status: undefined,
spr: undefined,
sptime: undefined,
spyj: undefined,
createuserid: undefined,
},
// 表单参数
form: {},
// 表单校验
rules: {
xnxq: [
{ required: true, message: "学年学期不能为空", trigger: "blur" },
],
startmonth: [
{ required: true, message: "日期不能为空", trigger: "blur" },
],
},
};
},
created() {
this.getClassList();
this.getList();
this.getDicts("sys_xnxq").then((response) => {
this.xnxqOptions = response.data;
});
this.getDicts("sys_dm_planweekstatus").then((response) => {
this.statusOptions = response.data;
});
},
methods: {
isShow(row) {
//console.log(row.status);
if (row.status == "0") {
return true;
} else {
return false;
}
},
// 查询班级列表
getClassList() {
listClass(null).then((response) => {
this.classOptions = response.rows;
});
},
/** 查询游戏数学学期计划列表 */
getList() {
this.loading = true;
listMathtermplan(this.queryParams).then((response) => {
this.mathtermplanList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 字典翻译
classFormat(row, column) {
var actions = [];
var datas = this.classOptions;
Object.keys(datas).map((key) => {
if (datas[key].bjbh == "" + row.classid) {
actions.push(datas[key].bjmc);
return false;
}
});
return actions.join("");
},
// 学年学期字典翻译
xnxqFormat(row, column) {
return this.selectDictLabel(this.xnxqOptions, row.xnxq);
},
// 状态字典翻译
statusFormat(row, column) {
return this.selectDictLabel(this.statusOptions, row.status);
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: undefined,
schoolid: undefined,
classid: undefined,
name: undefined,
startmonth: undefined,
endmonth: undefined,
xnxq: undefined,
status: "0",
spr: undefined,
sptime: undefined,
spyj: undefined,
remark: undefined,
createuserid: undefined,
createTime: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.id);
this.single = selection.length != 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加游戏数学学期计划";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids;
getMathtermplan(id).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改游戏数学学期计划";
const time = [];
time.push(response.data.startmonth);
time.push(response.data.endmonth);
this.form.startmonth = time;
});
},
/** 提交按钮 */
submitForm: function () {
this.$refs["form"].validate((valid) => {
if (valid) {
const time = this.form.startmonth;
this.form.startmonth = time[0];
this.form.endmonth = time[1];
if (this.form.id != undefined) {
updateMathtermplan(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
}
});
} else {
addMathtermplan(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
}
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$confirm(
'是否确认删除游戏数学学期计划数据项?',
"警告",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(function () {
return delMathtermplan(ids);
})
.then(() => {
this.getList();
this.msgSuccess("删除成功");
})
.catch(function () {});
},
/** 提交按钮操作 */
handleCheck(row) {
const id = row.id;
this.$confirm(
"是否确认提交游戏数学学期计划?提交后数据无法维护",
"警告",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}
)
.then(function () {
return checkTermplan(id);
})
.then(() => {
this.getList();
this.msgSuccess("提交成功");
})
.catch(function () {});
},
/** 预览按钮操作 */
// handleView(row) {
// const id = row.id;
// this.$router.push({
// path: "/benyi_course/mathtermplanprint/table/"+id,
// });
// },
},
};
</script>