wlzboy
20 小时以前 5f2ee03958a1a16dc27195c76ea7cffb422c95d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
  <div class="app-container">
    <h1>企业微信测试页面</h1>
    <p>这是一个测试页面,用于验证企业微信功能。</p>
  </div>
</template>
 
<script>
// 简单测试导入
import * as qywechatApi from '@/api/system/qywechat/index'
 
export default {
  name: 'QyWechatIndex',
  mounted() {
    console.log('企业微信API导入测试:', qywechatApi)
  }
}
</script>