|
@@ -286,6 +286,7 @@ import {
|
|
|
publishChapterReport,
|
|
|
reportMessageSend
|
|
|
} from '@/api/modules/reportV2';
|
|
|
+import {etaBaseConfigInterence} from '@/api/modules/etaBaseConfigApi.js';
|
|
|
import {approveInterence} from '@/api/modules/approve.js';
|
|
|
import * as sheetInterface from '@/api/modules/sheetApi.js';
|
|
|
import reportBaseInfo from '../components/reportBaseInfoDia.vue'
|
|
@@ -1321,7 +1322,14 @@ export default {
|
|
|
this.endImgId = 0
|
|
|
}
|
|
|
this.contentChange=true
|
|
|
- }
|
|
|
+ },
|
|
|
+
|
|
|
+ async getBaseSettings(){
|
|
|
+ const res = await etaBaseConfigInterence.getBaseConfig()
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ const {ReportSheetSize} = res.Data;
|
|
|
+ localStorage.setItem('ReportSheetSize',ReportSheetSize)
|
|
|
+ },
|
|
|
},
|
|
|
computed:{
|
|
|
topTypeList(){
|
|
@@ -1366,6 +1374,7 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.getPublicSettings()
|
|
|
+ this.getBaseSettings()
|
|
|
this.reportCoopType = Number(this.$route.query.coopType)
|
|
|
this.reportCoopType===1 && this.getReportDetail()
|
|
|
},
|