一日流程评估优化
This commit is contained in:
parent
46faa3ab3d
commit
42df499ff1
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="4" :xs="24">
|
<el-col :span="6" :xs="24">
|
||||||
<div class="head-container">
|
<div class="head-container">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="name"
|
v-model="name"
|
||||||
@ -12,19 +12,19 @@
|
|||||||
style="margin-bottom: 20px"
|
style="margin-bottom: 20px"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="head-container">
|
<div class="head-container tree">
|
||||||
<el-tree
|
<el-tree
|
||||||
:data="treeOptions"
|
:data="treeOptions"
|
||||||
:props="defaultProps"
|
:props="defaultProps"
|
||||||
:expand-on-click-node="false"
|
:expand-on-click-node="false"
|
||||||
:filter-node-method="filterNode"
|
:filter-node-method="filterNode"
|
||||||
ref="tree"
|
ref="tree"
|
||||||
default-expand-all
|
:default-expand-all="false"
|
||||||
@node-click="handleNodeClick"
|
@node-click="handleNodeClick"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="20" :xs="24">
|
<el-col :span="18" :xs="24">
|
||||||
<el-card class="box-card">
|
<el-card class="box-card">
|
||||||
<div slot="header" class="clearfix">
|
<div slot="header" class="clearfix">
|
||||||
<span class="box-card-title">{{ title }}</span>
|
<span class="box-card-title">{{ title }}</span>
|
||||||
@ -50,7 +50,7 @@
|
|||||||
import { treeselect, getMicrocourse } from "@/api/benyi/microcourse";
|
import { treeselect, getMicrocourse } from "@/api/benyi/microcourse";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "Detail",
|
name: "Microcoursestudy",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
// 主题整合名称
|
// 主题整合名称
|
||||||
@ -186,4 +186,12 @@ div {
|
|||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
.el-tree {
|
||||||
|
min-width: 100%;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.tree {
|
||||||
|
overflow:auto;
|
||||||
|
max-height: 300px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
@ -22,21 +22,33 @@
|
|||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<sql id="selectByMicrocourseVoTree">
|
<sql id="selectByMicrocourseVoTree">
|
||||||
select dict_value+9999 id, 0 parent_id,dict_label title,dict_sort sort from sys_dict_data where dict_type='sys_yebjlx' and dict_label !='托班(2-3岁)'
|
select dict_value+9999 id, 0 parent_id,dict_label title,dict_sort sort from sys_dict_data where dict_type='sys_yebjlx' and dict_label !='托班(2-3岁)'
|
||||||
union all
|
union all
|
||||||
select 1000101 ,concat(10001),'上册','5'
|
select 1000101 ,concat(10001),'上册',5
|
||||||
union all
|
|
||||||
select 1000102 ,concat(10001),'下册','6'
|
|
||||||
union all
|
|
||||||
select 1000201 ,concat(10002),'上册','7'
|
|
||||||
union all
|
|
||||||
select 1000202 ,concat(10002),'下册','8'
|
|
||||||
union all
|
|
||||||
select 1000301 ,concat(10003),'上册','9'
|
|
||||||
union all
|
|
||||||
select 1000302 ,concat(10003),'下册','10'
|
|
||||||
union all
|
union all
|
||||||
select id, CONCAT(scpoe+9999,upanddown), title, sort from by_microcourse
|
select 1000102 ,concat(10001),'下册',6
|
||||||
|
union all
|
||||||
|
select 1000201 ,concat(10002),'上册',7
|
||||||
|
union all
|
||||||
|
select 1000202 ,concat(10002),'下册',8
|
||||||
|
union all
|
||||||
|
select 1000301 ,concat(10003),'上册',9
|
||||||
|
union all
|
||||||
|
select 1000302 ,concat(10003),'下册',10
|
||||||
|
union all
|
||||||
|
select concat(1000101,dict_value), 1000101,dict_label title,dict_sort sort from sys_dict_data where dict_type='sys_dm_wxkclx'
|
||||||
|
union all
|
||||||
|
select concat(1000102,dict_value), 1000102,dict_label title,dict_sort sort from sys_dict_data where dict_type='sys_dm_wxkclx'
|
||||||
|
union all
|
||||||
|
select concat(1000201,dict_value), 1000201,dict_label title,dict_sort sort from sys_dict_data where dict_type='sys_dm_wxkclx'
|
||||||
|
union all
|
||||||
|
select concat(1000202,dict_value), 1000202,dict_label title,dict_sort sort from sys_dict_data where dict_type='sys_dm_wxkclx'
|
||||||
|
union all
|
||||||
|
select concat(1000301,dict_value), 1000301,dict_label title,dict_sort sort from sys_dict_data where dict_type='sys_dm_wxkclx'
|
||||||
|
union all
|
||||||
|
select concat(1000302,dict_value), 1000302,dict_label title,dict_sort sort from sys_dict_data where dict_type='sys_dm_wxkclx'
|
||||||
|
union all
|
||||||
|
select id, CONCAT(scpoe+9999,upanddown,type), title, sort from by_microcourse
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<select id="selectByMicrocourseListTree" parameterType="ByMicrocourse" resultMap="ByMicrocourseResult">
|
<select id="selectByMicrocourseListTree" parameterType="ByMicrocourse" resultMap="ByMicrocourseResult">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user