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;"> style="bottom: 0;z-index: 1;position: fixed;background: #f1f2f3;width: 100%;height: 35px;line-height: 35px;text-align: center;color: red;">
绑定新卡</view> 绑定新卡</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> </view>
</template> </template>
@ -27,6 +31,9 @@
export default { export default {
data() { data() {
return { return {
page: {
remarks: ''
},
data: [{ data: [{
showBtn: true, showBtn: true,
time: "2023.10.20-2025.10.20", time: "2023.10.20-2025.10.20",
@ -67,7 +74,9 @@
} }
}, },
methods: { methods: {
dialogInputConfirm(val) {
//
},
} }
} }
</script> </script>

Loading…
Cancel
Save