feat:合并

This commit is contained in:
lixg
2022-11-21 17:51:39 +08:00
8 changed files with 943 additions and 706 deletions

View File

@@ -5,11 +5,12 @@
<img class="img" src="../../assets/images/projectadd/picture.png" />
</div>
<div class="imgfor">
<div class="forz">管理者进阶-腾飞班1备份</div>
<div class="forz">{{ projectInfo.name || "-" }}</div>
<div class="fort">
<div class="fort1">项目经理黄华刘俊备份</div>
<div class="fort1">项目经理{{ projectInfo.manager || "-" }}</div>
<div class="fort2">
起止时间2022-09-21 00:00 2022-10-21 00:00
起止时间{{ projectInfo.beginTime || "-" }}
{{ projectInfo.endTime || "-" }}
</div>
</div>
</div>
@@ -338,7 +339,6 @@
</div>
</div>
</div>
<div v-if="edit" class="pjcb_content">
<div class="content content1">
<span>当前设计下学员可以获得 </span
@@ -640,7 +640,6 @@
</div>
</div>
</template>
<script>
import { ref, reactive, defineComponent, toRefs, onMounted } from "vue";
import { message } from "ant-design-vue";
@@ -839,6 +838,12 @@ export default defineComponent({
boeFlag: false,
},
isEdit: false, // 是否处于编辑状态
projectInfo: {
beginTime: null,
endTime: null,
name: null,
manager: null,
},
});
const value = ref("");
const value2 = ref("");
@@ -868,7 +873,7 @@ export default defineComponent({
// 获取详情
const getDetail = () => {
api
.templateDetail(0)
.templateDetail(1)
.then((res) => {
console.log(res);
state.formData.name = res.data.data.projectInfo.name;
@@ -1074,7 +1079,6 @@ export default defineComponent({
display: block;
clear: both;
}
.addwrapper {
width: 100%;
height: 100%;
@@ -1235,7 +1239,6 @@ export default defineComponent({
margin-left: 30px;
margin-top: 10px;
}
.split {
width: 100%;
height: 20px;
@@ -1304,13 +1307,11 @@ export default defineComponent({
.taskSyllabus {
// flex: 1;
overflow-x: auto;
.ant-collapse {
border: 0px;
background-color: rgba(255, 255, 255, 0);
min-width: 1040px;
}
.ant-collapse-content > .ant-collapse-content-box {
padding-top: 0px;
padding-bottom: 0px;
@@ -1342,13 +1343,11 @@ export default defineComponent({
//width: 100%;
flex-shrink: 0;
margin-right: 24px;
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 25px 0px;
margin-left: 22px;
//margin: 0 12px;
border: 1px solid #f2f6fc;
border-top: 0px;
@@ -1360,7 +1359,6 @@ export default defineComponent({
//height: 71px;
margin-left: 12px;
margin-right: 50px;
.iconame {
//position: absolute;
color: #4f5156;
@@ -1472,7 +1470,6 @@ export default defineComponent({
}
}
}
.notice {
.ntc_tit {
padding-top: 22px;
@@ -1533,7 +1530,6 @@ export default defineComponent({
}
}
}
.projectscore {
padding-top: 22px;
.pjc_tit {
@@ -1545,7 +1541,6 @@ export default defineComponent({
.pjc_body {
margin-left: 34px;
margin-right: 34px;
.groupright {
display: flex;
justify-content: space-between;
@@ -1612,7 +1607,6 @@ export default defineComponent({
}
}
}
.setting {
padding-top: 22px;
.set_tit {
@@ -1642,4 +1636,4 @@ export default defineComponent({
}
}
}
</style>
</style>