|
@@ -105,7 +105,7 @@
|
|
|
<van-image-preview
|
|
<van-image-preview
|
|
|
v-model="showImagePreview"
|
|
v-model="showImagePreview"
|
|
|
:images="imagePreviewArray"
|
|
:images="imagePreviewArray"
|
|
|
- :loop="false"
|
|
|
|
|
|
|
+ :loop="true"
|
|
|
:start-position="imagePreviewIndex"
|
|
:start-position="imagePreviewIndex"
|
|
|
@change="imagePreviewOnChange">
|
|
@change="imagePreviewOnChange">
|
|
|
<template v-slot:index>
|
|
<template v-slot:index>
|
|
@@ -124,7 +124,11 @@ import { GetEntity, GetReadState, UpdateReadState, insideGetEntity, insideGetRea
|
|
|
import { getWecomType, toLBHome, toXiaoChengxu, getWxconfig, getWecomTypeName, checkAndSaveUserWecomType } from '@/utils/index';
|
|
import { getWecomType, toLBHome, toXiaoChengxu, getWxconfig, getWecomTypeName, checkAndSaveUserWecomType } from '@/utils/index';
|
|
|
import axios from "axios";
|
|
import axios from "axios";
|
|
|
declare let wx: any;
|
|
declare let wx: any;
|
|
|
-@Component
|
|
|
|
|
|
|
+@Component({
|
|
|
|
|
+ components: {
|
|
|
|
|
+ [ImagePreview.Component.name]: ImagePreview.Component,
|
|
|
|
|
+ }
|
|
|
|
|
+})
|
|
|
export default class extends Vue {
|
|
export default class extends Vue {
|
|
|
private readState = true;
|
|
private readState = true;
|
|
|
// 数据属性
|
|
// 数据属性
|
|
@@ -987,4 +991,7 @@ export default class extends Vue {
|
|
|
font-size: 20px;
|
|
font-size: 20px;
|
|
|
color: #333;
|
|
color: #333;
|
|
|
}
|
|
}
|
|
|
|
|
+::v-deep .van-swipe__track{
|
|
|
|
|
+ transition-duration: 300ms!important;
|
|
|
|
|
+}
|
|
|
</style>
|
|
</style>
|