一、vue 中 把后台传过来的数据 中的数字 转换为 汉字

v-if ="" 冒号里面写遍历到的数据可以直接用

代码如下:

template

 <tbody>
                        <tr v-for="(item, index) in student_list" :key="index">
                            <td>{{ item.name }}</td>
                            <td>{{ item.sex }}</td>
                            <td>{{ item.headmaster }}</td>
                            <!-- <td>{{ item.status }}</td> -->
                            <td v-if = "item.status == 1">
                                在读
                            </td>
                            <td v-if = "item.status == 0">
                                离校
                            </td>
                            <td v-if = "item.status == -1">
                                试听
                            </td>
                            <td>{{ item.classname }}</td>
                            <td>{{ item.tele }}</td>
                        </tr>
                    </tbody>
                </table>
<script>
export default {
    name: 'stumain',
    data(){
        return {
            student_list:[],
        }
    },
    mounted() {
        var that = this;
        this.axios('http`````Student').then(function(res) {
            that.list = res.data;
            console.log(that.list);
            that.student_list = that.list;
        });
    },
};
</script>

总结

直接v-if替换就行

Logo

前往低代码交流专区

更多推荐