Commit 6b68749e authored by zhengke's avatar zhengke

no message

parent 94189cfc
......@@ -112,6 +112,7 @@ import { ENT_USER_THEME, VIP_USER_THEME } from "@/configs/customer";
import { useUserStore } from "@/store";
import { storeToRefs } from "pinia";
import { ref } from "vue";
import { ApiResult } from "@/configs/axios";
import OrderReview from '@/views/components/Order/Review.vue'
import UserServices from "@/services/UserService";
......@@ -122,6 +123,13 @@ const orderVisible = ref(false)
const vipTheme = VIP_USER_THEME
const enTheme = ENT_USER_THEME
const getDataStatistics = async () => {
const response = await UserServices.getPPTUserStatic();
if(response.data.resultCode == ApiResult.SUCCESS){
console.log(response.data.data,'-------')
}
}
const testMethod = async ()=>{
var cmd="";
var postMsg={
......@@ -134,6 +142,7 @@ const testMethod = async ()=>{
}
testMethod()
getDataStatistics()
</script>
<style scoped>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment