This commit is contained in:
zhangyc
2022-12-14 16:04:10 +08:00
parent 117dd5f184
commit 4b12a51f51
8 changed files with 867 additions and 799 deletions

View File

@@ -1,3 +1,11 @@
<!--
* @Author: lixg lixg@dongwu-inc.com
* @Date: 2022-12-14 15:46:36
* @LastEditors: lixg lixg@dongwu-inc.com
* @LastEditTime: 2022-12-14 15:47:48
* @FilePath: /fe-manage/src/components/project/ProjectClass.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<!-- 评估管理-创建评估页面 --> <!-- 评估管理-创建评估页面 -->
<template> <template>
<a-select <a-select
@@ -17,30 +25,30 @@
</a-select> </a-select>
</template> </template>
<script setup> <script setup>
import {computed, defineEmits, defineProps, onMounted, ref} from "vue"; import { computed, defineEmits, defineProps } from "vue";
import { useStore } from "vuex"; import { useStore } from "vuex";
const store = useStore(); const store = useStore();
const props = defineProps({ const props = defineProps({
value: String, value: String,
disabled: String disabled: String,
}) });
const emit = defineEmits({}) const emit = defineEmits({});
const options = ref([]) const options = computed(() =>
store.state.projectClass.map((e) => ({
value: parseInt(e.dictCode),
label: e.dictName,
}))
);
const id = computed(() => { const id = computed(() => {
return props.value return props.value;
}) });
onMounted(() => {
options.value = store.state.projectClass.map(e => ({value: parseInt(e.dictCode), label: e.dictName}))
})
function change(key, obj) { function change(key, obj) {
emit('update:name', obj[0]) emit("update:name", obj[0]);
emit('update:value', key) emit("update:value", key);
} }
</script> </script>

View File

@@ -1,6 +1,14 @@
<!--
* @Author: lixg lixg@dongwu-inc.com
* @Date: 2022-12-14 15:46:36
* @LastEditors: lixg lixg@dongwu-inc.com
* @LastEditTime: 2022-12-14 15:47:21
* @FilePath: /fe-manage/src/components/project/ProjectLevel.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<template> <template>
<template v-if="tag"> <template v-if="tag">
<div>{{ options?.find(e => e.value == id)?.label || '' }}</div> <div>{{ options?.find((e) => e.value == id)?.label || "" }}</div>
</template> </template>
<template v-else> <template v-else>
<a-select <a-select
@@ -19,33 +27,33 @@
</template> </template>
</template> </template>
<script setup> <script setup>
import {computed, defineEmits, defineProps, onMounted, ref} from "vue"; import { computed, defineEmits, defineProps } from "vue";
import { useStore } from "vuex"; import { useStore } from "vuex";
const store = useStore(); const store = useStore();
const props = defineProps({ const props = defineProps({
value: String, value: String,
disabled: String, disabled: String,
tag: { tag: {
type: Boolean, type: Boolean,
default: false default: false,
} },
}) });
const id = computed(() => { const id = computed(() => {
return props.value || null return props.value || null;
}) });
const emit = defineEmits({}) const emit = defineEmits({});
const options = ref([]) const options = computed(() =>
store.state.projectLevel.map((e) => ({
onMounted(() => { value: parseInt(e.dictCode),
options.value = store.state.projectLevel.map(e => ({value: parseInt(e.dictCode), label: e.dictName})) label: e.dictName,
}) }))
);
function change(key) { function change(key) {
emit('update:value', key) emit("update:value", key);
} }
</script> </script>

View File

