@@ -303,6 +347,35 @@
type="selection"
width="55"
align="center" />
+
+
+
+
+
{
+ res.data.MaintenanceProjectClassification.forEach((item, index) => {
+ this.projectData.push({
+ label: item,
+ value: index
+ })
+ })
+ res.data.MaintenanceProjectStatus.forEach((item, index) => {
+ this.projectStatus.push({
+ label: item,
+ value: index
+ })
+ this.xmztOptions = this.projectStatus
+ })
+ res.data.notMaintenanceProjectClassification.forEach((item, index) => {
+ this.notProjectData.push({
+ label: item,
+ value: index
+ })
+ })
+ res.data.notMaintenanceProjectStatus.forEach((item, index) => {
+ this.notProjectStatus.push({
+ label: item,
+ value: index
+ })
+ })
+ })
+ }
},
mounted() {
if(this.$route.query.bpnId){
this.getTaskId()
}
+ this.selectSort()
this.getProjectData();
// 查询各下拉框数据
this.$http.get("sys/dictype/getDicTypeListCode", "", {
@@ -759,6 +875,16 @@ export default {