Commit 7dcbc113 by fengzhaoyu

Merge branch 'dev' of http://gitlab.roboming.com/fengzhaoyu/schedule into dev

parents bda380af 13cc3564
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
</view> </view>
</view> </view>
<view class="{{isBind ? 'unBinding': 'binding'}} bindBtn {{isLoading ? 'loadingBtn' : ''}}"> <view class="{{isBind ? 'unBinding': 'binding'}} bindBtn {{isLoading ? 'loadingBtn' : ''}}">
<text onTap="{{isBind ? 'unbind' : 'bindApp'}}">{{isBind ? '解绑' : '绑定'}}</text> <text onTap="{{isBind ? 'showPopup' : 'bindApp'}}">{{isBind ? '解绑' : '绑定'}}</text>
</view> </view>
</view> </view>
<view class="loadingToast" a:if="{{isLoading}}"> <view class="loadingToast" a:if="{{isLoading}}">
......
...@@ -21,7 +21,6 @@ create.Page({ ...@@ -21,7 +21,6 @@ create.Page({
selectPopupList: [{ text: "取消关联" }] selectPopupList: [{ text: "取消关联" }]
}, },
onLoad(e) { onLoad(e) {
console.log(e);
this.setData({ this.setData({
platform: e.platform, platform: e.platform,
name: e.userName, name: e.userName,
...@@ -92,7 +91,8 @@ create.Page({ ...@@ -92,7 +91,8 @@ create.Page({
if (res.data.data) { if (res.data.data) {
this.setData({ this.setData({
name: "", name: "",
isBind: false isBind: false,
showSelectPopup: false
}); });
this.$store.data.relatedAppNeedUpdate = "1"; this.$store.data.relatedAppNeedUpdate = "1";
this.update(); this.update();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment