|
@@ -37,6 +37,9 @@
|
|
<li style="margin-bottom:20px">
|
|
<li style="margin-bottom:20px">
|
|
<department-report companyNo="GS2302231323386950" :date="date" />
|
|
<department-report companyNo="GS2302231323386950" :date="date" />
|
|
</li>
|
|
</li>
|
|
|
|
+ <li style="margin-bottom:20px">
|
|
|
|
+ <department-report companyNo="GS2203161855277894" :date="date" />
|
|
|
|
+ </li>
|
|
</ul>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -44,17 +47,17 @@
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
-
|
|
|
|
|
|
+import asyncRequest from "@/api/index"
|
|
|
|
+import { getParameterByName } from "../utils/auth"
|
|
export default {
|
|
export default {
|
|
name:'report',
|
|
name:'report',
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- date: "",
|
|
|
|
|
|
+ date: ""
|
|
};
|
|
};
|
|
},
|
|
},
|
|
async created() {
|
|
async created() {
|
|
this.date = this.transformTime();
|
|
this.date = this.transformTime();
|
|
- // this.currentDate = '2023-03-31'
|
|
|
|
const { search } = window.location
|
|
const { search } = window.location
|
|
if(search.indexOf('?') !== -1){
|
|
if(search.indexOf('?') !== -1){
|
|
const query = {}
|
|
const query = {}
|
|
@@ -62,10 +65,11 @@ export default {
|
|
const [key,value] = item.split('=')
|
|
const [key,value] = item.split('=')
|
|
query[key] = value
|
|
query[key] = value
|
|
})
|
|
})
|
|
-
|
|
|
|
- if(query.companyNo) this.companyNo = query.companyNo
|
|
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ mounted(){
|
|
|
|
+ this.initWechatSdk()
|
|
|
|
+ },
|
|
methods: {
|
|
methods: {
|
|
transformTime() {
|
|
transformTime() {
|
|
let time = new Date();
|
|
let time = new Date();
|
|
@@ -73,7 +77,50 @@ export default {
|
|
let M = time.getMonth() + 1;
|
|
let M = time.getMonth() + 1;
|
|
let d = time.getDate();
|
|
let d = time.getDate();
|
|
return y + "-" + (M < 10 ? "0" + M : M) + "-" + (d < 10 ? "0" + d : d);
|
|
return y + "-" + (M < 10 ? "0" + M : M) + "-" + (d < 10 ? "0" + d : d);
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ async initWechatSdk(){
|
|
|
|
+ try{
|
|
|
|
+ const code = getParameterByName('code')
|
|
|
|
+ const result = await asyncRequest.signature({code})
|
|
|
|
+
|
|
|
|
+ switch(Number(result.code)){
|
|
|
|
+ case 0:
|
|
|
|
+ // 配置微信JSSDK
|
|
|
|
+ wx.config({
|
|
|
|
+ debug: true,
|
|
|
|
+ appId: result.data.appId,
|
|
|
|
+ timestamp: result.data.timestamp,
|
|
|
|
+ nonceStr: result.data.nonceStr,
|
|
|
|
+ signature: result.data.signature,
|
|
|
|
+ jsApiList: ['checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage']
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ wx.ready(function(){
|
|
|
|
+ wx.webckJsApi({
|
|
|
|
+ jsApiList:['getUserInfo'],
|
|
|
|
+ success:function(res){
|
|
|
|
+ console.log(res)
|
|
|
|
+ //用户信息...
|
|
|
|
+ },
|
|
|
|
+ fail:function(){
|
|
|
|
+ //..处理获取用户失败情况
|
|
|
|
+ this.$router.push('/')
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ wx.error(function () {
|
|
|
|
+ this.$router.push('/login')
|
|
|
|
+ })
|
|
|
|
+ break
|
|
|
|
+ default:
|
|
|
|
+ this.$router.push('/login')
|
|
|
|
+ break
|
|
|
|
+ }
|
|
|
|
+ }catch(error){
|
|
|
|
+ this.$router.push('/login')
|
|
|
|
+ }
|
|
|
|
+ },
|
|
}
|
|
}
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|