|
@@ -570,9 +570,9 @@
|
|
|
|
|
|
|
|
|
<!-- 按周填报项目筛选 -->
|
|
|
- <div v-if="selConShow">
|
|
|
- <span style="margin-right:1rem">请选择要填报的项目</span>
|
|
|
- <el-select v-model="selCon" multiple placeholder="请选择" filterable style="width:40rem">
|
|
|
+ <div v-if="selConShow" class="selConStyle">
|
|
|
+ <div class="selConStyle_title">请选择要填报的项目</div>
|
|
|
+ <el-select v-model="selCon" multiple placeholder="请选择" filterable>
|
|
|
<el-option
|
|
|
v-for="item in projectList"
|
|
|
:key="item.id"
|
|
@@ -583,14 +583,14 @@
|
|
|
</div>
|
|
|
<span slot="footer" class="dialog-footer" v-if="selConShow">
|
|
|
<el-button @click="selListqx()">取 消</el-button>
|
|
|
- <el-button type="primary" @click="selListFun()">确 认</el-button>
|
|
|
+ <el-button type="primary" @click="selListFun()">下一步</el-button>
|
|
|
<!-- :loading="submitingReport" -->
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
|
|
<span slot="footer" class="dialog-footer" v-if="!selConShow">
|
|
|
- <el-button @click="selConShow = true" style="float:left;" class="el-icon-back">选择项目</el-button>
|
|
|
+ <el-button @click="zhoAddlast()" style="float:left;" class="el-icon-back">选择项目</el-button>
|
|
|
<el-button @click="zhoAddqx()">取 消</el-button>
|
|
|
<el-button type="primary" @click="zhoAdd()" :loading="submitingReport">提 交</el-button>
|
|
|
</span>
|
|
@@ -3357,6 +3357,7 @@
|
|
|
},
|
|
|
// 按周填报的项目筛选
|
|
|
selListFun(){
|
|
|
+ this.selProjectList = []
|
|
|
if(this.selCon.length){
|
|
|
for (let i = 0; i < this.selCon.length; i++) {
|
|
|
this.selProjectList.push(this.projectList.find(item => item.id == this.selCon[i]))
|
|
@@ -3473,6 +3474,9 @@
|
|
|
arr.splice(i, 1)
|
|
|
},
|
|
|
|
|
|
+ zhoAddlast(){
|
|
|
+ this.selConShow = true
|
|
|
+ },
|
|
|
zhoAddqx(){
|
|
|
this.diasZho = false
|
|
|
this.selConShow = true
|
|
@@ -4371,6 +4375,19 @@
|
|
|
float: right;
|
|
|
margin-top: -10px;
|
|
|
}
|
|
|
+ .selConStyle{
|
|
|
+ margin-top:9rem;
|
|
|
+ margin-bottom:11rem;
|
|
|
+ .selConStyle_title{
|
|
|
+ height: 3rem;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 17px;
|
|
|
+ }
|
|
|
+ .el-select{
|
|
|
+ margin: 0 15%;
|
|
|
+ width: 70%;
|
|
|
+ }
|
|
|
+ }
|
|
|
</style>
|
|
|
|
|
|
<style lang="scss">
|