wangjiahai 2 years ago
parent
commit
cdba5b6bef
  1. 11
      pages/card/card.vue

11
pages/card/card.vue

@ -20,6 +20,10 @@
style="bottom: 0;z-index: 1;position: fixed;background: #f1f2f3;width: 100%;height: 35px;line-height: 35px;text-align: center;color: red;">
绑定新卡</view>
<uni-popup ref="inputDialog" type="dialog">
<uni-popup-dialog ref="inputClose" mode="input" title="绑定新卡" :value="page.remarks" placeholder="请输入卡号"
@confirm="dialogInputConfirm"></uni-popup-dialog>
</uni-popup>
</view>
</template>
@ -27,6 +31,9 @@
export default {
data() {
return {
page: {
remarks: ''
},
data: [{
showBtn: true,
time: "2023.10.20-2025.10.20",
@ -67,7 +74,9 @@
}
},
methods: {
dialogInputConfirm(val) {
//
},
}
}
</script>

Loading…
Cancel
Save