初始化仓库

This commit is contained in:
tao
2025-12-18 14:11:48 +08:00
parent e96f277a68
commit 54ec472bd4
1107 changed files with 158756 additions and 0 deletions

38
pages/work/ipc.vue Normal file
View File

@@ -0,0 +1,38 @@
<template>
<view class="content">
<web-view :src="`${baseUrl}/ipc`"></web-view>
</view>
</template>
<script>
import {
getToken
} from '@/utils/auth'
export default {
data() {
return {
baseUrl: uni.getStorageSync('base_url'),
// token: getToken()
}
},
mounted() {
// console.log(this.token)
// uni.request({
// url: this.baseUrl + '/ipc',
// method: 'POST',
// header: {
// Authorization: `Bearer ` + this.token,
// },
// success(response) {
// console.log(response.data);
// },
// fail(error) {
// console.error(error);
// },
// });
}
}
</script>
<style>
</style>