@@ -1,6 +1,14 @@
<!--
* @Author: lixg lixg@dongwu-inc.com
* @Date: 2022-12-14 15:46:36
* @LastEditors: lixg lixg@dongwu-inc.com
* @LastEditTime: 2022-12-14 15:47:46
* @FilePath: /fe-manage/src/components/project/TrainClass.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<template> <template>
<template v-if="tag"> <template v-if="tag">
<div>{{ options.find(e => e.value == id)?.label || '' }}</div> <div>{{ options.find((e) => e.value == id)?.label || "" }}</div>
</template> </template>
<template v-else> <template v-else>
<a-select <a-select
@@ -17,10 +25,9 @@
:disabled="disabled" :disabled="disabled"
/> />
</template> </template>
</template> </template>
<script setup> <script setup>
import {computed, defineEmits, defineProps, onMounted, ref} from "vue"; import { computed, defineEmits, defineProps } from "vue";
import { useStore } from "vuex"; import { useStore } from "vuex";
const store = useStore(); const store = useStore();
@@ -30,24 +37,24 @@ const props = defineProps({
disabled: String, disabled: String,
tag: { tag: {
type: Boolean, type: Boolean,
default: false default: false,
} },
}) });
const id = computed(() => { const id = computed(() => {
return props.value return props.value;
}) });
const emit = defineEmits({}) const emit = defineEmits({});
const options = ref([]) const options = computed(() =>
store.state.projectSys.map((e) => ({
onMounted(() => { value: parseInt(e.dictCode),
options.value = store.state.projectSys.map(e => ({value: parseInt(e.dictCode), label: e.dictName})) label: e.dictName,
}) }))
);
function change(key) { function change(key) {
emit('update:value', key) emit("update:value", key);
} }
</script> </script>

View File

