Compare commits
No commits in common. "4e0428b95b5a537e9f8a1aa76f4d4bb71c51ab96" and "99e9eff0e08d1fff69a9a5d71ea5f868aa7a0a7d" have entirely different histories.
4e0428b95b
...
99e9eff0e0
|
|
@ -95,7 +95,7 @@
|
||||||
default: () => []
|
default: () => []
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const emit = defineEmits(['update:modelValue', 'confirm', 'change', 'update:position', 'update:size','close']);
|
const emit = defineEmits(['update:modelValue', 'confirm', 'change', 'update:position', 'update:size']);
|
||||||
|
|
||||||
/* ========== 基本可见性 / 同步 ========== */
|
/* ========== 基本可见性 / 同步 ========== */
|
||||||
const visible = ref(props.modelValue);
|
const visible = ref(props.modelValue);
|
||||||
|
|
@ -366,7 +366,6 @@
|
||||||
|
|
||||||
function cancel() {
|
function cancel() {
|
||||||
visible.value = false;
|
visible.value = false;
|
||||||
emit('close');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ========== boxStyle ========== */
|
/* ========== boxStyle ========== */
|
||||||
|
|
|
||||||
|
|
@ -1013,7 +1013,7 @@
|
||||||
<!-- <u-select v-model="opencgr" :list="cgrlist" label-name="cgBy" value-name="cgBy" ></u-select> -->
|
<!-- <u-select v-model="opencgr" :list="cgrlist" label-name="cgBy" value-name="cgBy" ></u-select> -->
|
||||||
<!-- <u-select v-model="opengys" :list="gyslist" label-name="suppliersName" value-name="suppliers" ></u-select> -->
|
<!-- <u-select v-model="opengys" :list="gyslist" label-name="suppliersName" value-name="suppliers" ></u-select> -->
|
||||||
<superpicker v-model:modelValue="opengys" :columns="[gyslist]" nameKey="suppliersName" :init-left="80" :init-top="120" :init-width="360"
|
<superpicker v-model:modelValue="opengys" :columns="[gyslist]" nameKey="suppliersName" :init-left="80" :init-top="120" :init-width="360"
|
||||||
:init-height="360" @close="opengys=false" @confirm="gysclick" />
|
:init-height="360" />
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
@ -1030,11 +1030,6 @@
|
||||||
const openjianhuo = ref(false);
|
const openjianhuo = ref(false);
|
||||||
const opendata = ref(false);
|
const opendata = ref(false);
|
||||||
|
|
||||||
const gysclick = (res:any) => {
|
|
||||||
console.log("///",res);
|
|
||||||
opengys.value=false;
|
|
||||||
}
|
|
||||||
|
|
||||||
const openjianhuoclick = () => {
|
const openjianhuoclick = () => {
|
||||||
openjianhuo.value = true;
|
openjianhuo.value = true;
|
||||||
donghuaopo.value = false;
|
donghuaopo.value = false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue