|
@@ -104,6 +104,11 @@
|
|
<br/>
|
|
<br/>
|
|
|
|
|
|
<br v-if="user.companyId == 936">
|
|
<br v-if="user.companyId == 936">
|
|
|
|
+ <!-- 时间段筛选 -->
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <span style="margin-left:15px;margin-right:5px;color:#606266;">时间段</span>
|
|
|
|
+ <el-date-picker v-model="createDate" type="daterange" :range-separator="$t('other.to')" :start-placeholder="$t('time.startDate')" :end-placeholder="$t('time.endDate')" @change="manageSelect()" value-format="yyyy-MM-dd" :placeholder="$t('optiondate')" size="small" clearable style="width:290px;margin-left:5px"></el-date-picker>
|
|
|
|
+ </el-form-item>
|
|
<!-- 项目经理筛选 -->
|
|
<!-- 项目经理筛选 -->
|
|
<el-form-item>
|
|
<el-form-item>
|
|
<span style="margin-left:5px;margin-right:5px;color:#606266;">{{ $t('projectmanager') }}</span>
|
|
<span style="margin-left:5px;margin-right:5px;color:#606266;">{{ $t('projectmanager') }}</span>
|
|
@@ -1466,7 +1471,9 @@ a {
|
|
paramData1: false,
|
|
paramData1: false,
|
|
chosenListBackup: [], // 备份
|
|
chosenListBackup: [], // 备份
|
|
searchPersonnelFlg: false,
|
|
searchPersonnelFlg: false,
|
|
- searchPersonnelFlgnum: 1
|
|
|
|
|
|
+ searchPersonnelFlgnum: 1,
|
|
|
|
+
|
|
|
|
+ createDate: [], // 项目筛选时间段
|
|
};
|
|
};
|
|
},
|
|
},
|
|
// 过滤器
|
|
// 过滤器
|
|
@@ -3451,7 +3458,11 @@ a {
|
|
category: this.statusClf,
|
|
category: this.statusClf,
|
|
projectMainId: this.projectMainId,
|
|
projectMainId: this.projectMainId,
|
|
inchagerId: this.inchagerId,
|
|
inchagerId: this.inchagerId,
|
|
- participation: this.participationId
|
|
|
|
|
|
+ participation: this.participationId,
|
|
|
|
+ }
|
|
|
|
+ if(this.createDate.length > 0) {
|
|
|
|
+ parameter.startDate = this.createDate[0]
|
|
|
|
+ parameter.endDate = this.createDate[1]
|
|
}
|
|
}
|
|
if(this.sortOrder){
|
|
if(this.sortOrder){
|
|
if(this.sortProp == 'inchargerName'){
|
|
if(this.sortProp == 'inchargerName'){
|