|
@@ -28,6 +28,13 @@
|
|
<el-option label="已撤销" value=3 ></el-option>
|
|
<el-option label="已撤销" value=3 ></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
+ <!-- 主项目筛选 -->
|
|
|
|
+ <el-form-item v-if="user.timeType.mainProjectState == '1'">
|
|
|
|
+ <span style="margin-left:5px;margin-right:5px;color:#606266;">主项目</span>
|
|
|
|
+ <el-select v-model="projectMainId" style="width:110px;" placeholder="请选择" clearable @change="searchClfList" size="small">
|
|
|
|
+ <el-option v-for="item in mainProjectList" :key="item.id" :label="item.name" :value="item.id" ></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
<!-- 分类筛选 -->
|
|
<!-- 分类筛选 -->
|
|
<el-form-item >
|
|
<el-form-item >
|
|
<span style="margin-left:5px;margin-right:5px;color:#606266;">分类</span>
|
|
<span style="margin-left:5px;margin-right:5px;color:#606266;">分类</span>
|
|
@@ -35,6 +42,7 @@
|
|
<el-option v-for="item in baseClfList" :key="item.id" :label="item.name" :value="item.id" ></el-option>
|
|
<el-option v-for="item in baseClfList" :key="item.id" :label="item.name" :value="item.id" ></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
+
|
|
<!-- 分类条目 -->
|
|
<!-- 分类条目 -->
|
|
<!-- <el-form-item style="float:right;" v-if="permissions.projectClassification">
|
|
<!-- <el-form-item style="float:right;" v-if="permissions.projectClassification">
|
|
<el-link type="primary" :underline="false" @click="showClfDialog = true">分类管理</el-link>
|
|
<el-link type="primary" :underline="false" @click="showClfDialog = true">分类管理</el-link>
|
|
@@ -874,7 +882,8 @@ a {
|
|
addGroupPersonPdialog: false,
|
|
addGroupPersonPdialog: false,
|
|
showColumnWidth: '300',
|
|
showColumnWidth: '300',
|
|
deleteVif: null,
|
|
deleteVif: null,
|
|
- isAddGroupPerson: true
|
|
|
|
|
|
+ isAddGroupPerson: true,
|
|
|
|
+ projectMainId: ''
|
|
|
|
|
|
};
|
|
};
|
|
},
|
|
},
|
|
@@ -2206,7 +2215,8 @@ a {
|
|
keyword:this.keyword,
|
|
keyword:this.keyword,
|
|
searchField: this.searchField,
|
|
searchField: this.searchField,
|
|
status: this.status,
|
|
status: this.status,
|
|
- category: this.statusClf
|
|
|
|
|
|
+ category: this.statusClf,
|
|
|
|
+ projectMainId: this.projectMainId
|
|
//
|
|
//
|
|
},
|
|
},
|
|
res => {
|
|
res => {
|