threeLineDrawer.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <template>
  2. <view class="container">
  3. <!-- 抽屜 -->
  4. <uni-drawer :visible="drawerIsShow" :width="width" @close="closeDrawer" style="z-index: 99999;">
  5. <view style="padding:0rpx; background-color:#1A1A1A;">
  6. <view class="picture">
  7. <view class="sisGroup">{{leftNavigationtitle}}
  8. <view class="iconImgage">
  9. </view>
  10. </view>
  11. <view v-for="(item,index) in drawerList" :class="[changeGary==index?'statusMonitoring':'item']" :key="index" @click="clickChangeColor(index)">
  12. <div @click="goToIndex(item)">
  13. {{item.name}}
  14. </div>
  15. </view>
  16. </view>
  17. <view class="cu-bar tabbar bg-black">
  18. <view class="action">
  19. <view class="icon cuIcon-repair text-black">
  20. </view>
  21. <view class="text-black">设置</view>
  22. </view>
  23. <view class="action" style="margin-left: 30px;">
  24. <view class="icon cuIcon-command text-black">
  25. </view>
  26. <view class="text-black">修改密码</view>
  27. </view>
  28. </view>
  29. </view>
  30. </uni-drawer>
  31. </view>
  32. </template>
  33. <script>
  34. import uniDrawer from "@/uni-drawer/uni-drawer.vue"
  35. import uniList from '@/uni-list/uni-list.vue'
  36. import uniListItem from '@/uni-list-item/uni-list-item.vue'
  37. import uniIcons from '@/uni-icons/uni-icons.vue'
  38. export default {
  39. components: {
  40. uniDrawer,
  41. uniList,
  42. uniListItem,
  43. uniIcons
  44. },
  45. data: function() {
  46. return {
  47. drawerIsShow: false,
  48. drawerList: [],
  49. width: 250,
  50. inconList: [],
  51. changeGary: -1,
  52. leftNavigationtitle:'',
  53. }
  54. },
  55. methods: {
  56. openDrawer: function(width, drawerList, inconList,leftNavigationtitle) {
  57. this.drawerIsShow = true;
  58. this.drawerList = drawerList;
  59. this.width = width;
  60. this.inconList = inconList;
  61. this.leftNavigationtitle = leftNavigationtitle;
  62. },
  63. closeDrawer: function() {
  64. this.drawerIsShow = false;
  65. },
  66. clickChangeColor: function(index) {
  67. this.changeGary = index;
  68. },
  69. goToIndex:function(item){
  70. console.log(item.remark1);
  71. if(item.remark1 == '/pages/index/Index'){
  72. uni.switchTab({
  73. url: item.remark1
  74. });
  75. }
  76. else if(item.remark1 == '/pages/forecast/Forecast'){
  77. this.$parent.$root.toggleSwitch = false;
  78. uni.switchTab({
  79. url: item.remark1
  80. });
  81. }
  82. else if(item.remark1 == '/components/weatherProphethomepage/WeatherProphethomepage'){
  83. this.$parent.$root.toggleSwitch = true;
  84. }
  85. else{
  86. uni.navigateTo({
  87. url: item.remark1
  88. })
  89. }
  90. }
  91. }
  92. }
  93. </script>
  94. <style>
  95. .container{
  96. }
  97. .sisGroup {
  98. width: 90%;
  99. height: 65px;
  100. color: silver;
  101. font-size: 13px;
  102. padding-top: 40px;
  103. margin-left: 5%;
  104. font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", STHeiti, "Microsoft Yahei", Tahoma, Simsun, sans-serif;
  105. }
  106. .statusMonitoring {
  107. background-color: #393939;
  108. width: 90%;
  109. margin-left: 5%;
  110. height: 40px;
  111. margin-top: 10px;
  112. /* text-align: center; */
  113. color: silver;
  114. font-size: 14px;
  115. padding-top: 10px;
  116. padding-left: 10px;
  117. font-family: Helvetica Neue, Helvetica, sans-serif;
  118. }
  119. .picture {
  120. width: 300px;
  121. height: 700px;
  122. background-color: #1A1A1A;
  123. }
  124. .cu-bar {
  125. position: fixed;
  126. top: calc(100% - 50px);
  127. width: 100%;
  128. background-color: #1A1A1A;
  129. }
  130. .icon {
  131. float: left;
  132. }
  133. .text-black {
  134. float: left;
  135. line-height: 28px;
  136. font-size: 15px;
  137. background-color: #1A1A1A;
  138. color: silver;
  139. }
  140. .iconImgage{
  141. width: 29px;
  142. height: 35px;
  143. background-color: red;
  144. margin-left: 82px;
  145. margin-top: -25px;
  146. background-image: url(../../static/picture/i.jpg);
  147. }
  148. .item {
  149. width: 90%;
  150. height: 40px;
  151. margin-top: 10px;
  152. margin-left: 5%;
  153. /* float: right; */
  154. /* margin-right: 10px; */
  155. background-color: #272727;
  156. /* text-align: center; */
  157. color: silver;
  158. font-size: 14px;
  159. padding-top: 10px;
  160. padding-left: 10px;
  161. font-family: Helvetica Neue, Helvetica, sans-serif;
  162. }
  163. </style>