Compare commits
2 Commits
99e9eff0e0
...
4e0428b95b
| Author | SHA1 | Date |
|---|---|---|
|
|
4e0428b95b | |
|
|
b10bcda3fc |
|
|
@ -95,7 +95,7 @@
|
|||
default: () => []
|
||||
}
|
||||
});
|
||||
const emit = defineEmits(['update:modelValue', 'confirm', 'change', 'update:position', 'update:size']);
|
||||
const emit = defineEmits(['update:modelValue', 'confirm', 'change', 'update:position', 'update:size','close']);
|
||||
|
||||
/* ========== 基本可见性 / 同步 ========== */
|
||||
const visible = ref(props.modelValue);
|
||||
|
|
@ -366,6 +366,7 @@
|
|||
|
||||
function cancel() {
|
||||
visible.value = false;
|
||||
emit('close');
|
||||
}
|
||||
|
||||
/* ========== boxStyle ========== */
|
||||
|
|
|
|||
|
|
@ -1013,7 +1013,7 @@
|
|||
<!-- <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> -->
|
||||
<superpicker v-model:modelValue="opengys" :columns="[gyslist]" nameKey="suppliersName" :init-left="80" :init-top="120" :init-width="360"
|
||||
:init-height="360" />
|
||||
:init-height="360" @close="opengys=false" @confirm="gysclick" />
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
|
@ -1029,6 +1029,11 @@
|
|||
const opengaijia = ref(false);
|
||||
const openjianhuo = ref(false);
|
||||
const opendata = ref(false);
|
||||
|
||||
const gysclick = (res:any) => {
|
||||
console.log("///",res);
|
||||
opengys.value=false;
|
||||
}
|
||||
|
||||
const openjianhuoclick = () => {
|
||||
openjianhuo.value = true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue