congzc hace 1 año
padre
commit
56c38fd9e6
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. +5
    -1
      src/pages/closeStyle/goCreatePhoto.vue

+ 5
- 1
src/pages/closeStyle/goCreatePhoto.vue Ver fichero

@@ -24,7 +24,7 @@
<script setup>
//#region 导入
import { ref, reactive } from "vue";
import { onLoad } from "@dcloudio/uni-app";
import { onLoad, onShow } from "@dcloudio/uni-app";
import {
findByIdApi,
findImageApi,
@@ -40,6 +40,10 @@ const styleId = ref(null);
const styleData = ref({});
onLoad((options) => {
styleId.value = options.id;
// getInfo();
// getMyCoin();
});
onShow(() => {
getInfo();
getMyCoin();
});


Cargando…
Cancelar
Guardar