mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-09 02:46:45 +08:00
743 lines
19 KiB
Vue
743 lines
19 KiB
Vue
<!---- 创建项目页面 --->
|
||
<template>
|
||
<div class="projectAdd">
|
||
<div class="header">
|
||
<span class="title">{{ projectInfo.parentId ? '编辑' : '创建' }}项目</span>
|
||
<div
|
||
@click="backPage"
|
||
style="cursor: pointer"
|
||
to="/projectmanage"
|
||
class="goback"
|
||
>
|
||
<span class="return"></span><span class="returntext">返回</span>
|
||
</div>
|
||
</div>
|
||
<div class="content">
|
||
<div class="main">
|
||
<div class="name" v-if="projectInfo.parentName">
|
||
<div class="namebox">
|
||
<img
|
||
class="nameimg"
|
||
src="../../assets/images/basicinfo/asterisk.png"
|
||
/>
|
||
<div class="inname">项目归属</div>
|
||
</div>
|
||
<div class="in">
|
||
<div style="color: #c7cbd2; font-size: 14px; margin-left: 15px">
|
||
{{ projectInfo.parentName }}
|
||
</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">
|
||
<a-input
|
||
v-model:value="projectInfo.name"
|
||
placeholder="请输入项目名称"
|
||
show-count
|
||
:maxlength="30"
|
||
:disabled="viewDetail ? true : false"
|
||
/>
|
||
</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">
|
||
<div class="namebox">
|
||
<img
|
||
class="nameimg"
|
||
src="../../assets/images/basicinfo/asterisk.png"
|
||
/>
|
||
<div class="inname">封面图</div>
|
||
</div>
|
||
<div
|
||
:class="`box ${projectInfo.picUrl == src?'active':''}`"
|
||
style="
|
||
width: 100px;
|
||
height: 100px;
|
||
border-radius: 5px;
|
||
cursor: pointer;
|
||
position: relative;
|
||
overflow: hidden;
|
||
"
|
||
v-for="(src,index) in projectPic"
|
||
:key="index"
|
||
@click="()=>{
|
||
projectInfo.picUrl = src
|
||
}"
|
||
>
|
||
<img
|
||
style="
|
||
width: 100px;
|
||
height: 100px;
|
||
margin-bottom: 4px;
|
||
margin-right: 4px;
|
||
"
|
||
:src="src"
|
||
alt="avatar"
|
||
/>
|
||
</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">
|
||
<a-range-picker
|
||
separator="至"
|
||
:placeholder="[' 开始时间', ' 结束时间']"
|
||
v-model:value="projectInfo.rangeTime"
|
||
style="width: 100%; height: 40px; border-radius: 5px"
|
||
valueFormat="YYYY-MM-DD HH:mm:ss"
|
||
@change="timeChange"
|
||
:disabled="viewDetail ? true : false"
|
||
/>
|
||
</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">
|
||
<ProjectManager v-model:value="projectInfo.managerId" v-model:name="projectInfo.manager"
|
||
mode="multiple"></ProjectManager>
|
||
</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">
|
||
<OrgClass v-model:value="projectInfo.sourceBelongId" v-model:name="projectInfo.sourceBelongName"></OrgClass>
|
||
</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"
|
||
:disabled="viewDetail ? true : false"
|
||
/>
|
||
</div>
|
||
</div>
|
||
<div class="name name2">
|
||
<div class="namebox">
|
||
<div class="inname">同步学习记录</div>
|
||
</div>
|
||
<div class="in">
|
||
<a-switch
|
||
v-model:checked="projectInfo.courseSyncFlag"
|
||
:checkedValue="1"
|
||
:unCheckedValue="0"
|
||
:disabled="viewDetail ? true : false"
|
||
><span
|
||
style="
|
||
width: 100%;
|
||
color: rgba(109, 117, 132, 1);
|
||
font-size: 14px;
|
||
"
|
||
>同步课程学习记录(如学员在课程库中拥有课程的学习记录,自动免修该课程)</span
|
||
></a-switch>
|
||
</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">
|
||
<ProjectLevel v-model:value="projectInfo.level"></ProjectLevel>
|
||
</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">
|
||
<TrainClass v-model:value="projectInfo.systemId"></TrainClass>
|
||
</div>
|
||
</div>
|
||
<div class="name">
|
||
<div class="namebox">
|
||
<!-- <img-->
|
||
<!-- class="nameimg"-->
|
||
<!-- src="../../assets/images/basicinfo/asterisk.png"-->
|
||
<!-- />-->
|
||
<div class="inname">是否BOEU实施</div>
|
||
</div>
|
||
<div class="in">
|
||
<a-switch
|
||
v-model:checked="projectInfo.boeFlag"
|
||
:checkedValue="1"
|
||
:unCheckedValue="0"
|
||
:disabled="viewDetail ? true : false"
|
||
></a-switch>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="template">
|
||
<div class="name">
|
||
<div class="inname" style="width: 50px">模版</div>
|
||
<div class="in select" style="margin-left: 2px">
|
||
<a-select
|
||
:getPopupContainer="
|
||
(triggerNode) => {
|
||
return triggerNode.parentNode || document.body;
|
||
}
|
||
"
|
||
v-model:value="classifySelect5"
|
||
placeholder="请选择模版"
|
||
:size="size"
|
||
style="width: 100%"
|
||
:options="classifyList5"
|
||
@change="classificationChange5"
|
||
@popupScroll="templateScroll"
|
||
:fieldNames="{
|
||
label: 'name',
|
||
value: 'projectTemplateId',
|
||
}"
|
||
>
|
||
</a-select>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="footer">
|
||
<div class="btn">
|
||
<a-button v-on:click="createProject" type="primary" class="btn1"
|
||
>确定
|
||
</a-button
|
||
>
|
||
<a-button @click="backPage" class="btn2">取消</a-button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
<script>
|
||
import {onMounted, reactive, toRefs, watch} from "vue";
|
||
import {message} from "ant-design-vue";
|
||
import {useRoute, useRouter} from "vue-router";
|
||
import * as api from "../../api/index";
|
||
import {useStore} from "vuex";
|
||
import ProjectClass from "@/components/project/ProjectClass";
|
||
import TrainClass from "@/components/project/TrainClass";
|
||
import OrgClass from "@/components/project/OrgClass";
|
||
import ProjectManager from "@/components/project/ProjectManager";
|
||
import ProjectLevel from "@/components/project/ProjectLevel";
|
||
import {scrollLoad} from "@/api/method";
|
||
|
||
export default {
|
||
name: "projectAdd",
|
||
components: {
|
||
ProjectManager,
|
||
ProjectLevel,
|
||
ProjectClass,
|
||
TrainClass,
|
||
OrgClass
|
||
},
|
||
setup() {
|
||
const store = useStore();
|
||
const routers = useRoute();
|
||
const router = useRouter();
|
||
const state = reactive({
|
||
currentPage: 1, //当前页
|
||
tableDataTotal: -1, //模版列表总数
|
||
pageSize: 10, //每页10条数据
|
||
totalPages: 0, //总页数
|
||
viewDetail: null,
|
||
projectInfo: {},
|
||
projectPic: [],
|
||
memberParam: {
|
||
pageNo: 1,
|
||
pageSize: 10,
|
||
keyWord: "",
|
||
},
|
||
classifyList5: []
|
||
});
|
||
|
||
onMounted(() => {
|
||
state.projectPic = store.state.projectPic.map(e => e.dictValue)
|
||
state.viewDetail = routers.query.viewDetail
|
||
getProjectInfo()
|
||
getTemplate()
|
||
})
|
||
|
||
watch(routers.query, () => {
|
||
state.projectInfo.projectId = routers.query.projectId
|
||
state.projectInfo.parentName = routers.query.parentName
|
||
state.projectInfo.parentId = routers.query.parentId
|
||
})
|
||
|
||
|
||
function getProjectInfo() {
|
||
if (!routers.query.projectId) {
|
||
state.projectInfo = {parentName: routers.query.parentName, parentId: routers.query.parentId}
|
||
return
|
||
}
|
||
api.getProjectDetail({projectId: routers.query.projectId}).then(res => {
|
||
state.projectInfo = res.data.data.projectInfo
|
||
state.projectInfo.rangeTime = [state.projectInfo.beginTime, state.projectInfo.endTime]
|
||
state.projectInfo.parentName = routers.query.parentName
|
||
})
|
||
}
|
||
|
||
const backPage = () => {
|
||
router.back()
|
||
};
|
||
|
||
//选择分类
|
||
const classificationChange = (value) => {
|
||
console.log(`selected ${value}`);
|
||
state.projectType = value; //分类选择的id
|
||
};
|
||
|
||
|
||
const classificationChange5 = (key, option) => {
|
||
state.projectInfo = option
|
||
state.projectInfo.type = 3
|
||
state.projectInfo.rangeTime = [option.beginTime, option.endTime]
|
||
state.projectInfo.parentName = routers.query.parentName
|
||
state.projectInfo.parentId = routers.query.parentId
|
||
};
|
||
//获取模版列表
|
||
const getTemplate = () => {
|
||
let obj = {
|
||
pageNo: state.currentPage,
|
||
pageSize: state.pageSize,
|
||
status: 1
|
||
};
|
||
api.getTemplate(obj).then((res) => {
|
||
state.totalPages = Number(res.data.data.pages);
|
||
state.classifyList5 = res.data.data.rows
|
||
})
|
||
};
|
||
|
||
//模版滚动加载模板信息
|
||
const templateScroll = (e) => {
|
||
let num = scrollLoad(e);
|
||
if (num === 1) {
|
||
state.currentPage = 1;
|
||
} else if (num === 2) {
|
||
// 如果滑到底部,则加载下一页
|
||
state.currentPage++;
|
||
getTemplate();
|
||
}
|
||
};
|
||
|
||
const errorMsgs = {
|
||
name: "请输入项目名称",
|
||
category: "请选择项目分类",
|
||
picUrl: "请上传项目封面图",
|
||
beginTime: "请选择项目开始时间",
|
||
endTime: "请选择项目结束时间",
|
||
manager: "请选择项目经理",
|
||
managerId: "请选择项目经理",
|
||
sourceBelongId: "请选择资源归属",
|
||
level: "请填写项目级别",
|
||
systemId: "请填写项目培训体系",
|
||
};
|
||
|
||
function timeChange(e) {
|
||
if (e && e.length === 2) {
|
||
state.projectInfo.beginTime = e[0]
|
||
state.projectInfo.endTime = e[1]
|
||
}
|
||
}
|
||
|
||
function validate(obj, errorMsgs) {
|
||
for (let i in errorMsgs) {
|
||
if (!obj[i]) {
|
||
message.destroy();
|
||
message.warning(errorMsgs[i]);
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
|
||
const createProject = () => {
|
||
console.log("保存", state.projectInfo);
|
||
if (!validate(state.projectInfo, errorMsgs)) {
|
||
return;
|
||
}
|
||
state.projectInfo.type = 3
|
||
api.createProject(state.projectInfo).then(() => {
|
||
message.destroy();
|
||
message.success("编辑成功");
|
||
router.back()
|
||
}
|
||
)
|
||
};
|
||
|
||
return {
|
||
...toRefs(state),
|
||
timeChange,
|
||
classificationChange,
|
||
classificationChange5,
|
||
createProject,
|
||
backPage,
|
||
templateScroll
|
||
};
|
||
},
|
||
};
|
||
</script>
|
||
<style lang="scss">
|
||
.projectAdd {
|
||
width: 100%;
|
||
// height: inherit;
|
||
// flex: 1;
|
||
// flex-shrink: 0;
|
||
// overflow-y: auto;
|
||
|
||
.header {
|
||
width: 100%;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
|
||
.title {
|
||
color: #000000;
|
||
font-size: 18px;
|
||
//line-height: 36px;
|
||
padding-top: 30px;
|
||
padding-left: 37px;
|
||
//font-weight: 500;
|
||
}
|
||
|
||
.goback {
|
||
padding-right: 70px;
|
||
//padding-top: 37px;
|
||
position: relative;
|
||
|
||
.return {
|
||
display: inline-block;
|
||
width: 42px;
|
||
height: 42px;
|
||
margin-top: 17px;
|
||
margin-right: 10px;
|
||
background-image: url("../../assets/images/projectadd/return.png");
|
||
}
|
||
|
||
.returntext {
|
||
display: inline-block;
|
||
position: absolute;
|
||
top: 27px;
|
||
color: #4ea6ff;
|
||
font-size: 14px;
|
||
}
|
||
}
|
||
}
|
||
|
||
// 修改 antd upload 样式
|
||
.ant-upload {
|
||
border-width: 0px;
|
||
}
|
||
|
||
.active {
|
||
border: 1px solid rgba(78, 166, 255, 1);
|
||
}
|
||
|
||
.content {
|
||
display: flex;
|
||
|
||
.main {
|
||
width: 50%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
//justify-content: center;
|
||
float: left;
|
||
border-right: 1px solid rgba(153, 155, 163, 0.3);
|
||
|
||
.name {
|
||
width: 78%;
|
||
// background-color: lightcoral;
|
||
display: flex;
|
||
margin-top: 20px;
|
||
align-items: center;
|
||
|
||
//height: 40px;
|
||
// border: 1px solid black;
|
||
.namebox {
|
||
width: 120px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: flex-end;
|
||
flex-shrink: 0;
|
||
|
||
.nameimg {
|
||
width: 10px;
|
||
height: 10px;
|
||
}
|
||
}
|
||
|
||
.d {
|
||
margin-top: 8px;
|
||
font-size: 25px;
|
||
color: #ff4e4e;
|
||
}
|
||
|
||
.box {
|
||
position: relative;
|
||
margin-left: 14px;
|
||
|
||
|
||
.box1 {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 50%;
|
||
width: 50px;
|
||
margin-left: -25px;
|
||
margin-top: -5px;
|
||
border-top: 2px solid rgba(78, 166, 255, 1);
|
||
}
|
||
|
||
.box2 {
|
||
position: absolute;
|
||
left: 50%;
|
||
top: 50%;
|
||
height: 50px;
|
||
//margin-left: -5px;
|
||
margin-top: -25px;
|
||
border-left: 2px solid rgba(78, 166, 255, 1);
|
||
}
|
||
}
|
||
|
||
.inname {
|
||
color: #6f6f6f;
|
||
font-size: 14px;
|
||
margin-left: 7px;
|
||
}
|
||
|
||
.in {
|
||
margin-left: 14px;
|
||
flex: 1;
|
||
|
||
// .ant-radio-wrapper {
|
||
// }
|
||
.ant-input-textarea-show-count {
|
||
position: relative;
|
||
height: 88px;
|
||
}
|
||
|
||
.ant-input-textarea-show-count::after {
|
||
position: absolute;
|
||
right: 10px;
|
||
bottom: 0px;
|
||
}
|
||
|
||
.ant-input {
|
||
border-radius: 8px;
|
||
// height: 120%;
|
||
width: 100%;
|
||
height: 40px;
|
||
}
|
||
|
||
.ant-input-affix-wrapper {
|
||
padding: 0 11px;
|
||
border-radius: 8px;
|
||
}
|
||
|
||
.ant-select-selector {
|
||
border-radius: 5px;
|
||
// height: 120%;
|
||
width: 100%;
|
||
// height: 40px;
|
||
}
|
||
}
|
||
|
||
.filebox {
|
||
margin-left: 14px;
|
||
flex: 1;
|
||
|
||
.fileimg {
|
||
width: 15px;
|
||
height: 15px;
|
||
margin-right: 6px;
|
||
}
|
||
|
||
.filetext {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #4ea6ff;
|
||
line-height: 36px;
|
||
}
|
||
|
||
.support {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #999ba3;
|
||
line-height: 36px;
|
||
margin-top: 8px;
|
||
word-break: break-all;
|
||
}
|
||
}
|
||
}
|
||
|
||
.name2 {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
|
||
.ant-input-textarea {
|
||
.ant-input {
|
||
height: 88px;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.template {
|
||
width: 50%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
//justify-content: center;
|
||
float: right;
|
||
|
||
.name {
|
||
width: 78%;
|
||
// background-color: lightcoral;
|
||
display: flex;
|
||
margin-top: 20px;
|
||
align-items: center;
|
||
height: 40px;
|
||
|
||
// border: 1px solid black;
|
||
.d {
|
||
margin-top: 8px;
|
||
font-size: 25px;
|
||
color: #ff4e4e;
|
||
}
|
||
|
||
.inname {
|
||
color: #6f6f6f;
|
||
font-size: 14px;
|
||
margin-left: 7px;
|
||
width: 65px;
|
||
}
|
||
|
||
.in {
|
||
margin-left: 14px;
|
||
width: 81%;
|
||
|
||
.ant-input {
|
||
border-radius: 5px;
|
||
// height: 120%;
|
||
width: 100%;
|
||
height: 40px;
|
||
}
|
||
|
||
.ant-select-selector {
|
||
border-radius: 5px;
|
||
// height: 120%;
|
||
width: 100%;
|
||
height: 40px;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.footer {
|
||
width: 100%;
|
||
margin-top: 31px;
|
||
margin-bottom: 14px;
|
||
padding-bottom: 20px;
|
||
|
||
.btn {
|
||
display: flex;
|
||
justify-content: center;
|
||
|
||
.btn1 {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
width: 100px;
|
||
height: 40px;
|
||
border-radius: 8px;
|
||
background: #409eff;
|
||
color: #ffffff;
|
||
margin-right: 14px;
|
||
}
|
||
|
||
.btn2 {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
width: 100px;
|
||
height: 40px;
|
||
border-radius: 8px;
|
||
border: 1px solid #409eff;
|
||
background: #ffffff;
|
||
color: #409eff;
|
||
}
|
||
}
|
||
|
||
.text {
|
||
color: rgba(153, 155, 163, 1);
|
||
font-size: 14px;
|
||
margin-left: 223px;
|
||
}
|
||
}
|
||
}
|
||
|
||
.treeDropdown {
|
||
// width: 240px !important;
|
||
// border-radius: 5px;
|
||
// min-height: 600px !important;
|
||
.ant-select-tree-list-scrollbar {
|
||
width: 5px !important;
|
||
|
||
.ant-select-tree-list-scrollbar-thumb {
|
||
background-color: #4ea6ff !important;
|
||
}
|
||
}
|
||
|
||
.ant-select-tree-indent-unit {
|
||
width: 7px !important;
|
||
}
|
||
}
|
||
</style>
|