This commit is contained in:
X1627315083
2025-10-28 17:05:53 +08:00
parent 28109ed634
commit f5a9a204e4
3 changed files with 5 additions and 2 deletions

View File

@@ -54,6 +54,9 @@ const {} = toRefs(data);
<div class="icon" v-if="item.id == select?.id">
<SvgIcon name="modelSelected" size="60" />
</div>
<div class="mask running" v-if="item.status == 'RUNNING'">
<van-loading type="spinner" size="20rem"/>
</div>
<div class="mask" v-if="item.id == select?.oldId"></div>
</div>
<div class="btn">

View File

@@ -1,6 +1,6 @@
<script setup lang="ts">
import { ref, reactive, onMounted, computed } from 'vue'
import MyList from '@/components/myList.vue'
import MyList from '@/components/MyList.vue'
import { DownloadImages } from '@/utils/tools'
import {
getTryOnEffectFavoriteList,

View File

@@ -2,7 +2,7 @@
import { ref, reactive, onMounted, inject } from 'vue'
import HeaderTitle from '@/components/HeaderTitle.vue'
import FooterNavigation from '@/components/FooterNavigation.vue'
import MyList from '@/components/myList.vue'
import MyList from '@/components/MyList.vue'
import router from '@/router'
import { FormatDate } from '@/utils/tools'
import { getCustomerPhotos, deleteCustomerPhoto } from '@/api/workshop'