@@ -90,10 +90,8 @@
<div class="search"></div> <div class="search"></div>
<div class="btnText">重置</div> <div class="btnText">重置</div>
</div> </div>
</div> </div>
<div class="btns"> <div class="btns">
<!-- 2022-11-30注释 后面放开 --> <!-- 2022-11-30注释 后面放开 -->
<!-- <div class="btn btn3" @click="openMessage"> <!-- <div class="btn btn3" @click="openMessage">
<div class="search"></div> <div class="search"></div>
@@ -631,7 +629,7 @@
<span style="margin-right: 14px">授课教师</span> <span style="margin-right: 14px">授课教师</span>
</div> </div>
<div class="item_inp"> <div class="item_inp">
<div class="select" style="width:436px; " > <div class="select" style="width: 436px">
<ProjectManager <ProjectManager
v-model:value="member.value" v-model:value="member.value"
v-model:name="member.name" v-model:name="member.name"
@@ -815,7 +813,8 @@
]" ]"
> >
<div class="fb"> <div class="fb">
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleEdit(record, String(record.courseform)); handleEdit(record, String(record.courseform));
@@ -826,7 +825,8 @@
编辑 编辑
</div> </div>
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleCopy(record, String(record.courseform)); handleCopy(record, String(record.courseform));
@@ -893,7 +893,8 @@
<down-outlined /> <down-outlined />
</a> </a>
</a-dropdown> --> </a-dropdown> -->
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleDelete(record, String(record.courseform)); handleDelete(record, String(record.courseform));
@@ -921,7 +922,8 @@
]" ]"
> >
<div class="fb"> <div class="fb">
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleRejectExit(record, String(record.courseform)); handleRejectExit(record, String(record.courseform));
@@ -931,7 +933,8 @@
> >
撤回 撤回
</div> </div>
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleCopy(record, String(record.courseform)); handleCopy(record, String(record.courseform));
@@ -1017,7 +1020,8 @@
]" ]"
> >
<div class="fb"> <div class="fb">
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleStart(record, String(record.courseform)); handleStart(record, String(record.courseform));
@@ -1027,7 +1031,8 @@
> >
开课 开课
</div> </div>
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleLook(record, String(record.courseform)); handleLook(record, String(record.courseform));
@@ -1059,7 +1064,8 @@
> >
管理 管理
</div>--> </div>-->
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleCopy(record, String(record.courseform)); handleCopy(record, String(record.courseform));
@@ -1126,7 +1132,8 @@
<down-outlined /> <down-outlined />
</a> </a>
</a-dropdown> --> </a-dropdown> -->
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleStop(record, String(record.courseform)); handleStop(record, String(record.courseform));
@@ -1138,7 +1145,6 @@
</div> </div>
</div> </div>
</div> </div>
</template> </template>
<template <template
v-if=" v-if="
@@ -1156,7 +1162,8 @@
]" ]"
> >
<div class="fb"> <div class="fb">
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleStart(record, String(record.courseform)); handleStart(record, String(record.courseform));
@@ -1166,7 +1173,8 @@
> >
开课 开课
</div> </div>
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleEdit(record, String(record.courseform)); handleEdit(record, String(record.courseform));
@@ -1198,7 +1206,8 @@
> >
管理 管理
</div> --> </div> -->
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleCopy(record, String(record.courseform)); handleCopy(record, String(record.courseform));
@@ -1265,7 +1274,8 @@
<down-outlined /> <down-outlined />
</a> </a>
</a-dropdown> --> </a-dropdown> -->
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleOpen(record, String(record.courseform)); handleOpen(record, String(record.courseform));
@@ -1275,7 +1285,8 @@
> >
启用 启用
</div> </div>
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleDelete(record, String(record.courseform)); handleDelete(record, String(record.courseform));
@@ -1304,7 +1315,8 @@
]" ]"
> >
<div class="fb"> <div class="fb">
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleEdit(record, String(record.courseform)); handleEdit(record, String(record.courseform));
@@ -1314,7 +1326,8 @@
> >
编辑 编辑
</div> </div>
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleCopy(record, String(record.courseform)); handleCopy(record, String(record.courseform));
@@ -1381,7 +1394,8 @@
<down-outlined /> <down-outlined />
</a> </a>
</a-dropdown> --> </a-dropdown> -->
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handleDelete(record, String(record.courseform)); handleDelete(record, String(record.courseform));
@@ -1725,7 +1739,8 @@
<div class="btnText"> <div class="btnText">
<span style="color: #ffffff">新建开课</span> <span style="color: #ffffff">新建开课</span>
</div> </div>
</div></div> </div>
</div>
</div> </div>
<!-- 无数据样式 --> <!-- 无数据样式 -->
<div class="notable" v-if="tableData6.length === 0"> <div class="notable" v-if="tableData6.length === 0">
@@ -1771,7 +1786,8 @@
签到 签到
</div> </div>
--> -->
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handelEditStu(record); handelEditStu(record);
@@ -1780,7 +1796,8 @@
> >
编辑 编辑
</div> </div>
<div class="jc" <div
class="jc"
@click=" @click="
() => { () => {
handelGuan(record); handelGuan(record);
@@ -1792,7 +1809,7 @@
</div> </div>
<a-dropdown> <a-dropdown>
<template #overlay> <template #overlay>
<a-menu style="margin-left: 20px;"> <a-menu style="margin-left: 20px">
<a-menu-item <a-menu-item
@click=" @click="
() => { () => {
@@ -1824,11 +1841,12 @@
</a-menu-item> --> </a-menu-item> -->
</a-menu> </a-menu>
</template> </template>
<div class="fb" style="margin-left: -20px;"> <div class="fb" style="margin-left: -20px">
<div class="jc"> <div class="jc">
更多 更多
<down-outlined /> <down-outlined />
</div></div> </div>
</div>
</a-dropdown> </a-dropdown>
</div> </div>
</template> </template>
@@ -1853,8 +1871,6 @@
</div> </div>
</div> </div>
</div> </div>
</a-modal> </a-modal>
<!--开课页面 --> <!--开课页面 -->
<!--新建开课页面 --> <!--新建开课页面 -->
@@ -1950,7 +1966,7 @@
</div> </div>
<span style="margin-right: 3px">授课教师</span> <span style="margin-right: 3px">授课教师</span>
</div> </div>
<div class="select" style="width: 440px;"> <div class="select" style="width: 440px">
<ProjectManager <ProjectManager
v-model:value="member.value" v-model:value="member.value"
v-model:name="member.name" v-model:name="member.name"
@@ -1987,7 +2003,6 @@
</div> </div>
</div> </div>
<div class="cstm_items"> <div class="cstm_items">
<div class="signbox"> <div class="signbox">
<span style="margin-right: 3px">评估设置</span> <span style="margin-right: 3px">评估设置</span>
@@ -2099,8 +2114,16 @@
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
" "
>{{ item.slice(item.lastIndexOf("/") + 1) }}</span
> >
{{
item.indexOf("-") !== -1
? item.slice(
item.lastIndexOf("/") + 1,
item.lastIndexOf("-")
) + item.slice(item.lastIndexOf("."))
: item
}}
</span>
</div> </div>
<!-- 条件渲染 s --> <!-- 条件渲染 s -->
<!-- <div class="file_size"> <!-- <div class="file_size">
@@ -2227,7 +2250,12 @@
<a-input <a-input
v-model:value="xygl_inputV1" v-model:value="xygl_inputV1"
placeholder="请输入姓名" placeholder="请输入姓名"
style="width: 400px; height: 40px; border-radius: 8px;margin-right:14px;" style="
width: 400px;
height: 40px;
border-radius: 8px;
margin-right: 14px;
"
/> />
<div class="btn btn1" @click="handleSearchStu"> <div class="btn btn1" @click="handleSearchStu">
<div class="search"></div> <div class="search"></div>
@@ -2284,7 +2312,7 @@
</div> --> </div> -->
</div> </div>
</div> </div>
<div class="tableBox" style="margin-top:20px;"> <div class="tableBox" style="margin-top: 20px">
<a-table <a-table
:columns="columns7" :columns="columns7"
:data-source="tableData7" :data-source="tableData7"
@@ -4574,7 +4602,6 @@ export default defineComponent({
return message.warning("请选择课程形式"); return message.warning("请选择课程形式");
} }
if (state.valueE1 === 2) { if (state.valueE1 === 2) {
state.of_hs = false; state.of_hs = false;
// state.ft_hs = true; // state.ft_hs = true;
@@ -4814,7 +4841,7 @@ export default defineComponent({
.catch(); .catch();
console.log("res"); console.log("res");
console.log(item); console.log("获取面授课详情", item);
state.xjkkinputV2 = item.address; state.xjkkinputV2 = item.address;
state.checked1 = item.applyFlag === 1 ? true : false; state.checked1 = item.applyFlag === 1 ? true : false;
@@ -6001,7 +6028,6 @@ export default defineComponent({
} }
} }
.tableBox { .tableBox {
margin: 20px 38px 30px; margin: 20px 38px 30px;
@@ -7910,7 +7936,6 @@ export default defineComponent({
} }
.ant-table-thead > tr > th { .ant-table-thead > tr > th {
background-color: #eff4fc !important; background-color: #eff4fc !important;
} }
@@ -7954,7 +7979,6 @@ export default defineComponent({
} }
} }
} }
} }
} }
} }

