This commit is contained in:
X1627315083@163.com
2026-02-06 14:17:46 +08:00
parent 13024cdd99
commit 1428f191dd

View File

@@ -25,7 +25,7 @@
<div class="repeat-setting-item">
<span class="label">Gap X</span>
<slider
:min="0"
:min="1"
:max="1000"
:step="1"
is-input
@@ -39,7 +39,7 @@
<div class="repeat-setting-item">
<span class="label">Gap Y</span>
<slider
:min="0"
:min="1"
:max="1000"
:step="1"
is-input
@@ -84,7 +84,7 @@
const scale = computed(() => {
// let scaleValue = props.object?.scale/10;
// return props.object?.scale/10;
return props.object?.scale[0] * 100;
return (props.object?.scale[0] * 100).toFixed(0);
});
const scalePrint = computed(() => {
let index = sketchWH.value[0] > sketchWH.value[1]?0:1;