1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <view>
- <view class="systemSet" @tap="showUser">
- <image class="image1" src="../../static/系统设置/系统设置@2x.png"></image>
- <text style="margin-top: 40rpx;margin-left: 30rpx; width: 500rpx;">用户管理</text>
- <image class="image2" src="../../static/运营商管理/ico2@3x.png"></image>
- </view>
- <view class="rolePower" @tap="showRole">
- <image class="image1" src="../../static/系统设置/系统设置@2x.png"></image>
- <text style="margin-top: 40rpx;margin-left: 30rpx; width: 500rpx;">角色管理</text>
- <image class="image2" src="../../static/运营商管理/ico2@3x.png"></image>
- </view>
-
- <view class="rolePower" @tap="showPower">
- <image class="image1" src="../../static/系统设置/系统设置@2x.png"></image>
- <text style="margin-top: 40rpx;margin-left: 30rpx; width: 500rpx;">权限管理</text>
- <image class="image2" src="../../static/运营商管理/ico2@3x.png"></image>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- showUser() {
- uni.navigateTo({
- url: '/pages/user/user',
- });
- },
- showRole() {
- uni.navigateTo({
- url: '/pages/rolePower/rolePower',
- });
- },
-
- showPower() {
- uni.navigateTo({
- url: '/pages/power/power',
-
- });
- }
- }
- }
- </script>
- <style>
- .systemSet {
- display: flex;
- flex-direction: row;
- height: 125rpx;
- background-color: white;
- margin-top: 30rpx;
- width: 704rpx;
- margin-left: 23rpx;
- border-radius: 10rpx;
- }
- .rolePower {
- display: flex;
- flex-direction: row;
- height: 125rpx;
- background-color: white;
- margin-top: 30rpx;
- width: 704rpx;
- margin-left: 23rpx;
- border-radius: 10rpx;
- }
- .image1 {
- width: 90rpx;
- height: 90rpx;
- margin-top: 20rpx;
- margin-left: 20rpx;
- }
- .image2 {
- width: 10px;
- height: 10px;
- margin-top: 50rpx;
- // margin-left: 400rpx;
- }
- </style>
|