View File

@@ -156,7 +156,7 @@
<div class="mbl_items12"> <div class="mbl_items12">
<div <div
class="i12_box1" class="i12_box1"
style="position:relative;" style="position: relative"
v-for="(item, index) in detail.attach" v-for="(item, index) in detail.attach"
:key="index" :key="index"
> >
@@ -207,21 +207,43 @@
<div class="file_detail"> <div class="file_detail">
<div class="file_name"> <div class="file_name">
<!-- http://111.231.196.214:12016/7.231.196.214:12016/7-1670486854017.jpg --> <!-- http://111.231.196.214:12016/7.231.196.214:12016/7-1670486854017.jpg -->
<span style="color: #6f6f6f;width:200px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;position:absolute;top:4px;left:72px;"> <span
{{ item.indexOf('-')!==-1?item.slice(item.lastIndexOf('/')+1,item.indexOf('-')) + item.slice(item.lastIndexOf('.')) :item }} style="
color: #6f6f6f;
width: 200px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
position: absolute;
top: 4px;
left: 72px;
"
>
{{
item.indexOf("-") !== -1
? item.slice(
item.lastIndexOf("/") + 1,
item.lastIndexOf("-")
) + item.slice(item.lastIndexOf("."))
: item
}}
</span> </span>
</div> </div>
<div class="file_updata"> <div class="file_updata">
<div class="updatabox"> <div class="updatabox">
<div class="updatacolor"></div> <div class="updatacolor"></div>
<div class="updataxq" style="right:-62px;">上传完成</div> <div class="updataxq" style="right: -62px">
上传完成
</div>
</div> </div>
<div class="upjd"> <div class="upjd">
<span style="margin: auto 5px">100%</span> <span style="margin: auto 5px">100%</span>
</div> </div>
</div> </div>
</div> </div>
<a :href="item" style="margin-left: 5px">下载</a>
</div> </div>
</div> </div>
</div> </div>
@@ -262,134 +284,140 @@ export default defineComponent({
}, },
}, },
setup(props, { emit }) { setup(props, { emit }) {
console.log(props); console.log("props", props);
const state = reactive({ const state = reactive({
imgList: [], imgList: [],
options2222: [ options2222: [
{ {
title: '领导力', title: "领导力",
value: '100', value: "100",
selectable: false, selectable: false,
children: [ children: [
{ {
title: '领导业务', title: "领导业务",
value: '1001', value: "1001",
}, },
{ {
title: '领导团队', title: "领导团队",
value: '1002', value: "1002",
}, },
{ {
title: '领导自我', title: "领导自我",
value: '1003', value: "1003",
}, },
], ],
}, },
{ {
title: '专业力', title: "专业力",
value: '200', value: "200",
selectable: false, selectable: false,
children: [ children: [
{ {
title: '研发', title: "研发",
value: '2001', value: "2001",
}, },
{ {
title: '产品和解决方案', title: "产品和解决方案",
value: '2002', value: "2002",
}, },
{ {
title: '生产技术与制造', title: "生产技术与制造",
value: '2003', value: "2003",
}, },
{ {
title: '供应链', title: "供应链",
value: '2004', value: "2004",
}, },
{ {
title: '营销', title: "营销",
value: '2005', value: "2005",
}, },
{ {
title: '品质', title: "品质",
value: '2006', value: "2006",
}, },
{ {
title: '战略与企划', title: "战略与企划",
value: '2007', value: "2007",
}, },
{ {
title: '流程管理', title: "流程管理",
value: '2008', value: "2008",
}, },
{ {
title: '业绩管理', title: "业绩管理",
value: '2009', value: "2009",
}, },
{ {
title: '项目管理', title: "项目管理",
value: '20010', value: "20010",
}, },
{ {
title: '信息技术', title: "信息技术",
value: '20011', value: "20011",
}, },
{ {
title: '环境与安全', title: "环境与安全",
value: '20012', value: "20012",
}, },
{ {
title: '人力资源', title: "人力资源",
value: '20013', value: "20013",
}, },
{ {
title: '企业文化', title: "企业文化",
value: '20014', value: "20014",
}, },
{ {
title: '品牌', title: "品牌",
value: '20015', value: "20015",
}, },
{ {
title: '财务', title: "财务",
value: '20016', value: "20016",
}, },
{ {
title: '法务', title: "法务",
value: '20017', value: "20017",
}, },
{ {
title: '行政', title: "行政",
value: '20018', value: "20018",
}, },
{ {
title: '医工', title: "医工",
value: '20019', value: "20019",
} },
], ],
}, },
{ {
title: '通用力', title: "通用力",
value: '300', value: "300",
selectable: false, selectable: false,
children: [ children: [
{ {
title: '职业操守与道德', title: "职业操守与道德",
value: '3001', value: "3001",
}, },
{ {
title: '职业素养与技能', title: "职业素养与技能",
value: '3002', value: "3002",
}, },
{ {
title: '规章制度', title: "规章制度",
value: '3003', value: "3003",
}, },
], ],
} },
] ],
ceshi: "https://u-pre.boe.com/upload/测试下载ppt2-1671002026755.pptx",
ceshi2: "http://111.231.196.214:12016/测试下载ppt3-1671001683026.pptx",
}); });
// item.slice(
// item.lastIndexOf("/") + 1,
// item.indexOf("-")
// ) + item.slice(item.lastIndexOf("."))
const filterTxt = (txt) => { const filterTxt = (txt) => {
if (txt) { if (txt) {
return txt; return txt;

View File

@@ -538,24 +538,6 @@
}}</span> }}</span>
</div> </div>
</div> </div>
<div class="set_content">
<div class="setc_name"><span>项目说明</span></div>
<div class="setc_main">
<span style="color: #999999">{{
projectInfo.remark
}}</span>
</div>
</div>
<div class="set_content">
<div class="setc_name"><span>同步学习记录</span></div>
<div class="setc_main">
<a-radio v-model:checked="projectInfo.courseSyncFlag"
><span style="color: #333333"
>同步课程学习记录如学员在课程库中拥有课程的学习记录自动免修该课程</span
></a-radio
>
</div>
</div>
<div class="set_content"> <div class="set_content">
<div class="setc_name"><span>项目级别</span></div> <div class="setc_name"><span>项目级别</span></div>
<div class="setc_main"> <div class="setc_main">
@@ -568,14 +550,32 @@
<TrainClass :value="projectInfo.systemId" :tag="true"></TrainClass> <TrainClass :value="projectInfo.systemId" :tag="true"></TrainClass>
</div> </div>
</div> </div>
<div class="set_content">
<div class="setc_name"><span>同步学习记录</span></div>
<div class="setc_main">
<a-radio v-model:checked="projectInfo.courseSyncFlag" :disabled="true"
><span style="color: #333333"
>同步课程学习记录如学员在课程库中拥有课程的学习记录自动免修该课程</span
></a-radio
>
</div>
</div>
<div class="set_content"> <div class="set_content">
<div class="setc_name"><span>是否BOEU实施</span></div> <div class="setc_name"><span>是否BOEU实施</span></div>
<div class="setc_main"> <div class="setc_main">
<a-radio v-model:checked="projectInfo.boeFlag" <a-radio v-model:checked="projectInfo.boeFlag" :disabled="true"
><span style="color: #333333">BOEU实施</span></a-radio ><span style="color: #333333">BOEU实施</span></a-radio
> >
</div> </div>
</div> </div>
<div class="set_content">
<div class="setc_name"><span>项目说明</span></div>
<div class="setc_main">
<span style="color: #999999">{{
projectInfo.remark
}}</span>
</div>
</div>
</div> </div>
</div> </div>
</a-tab-pane> </a-tab-pane>

View File

@@ -1147,9 +1147,25 @@
</div> </div>
</div> </div>
<div class="set_content"> <div class="set_content">
<div class="setc_name"><span>项目说明</span></div> <div class="setc_name"><span>项目级别</span></div>
<div class="setc_main"> <div class="setc_main">
<span style="color: #999999">{{ remark }}</span> <span style="color: #999999"
><ProjectLevel
v-model:value="level"
:tag="true"
></ProjectLevel
></span>
</div>
</div>
<div class="set_content">
<div class="setc_name"><span>培训体系:</span></div>
<div class="setc_main">
<span style="color: #999999"
><TrainClass
v-model:value="systemId"
:tag="true"
></TrainClass
></span>
</div> </div>
</div> </div>
<div class="set_content"> <div class="set_content">
@@ -1162,28 +1178,6 @@
> >
</div> </div>
</div> </div>
<div class="set_content">
<div class="setc_name"><span>项目级别:</span></div>
<div class="setc_main">
<span style="color: #999999"
><ProjectLevel
v-model:value="level"
:disabled="true"
></ProjectLevel
></span>
</div>
</div>
<div class="set_content">
<div class="setc_name"><span>培训体系:</span></div>
<div class="setc_main">
<span style="color: #999999"
><TrainClass
v-model:value="systemId"
:disabled="true"
></TrainClass
></span>
</div>
</div>
<div class="set_content"> <div class="set_content">
<div class="setc_name"><span>是否BOEU实施</span></div> <div class="setc_name"><span>是否BOEU实施</span></div>
<div class="setc_main"> <div class="setc_main">
@@ -1192,6 +1186,12 @@
> >
</div> </div>
</div> </div>
<div class="set_content">
<div class="setc_name"><span>项目说明:</span></div>
<div class="setc_main">
<span style="color: #999999">{{ remark }}</span>
</div>
</div>
<div class="set_content" v-if="isPass"> <div class="set_content" v-if="isPass">
<div class="setc_name"><span>审核意见:</span></div> <div class="setc_name"><span>审核意见:</span></div>
<div class="setc_main"> <div class="setc_main">

View File

@@ -31,18 +31,6 @@
/> />
</div> </div>
</div> </div>
<div class="name">
<div class="namebox">
<img
class="nameimg"
src="../../assets/images/basicinfo/asterisk.png"
/>
<div class="inname">分类</div>
</div>
<div class="in select">
<ProjectClass v-model:value="projectInfo.category"></ProjectClass>
</div>
</div>
<div class="name" style="align-items: flex-start"> <div class="name" style="align-items: flex-start">
<div class="namebox" style="margin-top: 10px"> <div class="namebox" style="margin-top: 10px">
<img <img
@@ -132,37 +120,6 @@
></OrgClass> ></OrgClass>
</div> </div>
</div> </div>
<div class="name name2">
<div class="namebox">
<div class="inname" style="margin-top: 13px">模板说明</div>
</div>
<div class="in">
<a-textarea
v-model:value="projectInfo.remark"
style="height: 80px"
placeholder="请输入说明"
show-count
:maxlength="200"
/>
</div>
</div>
<div class="name name2">
<div class="namebox">
<div class="inname">同步学习记录</div>
</div>
<div class="in">
<a-checkbox v-model:checked="projectInfo.courseSyncFlag"
><span
style="
width: 100%;
color: rgba(109, 117, 132, 1);
font-size: 14px;
"
>同步课程学习记录如学员在课程库中拥有课程的学习记录自动免修该课程</span
></a-checkbox
>
</div>
</div>
<div class="name"> <div class="name">
<div class="namebox"> <div class="namebox">
<img <img
@@ -202,6 +159,39 @@
</a-radio-group> </a-radio-group>
</div> </div>
</div> </div>
<div class="name name2">
<div class="namebox">
<div class="inname">同步学习记录</div>
</div>
<div class="in">
<a-checkbox
v-model:checked="courseSyncFlag"
:disabled="viewDetail ? true : false"
><span
style="
width: 100%;
color: rgba(109, 117, 132, 1);
font-size: 14px;
"
>同步课程学习记录如学员在课程库中拥有课程的学习记录自动免修该课程</span
></a-checkbox
>
</div>
</div>
<div class="name name2">
<div class="namebox">
<div class="inname" style="margin-top: 13px">模板说明</div>
</div>
<div class="in">
<a-textarea
v-model:value="projectInfo.remark"
style="height: 80px"
placeholder="请输入说明"
show-count
:maxlength="200"
/>
</div>
</div>
</div> </div>
</div> </div>
<div class="footer"> <div class="footer">
@@ -220,7 +210,7 @@ import { ref, onMounted, watch } from "vue";
import { message } from "ant-design-vue"; import { message } from "ant-design-vue";
import { useRouter, useRoute } from "vue-router"; import { useRouter, useRoute } from "vue-router";
import * as api from "../../api/indexTemplate"; import * as api from "../../api/indexTemplate";
import ProjectClass from "@/components/project/ProjectClass"; // import ProjectClass from "@/components/project/ProjectClass";
import TrainClass from "@/components/project/TrainClass"; import TrainClass from "@/components/project/TrainClass";
import OrgClass from "@/components/project/OrgClass"; import OrgClass from "@/components/project/OrgClass";
import ProjectManager from "@/components/project/ProjectManagerNew"; import ProjectManager from "@/components/project/ProjectManagerNew";
@@ -231,7 +221,7 @@ const router = useRouter();
const store = useStore(); const store = useStore();
const projectInfo = ref({}); const projectInfo = ref({});
const projectPic = ref([]); const projectPic = ref([]);
const courseSyncFlag = ref(false);
onMounted(() => { onMounted(() => {
getDetail(); getDetail();
projectPic.value = store.state.projectPic.map((e) => ({ projectPic.value = store.state.projectPic.map((e) => ({
@@ -255,6 +245,7 @@ const getDetail = () =>
projectInfo.value.beginTime, projectInfo.value.beginTime,
projectInfo.value.endTime, projectInfo.value.endTime,
]; ];
projectInfo.value.courseSyncFlag = !!projectInfo.value.courseSyncFlag;
}); });
const backPage = () => { const backPage = () => {
@@ -290,6 +281,7 @@ const createProject = () => {
return; return;
} }
} }
projectInfo.value.courseSyncFlag = courseSyncFlag.value ? 1 : 0;
api api
.templateEdit({ .templateEdit({
...projectInfo.value, ...projectInfo.value,
@@ -311,6 +303,7 @@ function managerChange(e, l, d, t) {
.active { .active {
border: 2px solid rgba(78, 166, 255, 1); border: 2px solid rgba(78, 166, 255, 1);
} }
.projectAdd { .projectAdd {
width: 100%; width: 100%;
// height: inherit; // height: inherit;