|
@@ -1,4 +1,4 @@
|
|
|
-<template xmlns:v-slot="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
|
|
|
+<template>
|
|
|
<div class="resout-container AI-Design-container">
|
|
<div class="resout-container AI-Design-container">
|
|
|
<div class="header">
|
|
<div class="header">
|
|
|
<van-nav-bar title="生成结果" left-arrow @click-left="returnPage" @click-right="toHome">
|
|
<van-nav-bar title="生成结果" left-arrow @click-left="returnPage" @click-right="toHome">
|
|
@@ -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;
|
|
|
// 数据属性
|
|
// 数据属性
|
|
@@ -167,7 +171,7 @@ export default class extends Vue {
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
private designTimer = {
|
|
private designTimer = {
|
|
|
- outside: 30000,
|
|
|
|
|
|
|
+ outside: 20000,
|
|
|
inside: 20000
|
|
inside: 20000
|
|
|
};
|
|
};
|
|
|
private showArtificial = false;
|
|
private showArtificial = false;
|
|
@@ -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>
|