|
@@ -34,15 +34,16 @@ export default {
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
getSheetDetail(){
|
|
getSheetDetail(){
|
|
|
|
+ let type
|
|
if(!this.selectDate){
|
|
if(!this.selectDate){
|
|
- this.sheetDetailInfo = {}
|
|
|
|
- return
|
|
|
|
|
|
+ type='init'
|
|
}
|
|
}
|
|
ToolBoxInterface.getSheetDetail({
|
|
ToolBoxInterface.getSheetDetail({
|
|
DateTime: this.selectDate||'',
|
|
DateTime: this.selectDate||'',
|
|
}).then(res=>{
|
|
}).then(res=>{
|
|
if(res.Ret!==200) return
|
|
if(res.Ret!==200) return
|
|
this.sheetDetailInfo = res.Data||{};
|
|
this.sheetDetailInfo = res.Data||{};
|
|
|
|
+ type==='init'&&(this.selectDate = this.sheetDetailInfo.DateTime||'')
|
|
this.$nextTick(()=>{
|
|
this.$nextTick(()=>{
|
|
this.sheetDetailInfo.MeetingInfoId&&this.initSheet()
|
|
this.sheetDetailInfo.MeetingInfoId&&this.initSheet()
|
|
})
|
|
})
|