您好,登錄后才能下訂單哦!
廢話不多說了,直接上代碼吧!
<dd class="clearfix" v-for="(item,index) in tableDataList" :class="index%2 != 0 ? 'dd-bg' : ''"> <div class="indexItem indexItem3 tal" title=""><span>{{item.status}}{{countTotal}}</span></div> </dd>
<script type="text/ecmascript-6"> import Vue from 'vue' import axios from 'axios' export default { data(){ return{ tableDataList:[],//定義列表數據信息 } }, mounted(){ //獲取列表數據信息 axios.get('url',{ withCredentials: true }) .then((res) => { // console.log(res); let tableData = res.data.data; this.tableDataList = tableData.table_list; }) .catch((error) => { console.log(error) }) }, computed:{ //將狀態數字轉換為對應的文字解釋 countTotal() { for (let i = 0; i < this.tableDataList.length; i++) { if (this.tableDataList[i].status === 0) { this.tableDataList[i].status = '文字說明0' } else if (this.tableDataList[i].status === 1) { this.tableDataList[i].status = '文字說明1' } else if (this.tableDataList[i].status === 2) { this.tableDataList[i].status = '文字說明2' } else if (this.tableDataList[i].status === 3) { this.tableDataList[i].status = '文字說明3' } else if (this.tableDataList[i].status === 4) { this.tableDataList[i].status = '文字說明4' } else if (this.tableDataList[i].status === 5) { this.tableDataList[i].status = '文字說明5' } Vue.set(this.tableDataList,i,this.tableDataList[i]) } } } } </script>
注意:Vue.set(this.tableDataList,i,this.tableDataList[i]) 這段代碼必須寫,否則數據不會更新
以上這篇vue改變循環遍歷后的數據實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。