CzRger 4 月之前
父節點
當前提交
08765e0972

+ 14 - 11
snowy-admin-web/src/views/gsc/basic/detail.vue

@@ -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')

+ 14 - 11
snowy-admin-web/src/views/gsc/check/detail.vue

@@ -146,15 +146,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>
 
@@ -172,7 +174,7 @@ const imgOptions = ref({
   setVisible: (value) => {
     imgOptions.value.visible = value;
   },
-  url: []
+  urls: []
 })
 
 // 打开抽屉
@@ -191,7 +193,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')

+ 14 - 11
snowy-admin-web/src/views/gsc/pass/detail.vue

@@ -114,15 +114,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>
 
@@ -140,7 +142,7 @@ const imgOptions = ref({
   setVisible: (value) => {
     imgOptions.value.visible = value;
   },
-  url: []
+  urls: []
 })
 
 // 打开抽屉
@@ -159,7 +161,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')