|
@@ -346,7 +346,7 @@ export default defineComponent({
|
|
|
</Button>
|
|
|
</div>
|
|
|
<div style={{ flex: 1, overflow: "hidden" }}>
|
|
|
- <div class={styles.toneContent}>
|
|
|
+ <Space size={0} class={styles.toneContent}>
|
|
|
{data.tones.map((tone: IFIGNER_INSTRUMENT_Note) => {
|
|
|
const steps = new Array(Math.abs(tone.step)).fill(1);
|
|
|
return (
|
|
@@ -369,16 +369,16 @@ export default defineComponent({
|
|
|
</Button>
|
|
|
);
|
|
|
})}
|
|
|
- </div>
|
|
|
+ </Space>
|
|
|
</div>
|
|
|
- <div class={styles.toneAction}>
|
|
|
+ <Space size={0} class={styles.toneAction}>
|
|
|
<Button type="primary" round plain onClick={() => (data.tnoteShow = false)}>
|
|
|
取消
|
|
|
</Button>
|
|
|
<Button type="primary" round onClick={() => (data.tnoteShow = false)}>
|
|
|
确定
|
|
|
</Button>
|
|
|
- </div>
|
|
|
+ </Space>
|
|
|
</div>
|
|
|
</Popup>
|
|
|
</div>
|