Compare commits

...

2 Commits

Author SHA1 Message Date
Teng 4e0428b95b Merge branch 'main' of http://47.115.223.229:8888/yangjun/hldy_app_mini 2025-11-18 13:15:43 +08:00
Teng b10bcda3fc 合并 2025-11-18 13:15:34 +08:00
2 changed files with 8 additions and 2 deletions

View File

@ -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 ========== */

View File

@ -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;