Workorder.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <view class="management">
  3. <view class="managelind">
  4. <view class="managename" @click="Tenantbill">
  5. <view class="managename1">
  6. <!-- <img :src='srczuhu' alt=""> -->
  7. <u--image mode="widthFix" :src="srczuhu" width="48rpx" height="48rpx"></u--image>
  8. </view>
  9. <view class="managename2">
  10. 租户账单
  11. </view>
  12. </view>
  13. <view class="managename" @click="Remotecontrol">
  14. <view class="managename1">
  15. <!-- <img :src='srcyuanc' alt=""> -->
  16. <u--image mode="widthFix" :src="srcyuanc" width="48rpx" height="48rpx"></u--image>
  17. </view>
  18. <view class="managename2">
  19. 远程管控
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. srczuhu: require('@/static/management/zd.png'),
  30. srcyuanc: require('@/static/management/yc.png'),
  31. }
  32. },
  33. methods: {
  34. Tenantbill(){
  35. uni.navigateTo({
  36. url: '/pages/Workorder/Tenantbill/Tenantbill'
  37. })
  38. },
  39. Remotecontrol(){
  40. uni.navigateTo({
  41. url: '/pages/Workorder/Remotecontrol/Remotecontrol'
  42. })
  43. },
  44. }
  45. }
  46. </script>
  47. <style>
  48. .management{}
  49. .managelind{
  50. display: flex;
  51. justify-content: space-around;
  52. align-items: center;
  53. width: 690rpx;
  54. min-height: 130rpx;
  55. margin: 20rpx auto;
  56. background: #fff;
  57. border-radius: 10px;
  58. }
  59. .managename{
  60. display: flex;
  61. flex-direction: column;
  62. align-items: center;
  63. justify-content: center;
  64. }
  65. .managename1 img{
  66. width: 40rpx;
  67. height: 40rpx;
  68. }
  69. .managename2{
  70. padding-top: 15rpx;
  71. color: #666;
  72. font-size: 20rpx;
  73. }
  74. </style>