|
@@ -205,7 +205,7 @@
|
|
|
label: '创意组',
|
|
|
},
|
|
|
{
|
|
|
- value: '1',
|
|
|
+ value: 1,
|
|
|
label: '初创组',
|
|
|
}
|
|
|
]},
|
|
@@ -321,9 +321,10 @@
|
|
|
.then(res=>{
|
|
|
// this.select.sortOptions=res.data[0]
|
|
|
this.select.sortOptions[0].value=res.data[0][0].id
|
|
|
- this.select.sortOptions[0].label=res.data[0][0].name
|
|
|
- this.select.sortOptions[1].value=res.data[0][1].id
|
|
|
- this.select.sortOptions[1].label=res.data[0][1].name
|
|
|
+ this.select.sortOptions[0].label=res.data[0][0].name
|
|
|
+ this.select.sortOptions[1].value=res.data[0][1].id
|
|
|
+ this.select.sortOptions[1].label=res.data[0][1].name
|
|
|
+ // console.log(this.select.sortOptions);
|
|
|
},err=>{
|
|
|
console.log(err);
|
|
|
})
|