u-header.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <template>
  2. <view class="je">
  3. <view class="sheader" :style="'height:'+headerHeight+'px'">
  4. <view class="sheader_a" @click="side">
  5. <image src="http://pet.hdlkeji.com/assets/static/index_icon.png" class="sheader_b" mode=""></image>
  6. <view class="title">宠365</view>
  7. </view>
  8. </view>
  9. <u-popup v-model="show" mode="left">
  10. <view class="indexa" :style="'top:'+headerHeight+'px'">
  11. <view class="sheader_a" @click="side">
  12. <image src="http://pet.hdlkeji.com/assets/static/index_icon.png" class="sheader_b" mode=""></image>
  13. <image src="http://pet.hdlkeji.com/assets/static/index_logo.png" class="sheader_img" mode=""></image>
  14. </view>
  15. <view class="indexb">
  16. <view class="indexc">
  17. <image :src="hasLogin && userinfo.avatar ? userinfo.avatar :'http://pet.hdlkeji.com/assets/static/moren.png'"
  18. class="indexc_img" mode=""></image>
  19. <view class="indexd" @click="GoLogin">
  20. <view class="indexd_p">{{ hasLogin? (userinfo.nickname || '未设置昵称') : '立即登录' }}</view>
  21. <view class="indexd_p1" v-if="hasLogin">{{userinfo.mobile}}</view>
  22. </view>
  23. </view>
  24. <view class="indexe">
  25. <view class="indexe_a" @click="GoIndex">
  26. <view class="indexe_box">
  27. <image src="http://pet.hdlkeji.com/assets/static/meun_1.png" class="indexe_icon" mode=""></image>
  28. </view>
  29. <view class="indexe_p">代办事项</view>
  30. </view>
  31. <view class="indexe_a" @click="GoOrder">
  32. <view class="indexe_box">
  33. <image src="http://pet.hdlkeji.com/assets/static/meun_1.png" class="indexe_icon" mode=""></image>
  34. </view>
  35. <view class="indexe_p">订单管理</view>
  36. </view>
  37. <view class="indexe_a" @click="GoMarket">
  38. <view class="indexe_box">
  39. <image src="http://pet.hdlkeji.com/assets/static/meun_1.png" class="indexe_icon" mode=""></image>
  40. </view>
  41. <view class="indexe_p">营销设计</view>
  42. </view>
  43. <view class="indexe_a" @click="GoDelivery">
  44. <view class="indexe_box">
  45. <image src="http://pet.hdlkeji.com/assets/static/meun_1.png" class="indexe_icon" mode=""></image>
  46. </view>
  47. <view class="indexe_p">配送员管理</view>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </u-popup>
  53. </view>
  54. </template>
  55. <script>
  56. import {
  57. getToken
  58. } from '@/utils/auth';
  59. export default {
  60. name: "u-header",
  61. data() {
  62. return {
  63. headerHeight: 0,
  64. show: false,
  65. hasLogin: false,
  66. userinfo: {}
  67. };
  68. },
  69. created() {
  70. uni.getSystemInfo({
  71. success: (res) => {
  72. const menuButton = uni.getMenuButtonBoundingClientRect() // 胶囊
  73. const navBarPadding = (menuButton.top - res.statusBarHeight) * 2
  74. let statusBarHeight = res.statusBarHeight
  75. let navHeight = menuButton.height + navBarPadding
  76. this.headerHeight = navHeight + statusBarHeight
  77. }
  78. })
  79. this.GetUser()
  80. },
  81. methods: {
  82. // 代办事项
  83. GoIndex(){
  84. uni.navigateTo({
  85. url:'/pages/index/index'
  86. })
  87. },
  88. GoDelivery(){
  89. uni.navigateTo({
  90. url:'/pages/Delivery/Delivery'
  91. })
  92. },
  93. // 点击营销设置
  94. GoMarket(){
  95. uni.navigateTo({
  96. url:'/pages/Marketing/Marketing'
  97. })
  98. },
  99. // 点击前往订单页面
  100. GoOrder(){
  101. uni.navigateTo({
  102. url:'/pages/order/order'
  103. })
  104. },
  105. //去登陆
  106. GoLogin() {
  107. var token = getToken();
  108. if (!token) {
  109. this.side()
  110. uni.navigateTo({
  111. url: '../login/login'
  112. })
  113. }
  114. },
  115. //获取用户信息
  116. GetUser() {
  117. this.request('/user/index', '', 'post').then(res => {
  118. var token = getToken();
  119. if (token) {
  120. this.userinfo = res.data
  121. this.hasLogin = true
  122. }
  123. });
  124. },
  125. side() {
  126. this.show = !this.show
  127. },
  128. }
  129. }
  130. </script>
  131. <style lang="scss">
  132. .u-drawer-content {
  133. width: 68% !important;
  134. }
  135. .indexa {
  136. position: relative;
  137. .sheader_a {
  138. margin-top: -60rpx;
  139. width: 100%;
  140. height: 60rpx;
  141. padding: 0 24rpx;
  142. box-sizing: border-box;
  143. display: flex;
  144. justify-content: flex-start;
  145. align-items: center;
  146. .sheader_b {
  147. width: 48rpx;
  148. height: 38rpx;
  149. }
  150. .sheader_img {
  151. width: 132rpx;
  152. height: 50rpx;
  153. margin-left: 36rpx;
  154. }
  155. }
  156. }
  157. .indexb {
  158. width: 100%;
  159. padding: 30rpx;
  160. box-sizing: border-box;
  161. .indexc {
  162. display: flex;
  163. justify-content: flex-start;
  164. align-items: center;
  165. margin-top: 30rpx;
  166. .indexc_img {
  167. width: 130rpx;
  168. height: 130rpx;
  169. border-radius: 50%;
  170. opacity: 1;
  171. }
  172. .indexd {
  173. margin-left: 20rpx;
  174. .indexd_p {
  175. font-size: 36rpx;
  176. font-family: PingFangSC-Semibold;
  177. line-height: 50rpx;
  178. color: #111111;
  179. opacity: 1;
  180. }
  181. .indexd_p1 {
  182. font-size: 32rpx;
  183. font-family: PingFangSC-Regular;
  184. line-height: 44rpx;
  185. color: #111111;
  186. opacity: 1;
  187. margin-top: 6rpx;
  188. }
  189. }
  190. }
  191. .indexe {
  192. margin-top: 40rpx;
  193. .indexe_a {
  194. display: flex;
  195. justify-content: flex-start;
  196. align-items: center;
  197. padding: 32rpx 15rpx;
  198. box-sizing: border-box;
  199. .indexe_box {
  200. width: 49rpx;
  201. text-align: center;
  202. .indexe_icon {
  203. width: 45rpx;
  204. height: 43rpx;
  205. }
  206. .indexe_icona {
  207. width: 41rpx;
  208. height: 47rpx;
  209. }
  210. .indexe_iconb {
  211. width: 49rpx;
  212. height: 47rpx;
  213. }
  214. .indexe_iconc {
  215. width: 39rpx;
  216. height: 45rpx;
  217. }
  218. .indexe_icond {
  219. width: 43rpx;
  220. height: 49rpx;
  221. }
  222. }
  223. .indexe_p {
  224. font-size: 30rpx;
  225. font-family: PingFang SC;
  226. font-weight: 400;
  227. line-height: 42rpx;
  228. color: #111111;
  229. opacity: 1;
  230. margin-left: 30rpx;
  231. }
  232. }
  233. }
  234. }
  235. .je {
  236. position: fixed;
  237. left: 0;
  238. top: 0;
  239. // height: 100vh;
  240. width: 100%;
  241. background: #ffffff;
  242. z-index: 999;
  243. .sheader {
  244. position: absolute;
  245. top: -5rpx;
  246. left: 0;
  247. width: 100%;
  248. color: #000000;
  249. z-index: 99;
  250. // background: linear-gradient(360deg, rgba(236, 236, 236, 0) 0%, #FFFFFF 100%);
  251. background-color: #FFFFFF;
  252. .sheader_a {
  253. position: absolute;
  254. bottom: 0;
  255. left: 0;
  256. width: 100%;
  257. height: 60rpx;
  258. padding: 0 24rpx;
  259. box-sizing: border-box;
  260. display: flex;
  261. justify-content: flex-start;
  262. align-items: center;
  263. .title {
  264. width: 100%;
  265. text-align: center;
  266. font-size: 36rpx;
  267. font-family: PingFang SC;
  268. font-weight: 500;
  269. color: #111111;
  270. opacity: 1;
  271. padding-right: 50rpx;
  272. box-sizing: border-box;
  273. }
  274. .sheader_b {
  275. width: 48rpx;
  276. height: 38rpx;
  277. }
  278. .sheader_img {
  279. width: 132rpx;
  280. height: 50rpx;
  281. margin-left: 36rpx;
  282. }
  283. }
  284. }
  285. }
  286. </style>