12 2020 档案
摘要:window.parent.location.href = `tel://${this.serviceTel}`
阅读全文
摘要:做h5项目时,使用iframe嵌套一个h5子页面在ios手机上出现超出屏幕的问题。子页面本身是没有超出屏幕的,给iframe;设置了宽度100%没有起作用,在ios手机上为超出屏幕,但是在安卓手机上显示正常。 解决办法: 1、给iframe的外层div添加样式:overflow: auto;-web
阅读全文
摘要:解决方法: component: {render: (e) => e("router-view")},
阅读全文
摘要:customRow(record) { return { on: { click: () => { if (this.pageType == 1) return; this.adjustPostdata.detailId = record.detailId; }, }, }; }
阅读全文
摘要:{ title: '任务名称', dataIndex: 'title', ellipsis: true, customCell: () => { return { style: { 'min-width': '160px', }, }; }, },
阅读全文