feat:创建任务页面

This commit is contained in:
岳佳鑫
2022-10-11 17:55:01 +08:00
parent 52585f781e
commit da2e87a940
8 changed files with 1221 additions and 10 deletions

View File

@@ -45,6 +45,7 @@ LevelAddDetail.vue:创建关卡页面
ProjectManage.vue:项目页面 ProjectManage.vue:项目页面
ProjectAdd.vue:创建项目页面 ProjectAdd.vue:创建项目页面
TaskPage.vue:任务页面 TaskPage.vue:任务页面
TaskAdd.vue:创建任务页面
TemplateLibrary.vue:模板页面 TemplateLibrary.vue:模板页面
``` ```

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

File diff suppressed because it is too large Load Diff

View File

@@ -20,7 +20,7 @@
<div class="end"> <div class="end">
<div style="margin-top: 20px;margin-left: 10px"> <div style="margin-top: 20px;margin-left: 10px">
<img class="endimg" src="../../assets/images/leveladd/more.png"/> <img class="endimg" src="../../assets/images/leveladd/more.png"/>
<div class="tableSelect" style="margin-left: 10px"> <div class="tableSelect" style="margin-left: 10px;margin-right: 20px">
<a-select <a-select
style="width: 50px; color: #7096E3" style="width: 50px; color: #7096E3"
value="更多" value="更多"
@@ -40,12 +40,11 @@
</div> </div>
</div> </div>
<div class="end"> <div class="end">
<div style="margin-top: 20px;margin-left: 10px"> <div style="margin-top: 20px;margin-left: 10px;margin-right:30px">
<img class="ending" src="../../assets/images/leveladd/back.png" /> <img class="ending" src="../../assets/images/leveladd/back.png" />
<span class="endtext" style="color:#4EA6FF">返回</span> <span class="endtext" style="color:#4EA6FF">返回</span>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<div class="split"></div> <div class="split"></div>
@@ -258,10 +257,11 @@
width: 100%; width: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
position: relative; //position: relative;
.header { .header {
width: 100%; width: 100%;
display: flex; display: flex;
flex-wrap: wrap;
.box { .box {
border: 12px solid #E7F2FF; border: 12px solid #E7F2FF;
margin: 16px 0 16px 19px; margin: 16px 0 16px 19px;
@@ -270,12 +270,13 @@
} }
.imgfor { .imgfor {
display: flex; display: flex;
flex: 1;
flex-direction: column; flex-direction: column;
margin-top: 38px; margin-top: 38px;
//margin-left: 15px; margin-left: 15px;
//float: left; //float: left;
position: absolute; //position: absolute;
left: 210px; //left: 210px;
.forz { .forz {
font-size: 16px; font-size: 16px;
color: #363636; color: #363636;
@@ -289,9 +290,9 @@
} }
.right { .right {
display: flex; display: flex;
position: absolute; //position: absolute;
right: 10px; //right: 10px;
top: 5px; //top: 5px;
//float: right; //float: right;
.end { .end {
border-left: 1px solid #E8EFFA; border-left: 1px solid #E8EFFA;

View File

@@ -278,6 +278,7 @@
margin-bottom: 14px; margin-bottom: 14px;
.btn { .btn {
display: flex; display: flex;
margin-bottom: 20px;
justify-content: center; justify-content: center;
cursor: pointer; cursor: pointer;
} }