|
@@ -88,25 +88,9 @@
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
- this.getDropList().then(() => {
|
|
|
|
- this.getDataList()
|
|
|
|
- })
|
|
|
|
|
|
+ this.getDataList()
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- getDropList() {
|
|
|
|
- let templateOwn = localStorage.getItem('icssEnumsData') ? JSON.parse(localStorage.getItem('icssEnumsData')).moduleTypeEnum : []
|
|
|
|
- let templateType = localStorage.getItem('icssEnumsData') ? JSON.parse(localStorage.getItem('icssEnumsData')).moduleInfoTypeEnum : []
|
|
|
|
- this.Adscriptions = templateOwn;
|
|
|
|
- this.AdscriptionsType = templateType
|
|
|
|
- return api.getDropList().then((res) =>{
|
|
|
|
- if(res.data.code === '0') {
|
|
|
|
- this.tagTypes = res.data.data[6];
|
|
|
|
- for (var i = 0; i < this.tagTypes.length; i++) {
|
|
|
|
- this.tagTypesList.push(this.tagTypes[i].val)
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
getDataList() {
|
|
getDataList() {
|
|
const param = this.getFilterItems();
|
|
const param = this.getFilterItems();
|
|
api.queryEvaluationModulePages(param).then((res) => {
|
|
api.queryEvaluationModulePages(param).then((res) => {
|