1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <view>
- <view class="user" v-for="item in powers" :key="item.code">
- <text class="title">{{item.name}}</text>
- <view class="content">
- <text>标识:{{item.flag}}</text>
- <text>类型:{{item.type}}</text>
- <text>描述:{{item.description}}</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- powers: [],
- }
- },
- onLoad() {
- uni.request({
- url: 'http://127.0.0.1:9999/power/list',
- method: 'GET',
- data: {},
- success: res => {
- this.powers = res.data.data.powers;
- console.log(res.data.data.powers);
- },
- })
- },
- methods: {
- }
- }
- </script>
- <style>
- .anniu {
- width: 116rpx;
- height: 116rpx;
- float: right;
- margin-top: 10rpx;
- margin-right: 4rpx;
- }
- .user {
- width: 702rpx;
- height: 280rpx;
- background-color: white;
- margin-top: 30rpx;
- margin-left: 24rpx;
- border-radius: 10rpx;
- padding-top: 30rpx;
- }
- .content {
- display: flex;
- flex-direction: column;
- margin-top: 30rpx;
- margin-left: 30rpx;
- line-height: 55rpx;
- font-size: 28rpx;
- color: #444546;
- }
- .title {
- font-size: 36rpx;
- margin-left: 30rpx;
- color: #282828;
- font-weight: 600;
- }
- </style>
|