Commit 09a1cddc by tangjiale

更新修改

parent 191434e8
assets/images/nav-logo.png

3.2 KB | W: | H:

assets/images/nav-logo.png

15.3 KB | W: | H:

assets/images/nav-logo.png
assets/images/nav-logo.png
assets/images/nav-logo.png
assets/images/nav-logo.png
  • 2-up
  • Swipe
  • Onion skin
<template> <template>
<div> <div>
<div class="layout-t"> <div class="layout-t">
<div class="head-title"> <div class="head-title">奔腾宝贝培训学校管理系统</div>
奔腾宝贝培训学校管理系统
</div> <!-- <img class="login-logo" src="@/assets/images/nav-logo.png" alt=""> -->
<div class="flex-c"> <div class="flex-c">
<!--权限配置栏--> <!--权限配置栏-->
...@@ -109,6 +109,9 @@ ...@@ -109,6 +109,9 @@
color:#096DD9; color:#096DD9;
font-weight: 600; font-weight: 600;
} }
.login-logo{
height: 35px;
}
} }
.header{ .header{
display: block;margin-left: 10px;margin-right: 8px;flex: none; display: block;margin-left: 10px;margin-right: 8px;flex: none;
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* @eMail: 932055106@qq.com * @eMail: 932055106@qq.com
* @Date: 2022-06-06 09:28:37 * @Date: 2022-06-06 09:28:37
* @LastEditors: tangjiale * @LastEditors: tangjiale
* @LastEditTime: 2022-06-27 15:13:10 * @LastEditTime: 2022-06-30 11:31:14
--> -->
<template> <template>
<div class="add-course-bg"> <div class="add-course-bg">
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
<t-select v-model="param.courseStep" placeholder="请选择" :ds="[{name:'小学组',value:1},{name:'初中组',value:2},{name:'高中组',value:3}]"></t-select> <t-select v-model="param.courseStep" placeholder="请选择" :ds="[{name:'小学组',value:1},{name:'初中组',value:2},{name:'高中组',value:3}]"></t-select>
</el-form-item> </el-form-item>
<el-form-item label="课程类型:" prop="type"> <el-form-item label="课程类型:" prop="type">
<t-select v-model="param.type" placeholder="请选择" :ds="[{name:'正式班课',value:1},{name:'体验课',value:2}]"></t-select> <t-select v-model="param.type" placeholder="请选择" :ds="[{name:'正课',value:1},{name:'体验课',value:2}]"></t-select>
</el-form-item> </el-form-item>
<el-form-item label="课程层次:" prop="leveId"> <el-form-item label="课程层次:" prop="leveId">
<t-select v-model="param.leveId" placeholder="请选择" :ds="[{name:'基础班',value:1},{name:'提高班',value:2},{name:'精英班',value:3},{name:'赛事班',value:4}]"></t-select> <t-select v-model="param.leveId" placeholder="请选择" :ds="[{name:'基础班',value:1},{name:'提高班',value:2},{name:'精英班',value:3},{name:'赛事班',value:4}]"></t-select>
......
...@@ -3,17 +3,17 @@ ...@@ -3,17 +3,17 @@
* @eMail: 932055106@qq.com * @eMail: 932055106@qq.com
* @Date: 2022-06-17 08:47:27 * @Date: 2022-06-17 08:47:27
* @LastEditors: tangjiale * @LastEditors: tangjiale
* @LastEditTime: 2022-06-27 11:05:04 * @LastEditTime: 2022-06-30 11:13:11
--> -->
<template> <template>
<!-- 班课报名详情 --> <!-- 班课报名详情 -->
<el-dialog :title="type==1?'订单详情':type==2?'订单详情':'课详情记录'" class="model-bg" :visible.sync="show" <el-dialog :title="type==1?'订单详情':type==2?'订单详情':'课详情记录'" class="model-bg" :visible.sync="show"
:close-on-click-modal="false" width="1200px"> :close-on-click-modal="false" width="1200px">
<template v-if="detail && detail.bmStuName"> <template v-if="detail && detail.bmStuName">
<!-- 课记录详情 --> <!-- 课记录详情 -->
<template v-if="type == 3"> <template v-if="type == 3">
<el-row :gutter="10"> <el-row :gutter="10">
<el-col :span="8">课程名称:{{detail.name}}</el-col> <el-col :span="8">课程名称:{{detail.name}}</el-col>
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
</el-row> </el-row>
<el-row :gutter="10"></el-row> <el-row :gutter="10"></el-row>
<el-row :gutter="10"> <el-row :gutter="10">
<el-col :span="8"><span class="gren-c">课时:{{detail.totalKs - (detail.syKs || 0)}}课时</span> / 剩余课时:{{detail.syKs || 0}}课时</el-col> <el-col :span="8"><span class="gren-c">课时:{{detail.totalKs - (detail.syKs || 0)}}课时</span> / 剩余课时:{{detail.syKs || 0}}课时</el-col>
</el-row> </el-row>
<el-row :gutter="10"></el-row> <el-row :gutter="10"></el-row>
<el-row :gutter="10"> <el-row :gutter="10">
......
...@@ -43,7 +43,7 @@ export default { ...@@ -43,7 +43,7 @@ export default {
regionCode:'',schName:'' regionCode:'',schName:''
}, },
options: { options: {
title: "课报名", title: "正价课报名",
search: [ search: [
{ {
label: '所属校区:',field: 'schId', type: 'select',autoSelect:true,required:true, label: '所属校区:',field: 'schId', type: 'select',autoSelect:true,required:true,
...@@ -132,7 +132,7 @@ export default { ...@@ -132,7 +132,7 @@ export default {
} }
delete param["daterange"]; delete param["daterange"];
delete param.undefined delete param.undefined
let failName = `课报名收费列表${ let failName = `正价课报名收费列表${
param.startDate ? param.startDate + "-" + param.endDate : "" param.startDate ? param.startDate + "-" + param.endDate : ""
}`; }`;
this.$service.course this.$service.course
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* @eMail: 932055106@qq.com * @eMail: 932055106@qq.com
* @Date: 2022-06-02 14:08:46 * @Date: 2022-06-02 14:08:46
* @LastEditors: tangjiale * @LastEditors: tangjiale
* @LastEditTime: 2022-06-28 11:42:23 * @LastEditTime: 2022-06-30 11:30:45
--> -->
<template> <template>
<div class="page-bg"> <div class="page-bg">
...@@ -52,7 +52,7 @@ export default { ...@@ -52,7 +52,7 @@ export default {
ds: [{name:'全部',value:''}, {name:'基础班',value:1},{name:'提高班',value:2},{name:'精英班',value:3},{name:'赛事班',value:4}] ds: [{name:'全部',value:''}, {name:'基础班',value:1},{name:'提高班',value:2},{name:'精英班',value:3},{name:'赛事班',value:4}]
},{ },{
label: '课程类型:', field: 'type', type: 'select',autoSelect:true,required:true, label: '课程类型:', field: 'type', type: 'select',autoSelect:true,required:true,
ds: [{name:'全部',value:''}, {name:'体验课',value:2}, {name:'正式班课',value:1}] ds: [{name:'全部',value:''}, {name:'体验课',value:2}, {name:'正课',value:1}]
},{ },{
label: '课程状态:', field: 'status', type: 'select',autoSelect:true,required:true, label: '课程状态:', field: 'status', type: 'select',autoSelect:true,required:true,
ds: [{name:'全部',value:''}, {name:'已发布',value:1}, {name:'未发布',value:0}] ds: [{name:'全部',value:''}, {name:'已发布',value:1}, {name:'未发布',value:0}]
...@@ -83,7 +83,7 @@ export default { ...@@ -83,7 +83,7 @@ export default {
fieldFunction: row => (row.cost / 100), fieldFunction: row => (row.cost / 100),
},{ },{
title: "课程类型", type: 'customField',width:'80px', title: "课程类型", type: 'customField',width:'80px',
fieldFunction: row => (row.type == 1 ?'正课' : '体验课'), fieldFunction: row => (row.type == 1 ?'正课' : '体验课'),
}, },
{ {
title: "操作", title: "操作",
......
...@@ -80,7 +80,7 @@ export default { ...@@ -80,7 +80,7 @@ export default {
type: 'customField', type: 'customField',
fieldFunction: row => (orderState[row.orderStatus] || ''), fieldFunction: row => (orderState[row.orderStatus] || ''),
}, },
{title: "操作",type: "customViewField",width:'180px'} {title: "操作",type: "customViewField",width:'190px'}
], ],
}, },
}, },
......
<template> <template>
<div class="page-bg"> <div class="page-bg">
<div class="page-bg-l"> <div class="page-bg-l">
<!-- <img class="login-logo" src="../assets/images/login-logo.png" alt=""> --> <img class="login-logo" src="../assets/images/nav-logo.png" alt="">
<div class="banner-bg"> <div class="banner-bg">
<!-- <img src="../assets/images/login-image.png" alt=""> -->
<!-- <img src="../static/img/login/login-banner1.png" alt=""> --> <!-- <img src="../static/img/login/login-banner1.png" alt=""> -->
</div> </div>
</div> </div>
...@@ -145,9 +143,11 @@ ...@@ -145,9 +143,11 @@
&-l{ &-l{
width: calc(100% - 608px); width: calc(100% - 608px);
height: 100vh; height: 100vh;
background-image: url('../assets/images/login-bg.png');
background-size: 100%;
.login-logo{ .login-logo{
height: 42px; height: 45px;
width: 358px; width: 368px;
margin-left: 42px; margin-left: 42px;
margin-top: 35px; margin-top: 35px;
} }
...@@ -157,6 +157,7 @@ ...@@ -157,6 +157,7 @@
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
padding: 80px; padding: 80px;
background-color: redd;
img img
{height: 100%;display: block;margin: 0px auto;} {height: 100%;display: block;margin: 0px auto;}
} }
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* @eMail: 932055106@qq.com * @eMail: 932055106@qq.com
* @Date: 2022-06-16 16:01:31 * @Date: 2022-06-16 16:01:31
* @LastEditors: tangjiale * @LastEditors: tangjiale
* @LastEditTime: 2022-06-28 11:27:25 * @LastEditTime: 2022-06-30 11:30:48
--> -->
<template> <template>
...@@ -41,14 +41,14 @@ export default { ...@@ -41,14 +41,14 @@ export default {
warning:2, //是否预警 warning:2, //是否预警
}, },
options:{ options:{
title:'课记录', title:'课记录',
search:[ search:[
{ {
label: '所属校区:',field: 'schId', type: 'select',autoSelect:true,required:true, label: '所属校区:',field: 'schId', type: 'select',autoSelect:true,required:true,
ds: {service:'base',func:'getUserAllSchList',params:{all:true}} ds: {service:'base',func:'getUserAllSchList',params:{all:true}}
},{ },{
label: '课程类型:', field: 'type', type: 'select',autoSelect:true,required:true, label: '课程类型:', field: 'type', type: 'select',autoSelect:true,required:true,
ds: [{name:'全部',value:''}, {name:'体验课',value:2}, {name:'正式班课',value:1}] ds: [{name:'全部',value:''}, {name:'体验课',value:2}, {name:'正课',value:1}]
},{ },{
placeholder: "请输入学生姓名 ",field: "stuName",type: "text",label: "", placeholder: "请输入学生姓名 ",field: "stuName",type: "text",label: "",
},{ },{
...@@ -72,7 +72,7 @@ export default { ...@@ -72,7 +72,7 @@ export default {
title: "课程名称",field: "name" title: "课程名称",field: "name"
},{ },{
title: "课程类型", type: 'customField',width:'80px', title: "课程类型", type: 'customField',width:'80px',
fieldFunction: row => (row.type == 1 ?'正课' : '体验课'), fieldFunction: row => (row.type == 1 ?'正课' : '体验课'),
},{ },{
title: "价格", type: 'customField',width:'80px', title: "价格", type: 'customField',width:'80px',
fieldFunction: row => (row.cost / 100), fieldFunction: row => (row.cost / 100),
...@@ -120,7 +120,7 @@ export default { ...@@ -120,7 +120,7 @@ export default {
...this.params, ...this.params,
}; };
delete param.undefined delete param.undefined
let failName = `课记录列表${ let failName = `课记录列表${
param.startDate ? param.startDate + "-" + param.endDate : "" param.startDate ? param.startDate + "-" + param.endDate : ""
}`; }`;
this.$service.course this.$service.course
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* @eMail: 932055106@qq.com * @eMail: 932055106@qq.com
* @Date: 2022-02-11 09:23:35 * @Date: 2022-02-11 09:23:35
* @LastEditors: tangjiale * @LastEditors: tangjiale
* @LastEditTime: 2022-06-17 14:47:43 * @LastEditTime: 2022-06-30 11:13:23
*/ */
export default class CourseService extends Service { export default class CourseService extends Service {
...@@ -124,7 +124,7 @@ export default class CourseService extends Service { ...@@ -124,7 +124,7 @@ export default class CourseService extends Service {
}); });
} }
//课详细记录 //课详细记录
getSalesDetail(param){ getSalesDetail(param){
return this.get({ return this.get({
url: "/course/cancelCourseDetail", url: "/course/cancelCourseDetail",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment