修改
This commit is contained in:
parent
7565d1e5ac
commit
72d5f8b7c3
@ -266,7 +266,6 @@
|
|||||||
top:10%;
|
top:10%;
|
||||||
width: 65%;
|
width: 65%;
|
||||||
.top,.bottom{
|
.top,.bottom{
|
||||||
height: 30rpx;
|
|
||||||
view {
|
view {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-size: 32rpx;
|
font-size: 32rpx;
|
||||||
@ -279,6 +278,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bottom {
|
.bottom {
|
||||||
|
height: 60rpx;
|
||||||
view {
|
view {
|
||||||
font-size: 25rpx;
|
font-size: 25rpx;
|
||||||
color: #969394;
|
color: #969394;
|
||||||
|
|||||||
@ -92,7 +92,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</u-popup>
|
</u-popup>
|
||||||
<u-mask :show="lookrateshow" @tap="lookrateshow = false" class='masks'>
|
<u-popup v-model="lookrateshow" mode="bottom" length="48%" border-radius="20" :closeable='true' class='masks'>
|
||||||
<image :src="baseurl+rateimgtitle.img" mode=""></image>
|
<image :src="baseurl+rateimgtitle.img" mode=""></image>
|
||||||
<view class="ratetitle">
|
<view class="ratetitle">
|
||||||
{{rateimgtitle.title}}
|
{{rateimgtitle.title}}
|
||||||
@ -109,7 +109,7 @@
|
|||||||
不满意
|
不满意
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</u-mask>
|
</u-popup>
|
||||||
<u-toast ref="uToast" />
|
<u-toast ref="uToast" />
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -12,8 +12,6 @@ const store = new Vuex.Store({
|
|||||||
//相当于同步的操作
|
//相当于同步的操作
|
||||||
//点击确认
|
//点击确认
|
||||||
subscribesuccess(state) {
|
subscribesuccess(state) {
|
||||||
const openids = uni.getStorageSync('openid');
|
|
||||||
const patientIds = uni.getStorageSync('patientId');
|
|
||||||
wx.requestSubscribeMessage({
|
wx.requestSubscribeMessage({
|
||||||
tmplIds: [
|
tmplIds: [
|
||||||
'-IxZeEkkXFhoSwGtBHbipKQ6kjEmkdTkswKeOypSsNQ',
|
'-IxZeEkkXFhoSwGtBHbipKQ6kjEmkdTkswKeOypSsNQ',
|
||||||
@ -26,8 +24,6 @@ const store = new Vuex.Store({
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
integralsubscribesuccess(state) {
|
integralsubscribesuccess(state) {
|
||||||
const openids = uni.getStorageSync('openid');
|
|
||||||
const patientIds = uni.getStorageSync('patientId');
|
|
||||||
wx.requestSubscribeMessage({
|
wx.requestSubscribeMessage({
|
||||||
tmplIds: [
|
tmplIds: [
|
||||||
'S_c9bR4znSWpXg-6ACIMn7AkaR11dzo113XM8w4CKz0'
|
'S_c9bR4znSWpXg-6ACIMn7AkaR11dzo113XM8w4CKz0'
|
||||||
@ -41,6 +37,8 @@ const store = new Vuex.Store({
|
|||||||
actions: {
|
actions: {
|
||||||
//相当于异步的操作,不能直接改变state的值,只能通过触发mutations的方法才能改变
|
//相当于异步的操作,不能直接改变state的值,只能通过触发mutations的方法才能改变
|
||||||
integralopenPopup(contxt) {
|
integralopenPopup(contxt) {
|
||||||
|
const openids = uni.getStorageSync('openid');
|
||||||
|
const patientIds = uni.getStorageSync('patientId');
|
||||||
// 获取用户的当前设置,判断是否点击了“总是保持以上,不在询问”
|
// 获取用户的当前设置,判断是否点击了“总是保持以上,不在询问”
|
||||||
wx.getSetting({
|
wx.getSetting({
|
||||||
withSubscriptions: true, // 是否获取用户订阅消息的订阅状态,默认false不返回
|
withSubscriptions: true, // 是否获取用户订阅消息的订阅状态,默认false不返回
|
||||||
@ -54,6 +52,8 @@ const store = new Vuex.Store({
|
|||||||
},
|
},
|
||||||
// 是否设置过授权
|
// 是否设置过授权
|
||||||
openPopup(contxt) {
|
openPopup(contxt) {
|
||||||
|
const openids = uni.getStorageSync('openid');
|
||||||
|
const patientIds = uni.getStorageSync('patientId');
|
||||||
// 获取用户的当前设置,判断是否点击了“总是保持以上,不在询问”
|
// 获取用户的当前设置,判断是否点击了“总是保持以上,不在询问”
|
||||||
wx.getSetting({
|
wx.getSetting({
|
||||||
withSubscriptions: true, // 是否获取用户订阅消息的订阅状态,默认false不返回
|
withSubscriptions: true, // 是否获取用户订阅消息的订阅状态,默认false不返回
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user