threeLineDrawer.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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);closeDrawer();">
  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. if(this.drawerList.length!=0){
  66. //#ifdef H5
  67. if(this.drawerList[0].name=='手环管理'){
  68. this.$root.leftbar();
  69. }
  70. //#endif
  71. //#ifdef APP-PLUS
  72. if(this.drawerList[0].name=='手环管理'){
  73. this.$parent.leftbar();
  74. }
  75. //#endif
  76. }
  77. },
  78. clickChangeColor: function(index) {
  79. this.changeGary = index;
  80. },
  81. goToIndex:function(item){
  82. console.log(item.remark1);
  83. console.log("---");
  84. this.$parent.$root.toggleid = item.id;
  85. if(item.remark1 == '/pages/mine/Mine'){
  86. uni.switchTab({
  87. url: item.remark1
  88. });
  89. }
  90. /* if(item.remark1 == '/components/mine/Mine'){
  91. uni.switchTab({
  92. url: '/pages/mine/Mine'
  93. });
  94. } */
  95. if(item.remark1 == '/pages/index/Index'){
  96. uni.switchTab({
  97. url: item.remark1
  98. });
  99. }
  100. else if(item.remark1 == '/pages/forecast/Forecast'){
  101. this.$parent.$root.toggleSwitch = false;
  102. uni.switchTab({
  103. url: item.remark1
  104. });
  105. }
  106. else if(item.remark1 == '/components/weatherProphethomepage/WeatherProphethomepage'){
  107. this.$parent.$root.toggleSwitch = true;
  108. }
  109. else if(item.remark1 == '/components/weatherProphethomepage/WeatherProphethomepage'){
  110. this.$parent.$root.toggleSwitch = true;
  111. }
  112. else if(item.remark1 == '/pages/mine/Mine'){
  113. this.$parent.$root.pageDisplay = 1;
  114. }
  115. else if(item.remark1 == '/components/mine/Mine'){
  116. this.$parent.$root.pageDisplay = 1;
  117. }
  118. else if(item.remark1 == '/components/mine/addressBook/addressBook'){
  119. this.$parent.$root.pageDisplay = 2;
  120. }
  121. else{
  122. uni.navigateTo({
  123. url: item.remark1
  124. })
  125. }
  126. }
  127. }
  128. }
  129. </script>
  130. <style>
  131. .container{
  132. }
  133. .sisGroup {
  134. width: 90%;
  135. height: 65px;
  136. color: silver;
  137. font-size: 13px;
  138. padding-top: 40px;
  139. margin-left: 5%;
  140. font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", STHeiti, "Microsoft Yahei", Tahoma, Simsun, sans-serif;
  141. }
  142. .statusMonitoring {
  143. background-color: #393939;
  144. width: 90%;
  145. margin-left: 5%;
  146. height: 40px;
  147. margin-top: 10px;
  148. /* text-align: center; */
  149. color: silver;
  150. font-size: 14px;
  151. padding-top: 10px;
  152. padding-left: 10px;
  153. font-family: Helvetica Neue, Helvetica, sans-serif;
  154. }
  155. .picture {
  156. width: 300px;
  157. height: 700px;
  158. background-color: #1A1A1A;
  159. }
  160. .cu-bar {
  161. position: fixed;
  162. top: calc(100% - 50px);
  163. width: 100%;
  164. background-color: #1A1A1A;
  165. }
  166. .icon {
  167. float: left;
  168. }
  169. .text-black {
  170. float: left;
  171. line-height: 28px;
  172. font-size: 15px;
  173. background-color: #1A1A1A;
  174. color: silver;
  175. }
  176. .iconImgage{
  177. width: 29px;
  178. height: 35px;
  179. background-color: red;
  180. margin-left: 82px;
  181. margin-top: -25px;
  182. background-image: url(../../static/picture/i.jpg);
  183. }
  184. .item {
  185. width: 90%;
  186. height: 40px;
  187. margin-top: 10px;
  188. margin-left: 5%;
  189. /* float: right; */
  190. /* margin-right: 10px; */
  191. background-color: #272727;
  192. /* text-align: center; */
  193. color: silver;
  194. font-size: 14px;
  195. padding-top: 10px;
  196. padding-left: 10px;
  197. font-family: Helvetica Neue, Helvetica, sans-serif;
  198. }
  199. </style>