|
@@ -110,15 +110,17 @@
|
|
|
</a-form>
|
|
|
</div>
|
|
|
<template #footer></template>
|
|
|
-<!-- <a-image-preview-group-->
|
|
|
-<!-- :style="{ display: 'none' }"-->
|
|
|
-<!-- :preview="{-->
|
|
|
-<!-- visible: imgOptions.visible,-->
|
|
|
-<!-- onVisibleChange: imgOptions.setVisible,-->
|
|
|
-<!-- }">-->
|
|
|
-<!-- <a-image :width="200" src="https://aliyuncdn.antdv.com/vue.png" />-->
|
|
|
-<!-- <a-image :width="200" src="https://aliyuncdn.antdv.com/logo.png" />-->
|
|
|
-<!-- </a-image-preview-group>-->
|
|
|
+ <div :style="{ display: 'none' }">
|
|
|
+ <a-image-preview-group
|
|
|
+ :preview="{
|
|
|
+ visible: imgOptions.visible,
|
|
|
+ onVisibleChange: imgOptions.setVisible,
|
|
|
+ }">
|
|
|
+ <template v-for="url in imgOptions.urls">
|
|
|
+ <a-image :src="url" />
|
|
|
+ </template>
|
|
|
+ </a-image-preview-group>
|
|
|
+ </div>
|
|
|
</a-modal>
|
|
|
</template>
|
|
|
|
|
@@ -136,7 +138,7 @@ const imgOptions = ref({
|
|
|
setVisible: (value) => {
|
|
|
imgOptions.value.visible = value;
|
|
|
},
|
|
|
- url: []
|
|
|
+ urls: []
|
|
|
})
|
|
|
|
|
|
// 打开抽屉
|
|
@@ -155,7 +157,8 @@ const onClose = () => {
|
|
|
open.value = false
|
|
|
}
|
|
|
const onViewImg = (urls) => {
|
|
|
-
|
|
|
+ imgOptions.value.urls = urls.split(',')
|
|
|
+ imgOptions.value.visible = true
|
|
|
}
|
|
|
const sexOptions = tool.dictList('lvke_sex')
|
|
|
const cityOptions = tool.dictList('lvke_city')
|