溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

使用vue中的v-for遍歷二維數(shù)組的方法

發(fā)布時(shí)間:2020-10-13 11:50:20 來(lái)源:腳本之家 閱讀:610 作者:青丘耳畔 欄目:web開(kāi)發(fā)

如下所示:

<table cellpadding="0" cellspacing="0" class="clearfix bigTable" id='downloaddata'>
   <tr v-for='(item, index) in data'>
    <template v-for='items in item'>
     <template v-for='(itemss, indexs) in items' v-if='indexs !== "type"'>
      <td>{{itemss}}</td>
     </template>
    </template>
   </tr>

其中,data數(shù)據(jù)為:

this.data = [
   [
    {
     type: '',
     name: '資產(chǎn)',
     start: '期末余額',
     end: '期初余額'
    },
    {
     type: '',
     name: '負(fù)債和所有者權(quán)益(或股東權(quán)益)',
     start: '期末余額',
     end: '期初余額'
    }
   ],
   [
    {
     type: '',
     name: '資產(chǎn)',
     start: 125000,
     end: 12534567
    },
    {
     type: '',
     name: '負(fù)債',
     start: 125000,
     end: 12534567
    }
   ],
   [
    {
     type: '資產(chǎn)',
     name: '貨幣資金',
     start: 125000,
     end: 12534567
    },
    {
     type: '負(fù)債',
     name: '應(yīng)付短期融資款',
     start: 125000,
     end: 12534567
    }
   ],
   [
    {
     type: '資產(chǎn)',
     name: '其中:客戶(hù)存款',
     start: 125000,
     end: 12534567
    },
    {
     type: '',
     name: '所有者權(quán)益(或股東權(quán)益)',
     start: 125000,
     end: 12534567
    }
   ],
   [
    {
     type: '資產(chǎn)',
     name: '',
     start: '',
     end: ''
    },
    {
     type: '所有者權(quán)益(或股東權(quán)益',
     name: '實(shí)收資本(或股本)',
     start: 125000,
     end: 12534567
    }
   ],
   [
    {
     type: '資產(chǎn)',
     name: '資產(chǎn)總計(jì)',
     start: 111,
     end: 11
    },
    {
     type: '所有者權(quán)益(或股東權(quán)益',
     name: '資本公積',
     start: 125000,
     end: 12534567
    }
   ]
  ]

結(jié)果:

使用vue中的v-for遍歷二維數(shù)組的方法

以上這篇使用vue中的v-for遍歷二維數(shù)組的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI