|
@@ -131,13 +131,7 @@ export default defineComponent({
|
|
|
postMessage({
|
|
|
api: 'openWebView',
|
|
|
content: {
|
|
|
- url:
|
|
|
- location.origin +
|
|
|
- pathname +
|
|
|
- '/colexiu-report.html?source=evaluation&musicId=' +
|
|
|
- search.id +
|
|
|
- '&id=' +
|
|
|
- data.value?.recordIdStr || '',
|
|
|
+ url: `${location.origin}${pathname}/colexiu-report.html?source=evaluation&musicId=${search.id}&id=${data.value?.recordIdStr}`,
|
|
|
orientation: 0,
|
|
|
isHideTitle: true, // 此处兼容安卓,意思为隐藏全部头部
|
|
|
statusBarTextColor: false,
|
|
@@ -220,7 +214,9 @@ export default defineComponent({
|
|
|
)}
|
|
|
|
|
|
<div class={styles.tips}>
|
|
|
- <div style={detailState.isPercussion ? {height: '45px', fontSize: '15px'} : ''}>{scoreInfos[info].tips}</div>
|
|
|
+ <div style={detailState.isPercussion ? { height: '45px', fontSize: '15px' } : ''}>
|
|
|
+ {scoreInfos[info].tips}
|
|
|
+ </div>
|
|
|
<div class={styles.btns} style={{ justifyContent: isUnitTest ? 'center' : '' }}>
|
|
|
{detailState.frozenMode || isUnitTest ? null : (
|
|
|
<Button
|