|
@@ -19,9 +19,8 @@
|
|
<div class="right">
|
|
<div class="right">
|
|
<div class="projectApplicationApplypAHeader">
|
|
<div class="projectApplicationApplypAHeader">
|
|
<div class="pAHeader1">项目立项申请</div>
|
|
<div class="pAHeader1">项目立项申请</div>
|
|
- <div class="pAHeader2">申请开放时间为2023年××月××日9:00</div>
|
|
|
|
- <div class="pAHeader2">截止时间为2023年××月××日18:00</div>
|
|
|
|
- <div class="pAHeader3" @click="backBtn1">返回</div>
|
|
|
|
|
|
+ <div class="pAHeader2">申请开放时间为2023年××月××日9:00 截止时间为2023年××月××日18:00</div>
|
|
|
|
+ <el-button class="pAHeader3" @click="backBtn1" type="primary" size="mini">返回</el-button>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<hr>
|
|
|
|
|
|
@@ -123,14 +122,14 @@
|
|
prop="operation"
|
|
prop="operation"
|
|
label="操作"
|
|
label="操作"
|
|
>
|
|
>
|
|
- <!-- <template #default="scope"> -->
|
|
|
|
|
|
+ <template #default="scope">
|
|
<div class="operations">
|
|
<div class="operations">
|
|
<!-- <el-button type="primary" > -->
|
|
<!-- <el-button type="primary" > -->
|
|
- <el-button type="primary" class="bt1" size="mini">修改</el-button>
|
|
|
|
- <el-button type="primary" class="bt1" size="mini">删除</el-button>
|
|
|
|
|
|
+ <el-button type="primary" size="mini">修改</el-button>
|
|
|
|
+ <el-button type="primary" @click="Del(scope)" size="mini">删除</el-button>
|
|
<!-- </el-button> -->
|
|
<!-- </el-button> -->
|
|
</div>
|
|
</div>
|
|
- <!-- </template> -->
|
|
|
|
|
|
+ </template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
<!-- 项目成员表格结束 -->
|
|
<!-- 项目成员表格结束 -->
|
|
@@ -236,8 +235,11 @@
|
|
this.addPerson();
|
|
this.addPerson();
|
|
this.init()
|
|
this.init()
|
|
},
|
|
},
|
|
-
|
|
|
|
|
|
+ Del(){
|
|
|
|
+
|
|
|
|
+ }
|
|
},
|
|
},
|
|
|
|
+
|
|
created(){
|
|
created(){
|
|
// this.value=(this.options[0].value)
|
|
// this.value=(this.options[0].value)
|
|
},
|
|
},
|
|
@@ -265,61 +267,38 @@
|
|
margin-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
// 右边栏标题
|
|
// 右边栏标题
|
|
.projectApplicationApplypAHeader{
|
|
.projectApplicationApplypAHeader{
|
|
- width: 90%;
|
|
|
|
|
|
+ width: 100%;
|
|
display: flex;
|
|
display: flex;
|
|
justify-content:flex-start;
|
|
justify-content:flex-start;
|
|
position: relative;
|
|
position: relative;
|
|
|
|
+ margin-bottom: 15px;
|
|
.pAHeader1{
|
|
.pAHeader1{
|
|
- // width: 150px;
|
|
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
font-size: 22px;
|
|
font-size: 22px;
|
|
flex-shrink: 0;
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
.pAHeader2{
|
|
.pAHeader2{
|
|
- margin: 10px 0 0 20px;
|
|
|
|
|
|
+ position: absolute;
|
|
|
|
+ top:8px;
|
|
|
|
+ left: 160px;
|
|
font-size: 16px;
|
|
font-size: 16px;
|
|
background: repeating-linear-gradient();
|
|
background: repeating-linear-gradient();
|
|
}
|
|
}
|
|
|
|
+ .pAHeader3{
|
|
|
|
+ background: #0e72e6 !important;
|
|
|
|
+ color: #fff !important;
|
|
|
|
+ display: flex;
|
|
|
|
+ position: absolute;
|
|
|
|
+ right: 0;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ width: 100px;
|
|
|
|
+ height: 30px;
|
|
|
|
+ align-items: center;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- // 输入框部分
|
|
|
|
- .projectApplicationApplySelects{
|
|
|
|
- width: 80%;
|
|
|
|
- margin: 20px 0px;
|
|
|
|
- display: flex;
|
|
|
|
- flex-wrap: wrap;
|
|
|
|
- .inp1{
|
|
|
|
- display: flex;
|
|
|
|
- margin-top: 10px;
|
|
|
|
- margin-bottom: 15px;
|
|
|
|
- width: 36%;
|
|
|
|
- margin-right: 11%;
|
|
|
|
- .inpText{
|
|
|
|
- max-width: 100px;
|
|
|
|
- min-width: 100px;
|
|
|
|
- margin-right: 5px;
|
|
|
|
- display: inline-block;
|
|
|
|
- text-align: justify;
|
|
|
|
- text-justify:distribute-all-lines;
|
|
|
|
- text-align-last: justify;
|
|
|
|
- transform: translate(0,22%);
|
|
|
|
- padding-right: 15px;
|
|
|
|
- font-size: 16px;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- // 表格
|
|
|
|
|
|
|
|
- .operations{
|
|
|
|
- display: flex;
|
|
|
|
- justify-content: center;
|
|
|
|
- flex-shrink: 0;
|
|
|
|
- .bt1{
|
|
|
|
- margin-left:5px ;
|
|
|
|
- font-size:14px ;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|