This commit is contained in:
wangjiahai
2023-11-21 15:29:51 +08:00
parent 9904d2eec6
commit ae323b6ea6

View File

@@ -16,7 +16,7 @@
<view style="width: 100%;text-align: center;margin-top: 10px;margin-bottom: 10px;">{{item.state}}</view> <view style="width: 100%;text-align: center;margin-top: 10px;margin-bottom: 10px;">{{item.state}}</view>
</view> </view>
</view> </view>
<view <view @click="bind"
style="bottom: var(--window-bottom);z-index: 1;position: fixed;background: #f1f2f3;width: 100%;height: 35px;line-height: 35px;text-align: center;color: red;"> style="bottom: var(--window-bottom);z-index: 1;position: fixed;background: #f1f2f3;width: 100%;height: 35px;line-height: 35px;text-align: center;color: red;">
绑定新卡</view> 绑定新卡</view>
@@ -77,6 +77,9 @@
dialogInputConfirm(val) { dialogInputConfirm(val) {
// 网络请求 绑定 // 网络请求 绑定
}, },
bind() {
this.$refs.inputDialog.open()
}
} }
} }
</script> </script>