1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <template>
- <view class="content">
- 我的
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- shopId: '',
- url:'',
- }
- },
- onLoad() {
- this.$common.getExtStoreId()
- var ext=this.$common.getExtStoreId();
- console.log(ext)
- this.shopId=ext.shopId;
- this.url=ext.url;
- this.uniLogin()
- },
- methods: {
- wxgologin(){
- var that=this;
- uni.getUserProfile({
- lang:'zh_CN',
- desc:'登录',
- success:(res)=>{
- console.log(res);
- that.wxdata=res;
- uni.setStorage({
- key: 'wxdata',
- data: res,
- success: function () {
- that.uniLogin()
-
- }
- });
- },
- fail:(res)=>{
- console.log(res)
- }
- });
- },
- uniLogin(){
- uni.login({
- provider: 'weixin',
- success: function (loginRes) {
- console.log(loginRes);
- }
- });
- }
- }
- }
- </script>
- <style>
-
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-top: 200rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50rpx;
- }
- </style>
|