成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Vue如何實現(xiàn)支付寶支付功能-創(chuàng)新互聯(lián)

這篇文章主要介紹了Vue如何實現(xiàn)支付寶支付功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

網(wǎng)站建設哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、微信小程序、集團企業(yè)網(wǎng)站建設等服務項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了荔灣免費建站歡迎大家使用!

先給大家上個效果圖:

Vue如何實現(xiàn)支付寶支付功能

<div class="goods-psd">
  <p class="apply-title">
   請輸入支付密碼
  </p>
  <p >確認支付 <span>{{password}}</span> </p>
  <div class="psd-container">
   <input class="psd-input" type="password" readonly v-for="(value,index) in passwordGroup" :key="index" :value="value.value">
  </div>
 </div>
 <div class="input-pan">
  <div class="pan-num" v-for="(value,num) in number" :key="num" @click="inputPsd(value)">{{value}}</div>
 </div>
</div>

不管邏輯有沒有搞懂,先把樣式寫出來總是沒錯啦~

思路梳理

1.輸入框使用for循環(huán),循環(huán)出6個input; 2.下面的按鍵使用for循環(huán),便于后期存儲記錄; 3.將所輸入的密碼放入到pasgroup數(shù)組中; 4.定義輸入框的下標,將pasgroup數(shù)組內(nèi)容按照下標依次放入input內(nèi); 5.開始代碼啦~

代碼

data () {
  return {
   popupVisible1: true,
   realInput: '',
   password: '111',
   passwordGroup: [],
   number: ['1','2','3','4','5','6','7','8','9','取消','0','刪除'],
   pasgroup: [],
   currentInputIndex:-1
  }
 }

在data內(nèi)定義好我們需要的元素

initPasswordGroup () {
 this.passwordGroup=[];
 for(var i=0;i<6;i++){
  this.passwordGroup.push({
    value:null
  })
 }
}

循環(huán)出input,將其內(nèi)容賦值為value:null,在界面上顯示出6個輸入框

watch: {
  currentInputIndex (val) {
   if(val == 5){
    console.log(this.pasgroup)
   }else if(val <= -1){
    this.currentInputIndex = -1
   }
  }
 }

監(jiān)聽數(shù)組下標的變化,當下標到5的時候打印出該數(shù)組

inputPsd (value) {
   switch (value) {
    case '取消':
     this.currentInputIndex = -1
     this.pasgroup = []
     this.initPasswordGroup ()
     break;
    case '刪除':
     this.pasgroup.pop()
     console.log(this.pasgroup)
     // this.currentInputIndex 下標值,刪除添加時改變
     this.passwordGroup[this.currentInputIndex].value = null
     this.currentInputIndex--
     console.log(this.passwordGroup)
     break;
    default:
     this.pasgroup.push(value)
     this.currentInputIndex++
     this.passwordGroup[this.currentInputIndex].value = value
   }
  },

獲取到所點擊的元素,當點擊‘取消'時清空input 輸入框內(nèi)的內(nèi)容,清除數(shù)組;當點擊‘刪除'時,下標值依次減減,將value重置為null; 當點擊其他數(shù)字時,下標值依次增加,將數(shù)組pasgroup[]里面的內(nèi)容寫進passwordGroup[]里面,在輸入框中展示。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Vue如何實現(xiàn)支付寶支付功能”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學習!

網(wǎng)頁題目:Vue如何實現(xiàn)支付寶支付功能-創(chuàng)新互聯(lián)
當前網(wǎng)址:http://jinyejixie.com/article6/dehdog.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站建設、ChatGPT靜態(tài)網(wǎng)站、標簽優(yōu)化、軟件開發(fā)、品牌網(wǎng)站建設

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站網(wǎng)頁設計
会昌县| 临漳县| 徐州市| 贡嘎县| 南和县| 呼和浩特市| 德庆县| 鹿邑县| 醴陵市| 永丰县| 囊谦县| 岑溪市| 沈阳市| 罗平县| 东丽区| 黄梅县| 改则县| 尉氏县| 会理县| 延长县| 托克托县| 紫金县| 河间市| 庆安县| 鄄城县| 汝州市| 宜都市| 虞城县| 铜陵市| 将乐县| 上犹县| 长春市| 静安区| 阿鲁科尔沁旗| 武隆县| 通城县| 旌德县| 宣武区| 广河县| 禹州市| 吉木乃县|