|
|
@@ -3,7 +3,7 @@
|
|
|
<view class="billing_box_bg">
|
|
|
<view class="top-view"> </view>
|
|
|
<view class="result-view">
|
|
|
- <button class="admin-button-com big blue" style="width:45vw;" @click="showBill()">点我打开账单</button>
|
|
|
+ <button v-if="showButton" class="admin-button-com big blue" style="width:45vw;" @click="showBill()">点我打开账单</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -14,13 +14,15 @@ export default {
|
|
|
name: "showBill",
|
|
|
data() {
|
|
|
return {
|
|
|
- getAppIdList:{}
|
|
|
+ getAppIdList:{},
|
|
|
+ showButton:false
|
|
|
};
|
|
|
},
|
|
|
onLoad() {
|
|
|
let that = this
|
|
|
getWeixinId().then(res => {
|
|
|
that.getAppIdList = res.data
|
|
|
+ that.showButton = true
|
|
|
})
|
|
|
},
|
|
|
methods: {
|