点击编辑跳转在线编辑详情页面 有时正常显示 有时报错
mounted () {
this.webOfficeInit()
},
methods: {
async webOfficeInit () {
this.loading = true
this.app = this.WebOfficeSDK.init({
officeType: this.$route.query.fileType == 'xlsx' ? this.WebOfficeSDK.OfficeType.Spreadsheet : this.WebOfficeSDK.OfficeType.Writer,
appId: 'SX20240705PSXDRA',
mount: '#viewFile',
fileId: this.$route.query.id,
token: 'Bearer ' + getToken()
})
await this.app.ready()
const app = this.app.Application
// // 页面定制对象:更多菜单
const moreMenus = await app.CommandBars('MoreMenus')
// 控制更多菜单隐藏
moreMenus.Visible = false
this.loading = false
},
在线编辑详情页面代码