You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.5 KiB
66 lines
1.5 KiB
<template> |
|
<view class="pa"> |
|
<view class="uni-divider"> |
|
<view class="uni-divider__content">globalData</view> |
|
<view class="uni-divider__line"></view> |
|
</view> |
|
<text class="text">globalData中text的值: {{gd.test}}</text> |
|
<button @click="setGD()" class="button">修改上述值为123</button> |
|
|
|
<view class="uni-divider"> |
|
<view class="uni-divider__content">vuex</view> |
|
<view class="uni-divider__line"></view> |
|
</view> |
|
<text class="text">vuex中hasLogin的值: {{testvuex}}</text> |
|
<button @click="setVUEX(true)" class="button">修改上述值为true</button> |
|
<button @click="setVUEX(false)" class="button">修改上述值为false</button> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import { |
|
mapState, |
|
mapMutations |
|
} from 'vuex' |
|
export default { |
|
data() { |
|
return { |
|
gd:{} |
|
} |
|
}, |
|
computed: { |
|
...mapState(['testvuex']) |
|
}, |
|
methods: { |
|
...mapMutations(['setTestTrue']), |
|
...mapMutations(['setTestFalse']), |
|
setGD:function () { |
|
getApp().globalData.test="123" |
|
}, |
|
setVUEX:function (isTrue) { |
|
// console.log("this.testvuex: " + this.testvuex); |
|
// this.hasLogin = true; 这样赋值不生效,必须用store/index.js里注册的mapMutations才行 |
|
if(isTrue){ |
|
this.setTestTrue(this.$store.state); |
|
} |
|
else{ |
|
this.setTestFalse(this.$store.state); |
|
} |
|
// console.log("this.testvuex: " + this.testvuex); |
|
} |
|
}, |
|
onShow() { |
|
this.gd = getApp().globalData |
|
} |
|
} |
|
</script> |
|
|
|
<style> |
|
.button { |
|
margin: 30rpx; |
|
color: #007AFF; |
|
} |
|
.text{ |
|
margin-left: 30rpx; |
|
} |
|
</style>
|
|
|