Browse Source

1

dev_YWQ
congzc 1 year ago
parent
commit
56c38fd9e6
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/pages/closeStyle/goCreatePhoto.vue

+ 5
- 1
src/pages/closeStyle/goCreatePhoto.vue View File

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


Loading…
Cancel
Save