aosiyiliaouniapp/pages/cijimulu/index.vue

61 lines
1.3 KiB
Vue
Raw Normal View History

2024-04-08 02:59:47 +00:00
<template>
<view class="body">
<view class="" v-for="(item,index) in datas" :key="index">
<view class="sekuai">
<view class="neibu">
<view class="zhuBT">
{{item}}
</view>
<view class="tupian">
<u-image src="https://maomaochong.top:8088/i/2024/03/25/66015effd9c6e.png" :fade="true" duration="200" mode="scaleToFill" width="170" height="170"></u-image>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
datas:[]
}
},
onShow() {
var me = this
var res=uni.getStorageSync('token')
var a
for(a=0;a<res.menu.length;a++){
console.log(res.menu[a].menuId)
if(res.menu[a].menuId=="1101"){
me.datas.push(res.menu[a].menuName)
}
if(res.menu[a].menuId=="1102"){
me.datas.push(res.menu[a].menuName)
}
if(res.menu[a].menuId=="1103"){
me.datas.push(res.menu[a].menuName)
}
if(res.menu[a].menuId=="1104"){
me.datas.push(res.menu[a].menuName)
}
if(res.menu[a].menuId=="1105"){
me.datas.push(res.menu[a].menuName)
}
if(res.menu[a].menuId=="12"){
me.datas.push(res.menu[a].menuName)
}
}
console.log(me.datas)
},
methods: {
}
}
</script>
<style>
@import url("index.css");
</style>