index.vue 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709
  1. <template>
  2. <view class="new-users" :style="{ height: pageHeight }">
  3. <view class="top" style="background: rgb(254,245,246); color: black;">
  4. <view class="sys-head">
  5. <view class="sys-bar" :style="{ height: sysHeight }"></view>
  6. <view class="sys-title">个人中心</view>
  7. <view class="bg" ></view>
  8. </view>
  9. </view>
  10. <view class="mid" style="flex:1;overflow: hidden;padding: 30rpx;padding-top: 0; background: rgb(249,249,249);">
  11. <scroll-view scroll-y="true" style="height: 100%;">
  12. <view class="head" v-if="currentRole === 'leader'">
  13. <view class="user-card" :class="member_style == 3 ? 'unBg' : ''">
  14. <view class="bg"></view>
  15. <view class="user-info">
  16. <view>
  17. <!-- 注释这个是加的bnt -->
  18. <!-- #ifdef H5 -->
  19. <button class="bntImg" v-if="userInfo.is_complete == 0 && isWeixin" @click="getWechatuserinfo">
  20. <image class="avatar" src='/static/images/f.png'></image>
  21. <view class="avatarName">{{ $t('获取头像') }}</view>
  22. </button>
  23. <!-- #endif -->
  24. <!-- #ifdef MP -->
  25. <button class="bntImg" v-if="userInfo.is_complete == 0" @tap="getUserProfile">
  26. <image class="avatar" src='/static/images/f.png'></image>
  27. <view class="avatarName">{{ $t('获取头像') }}</view>
  28. </button>
  29. <!-- #endif -->
  30. <!-- #ifndef APP-PLUS -->
  31. <view v-else class="avatar-box" :class="{ on: userInfo.is_money_level }">
  32. <image class="avatar" :src='userInfo.avatar' v-if="userInfo.avatar" @click="goEdit()">
  33. </image>
  34. <image v-else class="avatar" src="/static/images/f.png" mode="" @click="goEdit()">
  35. </image>
  36. <view class="headwear" v-if="userInfo.is_money_level && userInfo.svip_open">
  37. <image src="/static/images/headwear.png"></image>
  38. </view>
  39. </view>
  40. <!-- #endif -->
  41. <!-- #ifdef APP-PLUS -->
  42. <view class="avatar-box" :class="{ on: userInfo.is_money_level }">
  43. <image class="avatar" :src='userInfo.avatar' v-if="userInfo.avatar" @click="goEdit()">
  44. </image>
  45. <image v-else class="avatar" src="/static/images/f.png" mode="" @click="goEdit()">
  46. </image>
  47. <view class="headwear" v-if="userInfo.is_money_level && userInfo.svip_open">
  48. <image src="/static/images/headwear.png"></image>
  49. </view>
  50. </view>
  51. <!-- #endif -->
  52. </view>
  53. <view class="info">
  54. <!-- #ifdef MP -->
  55. <view class="name" v-if="!userInfo.id" @click="openAuto"
  56. style="height: 100%; display: flex; align-items: center;">
  57. {{ $t('请点击授权') }}
  58. </view>
  59. <!-- #endif -->
  60. <!-- #ifdef H5 -->
  61. <view class="name" v-if="!userInfo.id && isWeixin" @click="openAuto"
  62. style="height: 100%; display: flex; align-items: center;">
  63. {{ $t('请点击授权') }}
  64. </view>
  65. <!-- #endif -->
  66. <view class="name" v-if="userInfo.id">
  67. {{ userInfo.name }}
  68. <image class="live" :src="userInfo.vip_icon" v-if="userInfo.vip_icon"></image>
  69. <view class="vip" v-if="userInfo.is_money_level > 0 && userInfo.svip_open">
  70. <image src="/static/images/svip.png"></image>
  71. </view>
  72. </view>
  73. <view class="num" v-if="userInfo.username" @click="goEdit()">
  74. <view class="num-txt">
  75. <view v-if="currentRole === 'leader'" class="leader">团长</view>
  76. </view>
  77. <!-- <view class="icon">
  78. <image src="/static/images/edit.png" mode=""></image>
  79. </view> -->
  80. </view>
  81. <!-- <view class="phone" v-if="!userInfo.username && isLogin" @tap="bindPhone">
  82. {{$t('绑定手机号')}}</view> -->
  83. </view>
  84. <view v-if="userInfo.livingHall === 1" class="message" style=" white-space: nowrap;">
  85. <text v-if="currentRole === 'leader'" style=" color: #75BE00;margin-right: 20rpx;">切换团员</text>
  86. <u-switch v-model="roleSwitch" activeColor="#75BE00" size="16" @change="changeRole"></u-switch>
  87. </view>
  88. </view>
  89. </view>
  90. <view class="group-buying-data">
  91. <view class="group-title">
  92. 团购数据
  93. </view>
  94. <view class="group-content">
  95. <view class="group-content-l">
  96. <view class="content-num">
  97. {{grouponStatis.lastNewViewTotal}}
  98. </view>
  99. <view class="content-info">
  100. 最新团购浏览总量 (次)
  101. </view>
  102. </view>
  103. <view class="group-content-r">
  104. <view class="content-num">
  105. {{grouponStatis.lastNewMake}}
  106. </view>
  107. <view class="content-info">
  108. 最新团购成交总额 (元)
  109. </view>
  110. </view>
  111. </view>
  112. </view>
  113. <view class="group-buying-btn">
  114. <view @click="goGroupbuying('pickupVerification')" class="image-text_21" style="margin-right: 30rpx;">
  115. <image class="icon_10" referrerpolicy="no-referrer"
  116. src="http://www.gzzzyd.com/groupon/regiment/提货管理@2x(2).png" />
  117. </view>
  118. <view @click="goGroupbuying('publish_group')" class="image-text_21">
  119. <image class="icon_1" referrerpolicy="no-referrer"
  120. src="http://www.gzzzyd.com/groupon/regiment/提货管理@2x(1).png" />
  121. </view>
  122. </view>
  123. <view class="order-wrapper" :class="userInfo.svip_open ? '' : 'height'">
  124. <view class="order-bd">
  125. <block v-for="(item, index) in orderMenu" :key="index">
  126. <navigator class="order-item" hover-class="none" :url="item.url">
  127. <view class="pic">
  128. <image :src="item.src" mode=""></image>
  129. </view>
  130. <view class="txt">{{ $t(item.title) }}</view>
  131. </navigator>
  132. </block>
  133. </view>
  134. </view>
  135. <view class="tool_list">
  136. <u-cell-group>
  137. <navigator url="/pages/columnGoods/HotNewGoods/feedback" hover-class="none">
  138. <u-cell isLink>
  139. <view slot="title" class="u-slot-title">
  140. <image src="http://www.gzzzyd.com/groupon/regiment/编组 6@2x.png" mode=""></image>
  141. <text class="u-cell-text">建议与反馈</text>
  142. </view>
  143. </u-cell>
  144. </navigator>
  145. <u-cell isLink>
  146. <view slot="title" class="u-slot-title" @click="goMyMessage">
  147. <image src="http://www.gzzzyd.com/groupon/regiment/编组 8@2x.png" mode=""></image>
  148. <text class="u-cell-text">我的消息</text>
  149. </view>
  150. </u-cell>
  151. <navigator url="/pages/groupbuying/aboutUs/index" hover-class="none">
  152. <u-cell isLink>
  153. <view slot="title" class="u-slot-title">
  154. <image src="http://www.gzzzyd.com/groupon/regiment/编组 8@2x(1).png" mode=""></image>
  155. <text class="u-cell-text">关于我们</text>
  156. </view>
  157. </u-cell>
  158. </navigator>
  159. <navigator url="/pages/users/user_info/index" hover-class="none">
  160. <u-cell isLink>
  161. <view slot="title" class="u-slot-title">
  162. <image src="http://www.gzzzyd.com/groupon/regiment/编组 18@2x.png" mode=""></image>
  163. <text class="u-cell-text">设置</text>
  164. </view>
  165. </u-cell>
  166. </navigator>
  167. </u-cell-group>
  168. </view>
  169. <view class="footer">
  170. <button @click="outLogin">
  171. 退出登录
  172. </button>
  173. </view>
  174. </view>
  175. <view class="head" v-if="currentRole === 'employees'">
  176. <view class="user-card" :class="member_style == 3 ? 'unBg' : ''">
  177. <view class="bg"></view>
  178. <view class="user-info">
  179. <view>
  180. <!-- 注释这个是加的bnt -->
  181. <!-- #ifdef H5 -->
  182. <button class="bntImg" v-if="userInfo.is_complete == 0 && isWeixin" @click="getWechatuserinfo">
  183. <image class="avatar" src='/static/images/f.png'></image>
  184. <view class="avatarName">{{ $t('获取头像') }}</view>
  185. </button>
  186. <!-- #endif -->
  187. <!-- #ifdef MP -->
  188. <button class="bntImg" v-if="userInfo.is_complete == 0" @tap="getUserProfile">
  189. <image class="avatar" src='/static/images/f.png'></image>
  190. <view class="avatarName">{{ $t('获取头像') }}</view>
  191. </button>
  192. <!-- #endif -->
  193. <!-- #ifndef APP-PLUS -->
  194. <view v-else class="avatar-box" :class="{ on: userInfo.is_money_level }">
  195. <image class="avatar" :src='userInfo.avatar' v-if="userInfo.avatar" @click="goEdit()">
  196. </image>
  197. <image v-else class="avatar" src="/static/images/f.png" mode="" @click="goEdit()">
  198. </image>
  199. <view class="headwear" v-if="userInfo.is_money_level && userInfo.svip_open">
  200. <image src="/static/images/headwear.png"></image>
  201. </view>
  202. </view>
  203. <!-- #endif -->
  204. <!-- #ifdef APP-PLUS -->
  205. <view class="avatar-box" :class="{ on: userInfo.is_money_level }">
  206. <image class="avatar" :src='userInfo.avatar' v-if="userInfo.avatar" @click="goEdit()">
  207. </image>
  208. <image v-else class="avatar" src="/static/images/f.png" mode="" @click="goEdit()">
  209. </image>
  210. <view class="headwear" v-if="userInfo.is_money_level && userInfo.svip_open">
  211. <image src="/static/images/headwear.png"></image>
  212. </view>
  213. </view>
  214. <!-- #endif -->
  215. </view>
  216. <view class="info">
  217. <!-- #ifdef MP -->
  218. <view class="name" v-if="!userInfo.id" @click="openAuto"
  219. style="height: 100%; display: flex; align-items: center;">
  220. {{ $t('请点击授权') }}
  221. </view>
  222. <!-- #endif -->
  223. <!-- #ifdef H5 -->
  224. <view class="name" v-if="!userInfo.id && isWeixin" @click="openAuto"
  225. style="height: 100%; display: flex; align-items: center;">
  226. {{ $t('请点击授权') }}
  227. </view>
  228. <!-- #endif -->
  229. <view class="name" v-if="userInfo.id">
  230. {{ userInfo.name }}
  231. <image class="live" :src="userInfo.vip_icon" v-if="userInfo.vip_icon"></image>
  232. <view class="vip" v-if="userInfo.is_money_level > 0 && userInfo.svip_open">
  233. <image src="/static/images/svip.png"></image>
  234. </view>
  235. </view>
  236. <view class="num" v-if="userInfo.username" @click="goEdit()">
  237. <view class="num-txt">
  238. <view class="employees">团员</view>
  239. </view>
  240. <!-- <view class="icon">
  241. <image src="/static/images/edit.png" mode=""></image>
  242. </view> -->
  243. </view>
  244. <!-- <view class="phone" v-if="!userInfo.username && isLogin" @tap="bindPhone">
  245. {{$t('绑定手机号')}}</view> -->
  246. </view>
  247. <view v-if="userInfo.livingHall === 1" class="message" style=" white-space: nowrap;">
  248. <text style=" color: rgb(174, 33, 56);margin-right: 20rpx;">切换团长</text>
  249. <u-switch v-model="roleSwitch" activeColor="#75BE00" size="16" @change="changeRole"></u-switch>
  250. </view>
  251. </view>
  252. </view>
  253. <navigator url="/pages/groupbuying/promotion/index" hover-class="none">
  254. <view class="group-buying-data2">
  255. <view class="group-title-2">
  256. <view>
  257. 累计分享奖励(元) &nbsp; ¥{{statistics.allAccounts || 0}}
  258. </view>
  259. <view>
  260. 查看详情 >
  261. </view>
  262. </view>
  263. </view>
  264. </navigator>
  265. <view class="my_order" @click="goOrderIndex">
  266. <u-cell value="全部订单" isLink>
  267. <view slot="title" class="u-slot-title">
  268. <text class="u-cell-text my_order_text">我的订单</text>
  269. </view>
  270. </u-cell>
  271. </view>
  272. <view class="order-wrapper origin" >
  273. <view class="order-bd">
  274. <block v-for="(item, index) in orderMenuOrigin" :key="index">
  275. <view class="order-item" hover-class="none" @click="goRouter(item)">
  276. <view class="pic">
  277. <!-- <image :src="item.img" mode=""></image> -->
  278. <text class="iconfont" :class="item.img"></text>
  279. </view>
  280. <view class="txt order_menu_title">{{ item.title}}</view>
  281. </view>
  282. </block>
  283. </view>
  284. </view>
  285. <view class="tool_list">
  286. <u-cell-group>
  287. <navigator url="/pages/columnGoods/HotNewGoods/feedback" hover-class="none">
  288. <u-cell isLink>
  289. <view slot="title" class="u-slot-title">
  290. <image src="http://www.gzzzyd.com/groupon/regiment/编组 6@2x.png" mode=""></image>
  291. <text class="u-cell-text">建议与反馈</text>
  292. </view>
  293. </u-cell>
  294. </navigator>
  295. <u-cell isLink>
  296. <view slot="title" class="u-slot-title" @click="goMyMessage">
  297. <image src="http://www.gzzzyd.com/groupon/regiment/编组 8@2x.png" mode=""></image>
  298. <text class="u-cell-text">我的消息</text>
  299. </view>
  300. </u-cell>
  301. <navigator url="/pages/points_mall/user_address" hover-class="none">
  302. <u-cell isLink>
  303. <view slot="title" class="u-slot-title">
  304. <image src="http://www.gzzzyd.com/groupon/regiment/编组 8@2x(1).png" mode=""></image>
  305. <text class="u-cell-text">地址管理</text>
  306. </view>
  307. </u-cell>
  308. </navigator>
  309. <navigator url="/pages/groupbuying/aboutUs/index" hover-class="none">
  310. <u-cell isLink>
  311. <view slot="title" class="u-slot-title">
  312. <image src="http://www.gzzzyd.com/groupon/regiment/编组 8@2x(1).png" mode=""></image>
  313. <text class="u-cell-text">关于我们</text>
  314. </view>
  315. </u-cell>
  316. </navigator>
  317. <navigator url="/pages/users/user_info/index" hover-class="none">
  318. <u-cell isLink>
  319. <view slot="title" class="u-slot-title">
  320. <image src="http://www.gzzzyd.com/groupon/regiment/编组 18@2x.png" mode=""></image>
  321. <text class="u-cell-text">设置</text>
  322. </view>
  323. </u-cell>
  324. </navigator>
  325. </u-cell-group>
  326. </view>
  327. <view class="footer">
  328. <button @click="outLogin">
  329. 退出登录
  330. </button>
  331. </view>
  332. <my-swiper :type=4 ></my-swiper>
  333. </view>
  334. </scroll-view>
  335. </view>
  336. </view>
  337. </template>
  338. <script>
  339. let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  340. import {
  341. getMenuList,
  342. getUserInfo,
  343. getLogout,
  344. setVisit,
  345. updateUserInfo
  346. } from '@/api/user.js';
  347. import {commissionStatistics, grouponMngStatis} from '@/api/groupon.js'
  348. import {
  349. wechatAuthV2,
  350. getNavigation,
  351. silenceAuth
  352. } from '@/api/public.js'
  353. import {
  354. toLogin
  355. } from '@/libs/login.js';
  356. import {
  357. mapState,
  358. mapGetters,
  359. mapMutations
  360. } from "vuex";
  361. // #ifdef H5
  362. import Auth from '@/libs/wechat';
  363. // #endif
  364. const app = getApp();
  365. import dayjs from '@/plugin/dayjs/dayjs.min.js';
  366. import Routine from '@/libs/routine';
  367. import colors from '@/mixins/color';
  368. import {
  369. getCustomer
  370. } from '@/utils/index.js'
  371. export default {
  372. components: {
  373. },
  374. computed: {
  375. ...mapGetters({
  376. cartNum: 'cartNum',
  377. isLogin: 'isLogin',
  378. newCurrentRole:'newCurrentRole'
  379. })
  380. },
  381. filters: {
  382. coundTime (val) {
  383. var setTime = val * 1000
  384. var nowTime = new Date()
  385. var rest = setTime - nowTime.getTime()
  386. var day = parseInt(rest / (60 * 60 * 24 * 1000))
  387. // var hour = parseInt(rest/(60*60*1000)%24) //小时
  388. return day + this.$t('day')
  389. },
  390. dateFormat: function (value) {
  391. return dayjs(value * 1000).format('YYYY-MM-DD');
  392. }
  393. },
  394. mixins: [colors],
  395. data () {
  396. return {
  397. statistics:{},
  398. grouponStatis:{},
  399. roleSwitch: false,
  400. currentRole: 'employees',
  401. storeMenu: [], // 商家管理
  402. orderMenu: [{
  403. img: 'icon-daifukuan',
  404. src: 'http://www.gzzzyd.com/groupon/regiment/扫码_scan@2x.png',
  405. title: '到货核销',
  406. url: '/pages/groupbuying/arrival_verification_list/index?status=1'
  407. },
  408. // {
  409. // img: 'icon-daifahuo',
  410. // src: 'http://www.gzzzyd.com/groupon/regiment/01_自提点@2x.png',
  411. // title: '自提点管理',
  412. // url: '/pages/goods/order_list/index?status=2'
  413. // },
  414. {
  415. img: 'icon-daishouhuo',
  416. src: 'http://www.gzzzyd.com/groupon/regiment/团购@2x.png',
  417. title: '团购管理',
  418. url: '/pages/groupbuying/groupbuying_order_list/index?status=3'
  419. },
  420. {
  421. img: 'icon-daipingjia',
  422. src: 'http://www.gzzzyd.com/groupon/regiment/订单管理@2x.png',
  423. title: '订单管理',
  424. url: '/pages/goods/leader_order_list/index?status=4'
  425. }
  426. ],
  427. orderMenuOrigin: [{
  428. img: 'icon-daifukuan',
  429. title: '待付款',
  430. url: '/pages/order/index?status=1'
  431. },
  432. {
  433. img: 'icon-daifahuo',
  434. title: '待提货',
  435. url: '/pages/order/index?status=2'
  436. },
  437. {
  438. img: 'icon-daipingjia',
  439. title: '已完成',
  440. url: '/pages/order/index?status=3'
  441. },
  442. {
  443. img: 'icon-a-shouhoutuikuan',
  444. title: '售后',
  445. url: '/pages/users/user_return_list/index'
  446. },
  447. ],
  448. imgUrls: [],
  449. autoplay: true,
  450. circular: true,
  451. interval: 3000,
  452. duration: 500,
  453. isAuto: false, //没有授权的不会自动授权
  454. isShowAuth: false, //是否隐藏授权
  455. orderStatusNum: {},
  456. userInfo: {},
  457. MyMenus: [],
  458. sysHeight: sysHeight,
  459. mpHeight: 0,
  460. showStatus: 1,
  461. newData: {},
  462. activeRouter: '',
  463. // #ifdef H5 || MP
  464. pageHeight: '100%',
  465. routineContact: 0,
  466. // #endif
  467. // #ifdef APP-PLUS
  468. pageHeight: app.globalData.windowHeight,
  469. // #endif
  470. // #ifdef H5
  471. isWeixin: Auth.isWeixin(),
  472. //#endif
  473. footerSee: false,
  474. member_style: 1,
  475. my_banner_status: 1,
  476. is_diy: uni.getStorageSync('is_diy'),
  477. copyRightPic: '/static/images/support.png', //版权图片
  478. loginType: 'h5', //app.globalData.loginType
  479. }
  480. },
  481. onLoad (option) {
  482. let that = this;
  483. },
  484. onReady () {
  485. let self = this
  486. // #ifdef MP
  487. let info = uni.createSelectorQuery().select(".sys-head");
  488. info.boundingClientRect(function (data) { //data - 各种参数
  489. self.mpHeight = data.height
  490. }).exec()
  491. // #endif
  492. },
  493. onShow: function () {
  494. if (this.$store.getters.isLogin) {
  495. this.commissionStatistics();
  496. }
  497. this.currentRole=this.$store.getters.newCurrentRole;
  498. console.log(this.newCurrentRole);
  499. this.grouponMngStatis();
  500. let that = this;
  501. // #ifdef APP-PLUS
  502. uni.getSystemInfo({
  503. success: function (res) {
  504. that.pageHeight = res.windowHeight + 'px'
  505. }
  506. });
  507. // #endif
  508. if (that.isLogin) {
  509. this.getUserInfo();
  510. this.getMyMenus();
  511. this.setVisit();
  512. };
  513. this.getCopyRight();
  514. },
  515. onPullDownRefresh () {
  516. this.onLoadFun();
  517. },
  518. methods: {
  519. ...mapMutations(["setNewCurrentRole"]),
  520. goOrderIndex(){
  521. uni.switchTab({
  522. url:'/pages/order/index'
  523. })
  524. },
  525. goMyMessage(){
  526. console.log("++++++++++++++++++++++++")
  527. uni.switchTab({
  528. url: '/pages/message/message'
  529. });
  530. },
  531. commissionStatistics(){
  532. commissionStatistics().then(res => {
  533. this.statistics =res.data
  534. })
  535. },
  536. grouponMngStatis(){
  537. grouponMngStatis().then(res => {
  538. this.grouponStatis = res.data
  539. })
  540. },
  541. /**
  542. * 退出登录
  543. *
  544. */
  545. outLogin: function() {
  546. let that = this;
  547. if (that.loginType == 'h5') {
  548. uni.showModal({
  549. title: that.$t(`提示`),
  550. content: that.$t(`确认退出登录`),
  551. success: function(res) {
  552. if (res.confirm) {
  553. getLogout()
  554. .then(res => {
  555. // uni.clearStorage()
  556. that.$store.commit("LOGOUT");
  557. uni.reLaunch({
  558. url: '/pages/index/index'
  559. })
  560. })
  561. .catch(err => {});
  562. } else if (res.cancel) {}
  563. }
  564. });
  565. }
  566. },
  567. changeRole () {
  568. this.currentRole = this.roleSwitch ? 'leader' : 'employees'
  569. this.setNewCurrentRole(this.currentRole);
  570. },
  571. // 发布团购
  572. goGroupbuying (url) {
  573. if (this.isLogin == false) {
  574. toLogin();
  575. } else {
  576. uni.navigateTo({
  577. url: `/pages/groupbuying/${url}/index`
  578. })
  579. }
  580. },
  581. getWechatuserinfo () {
  582. //#ifdef H5
  583. Auth.isWeixin() && Auth.toAuth('snsapi_userinfo', '/pages/user/index');
  584. //#endif
  585. },
  586. // 记录会员访问
  587. setVisit () {
  588. // setVisit({
  589. // url: '/pages/user/index'
  590. // }).then(res => { })
  591. },
  592. // 打开授权
  593. openAuto () {
  594. toLogin();
  595. },
  596. // 授权回调
  597. onLoadFun () {
  598. this.getUserInfo();
  599. this.getMyMenus();
  600. this.setVisit();
  601. },
  602. Setting: function () {
  603. uni.openSetting({
  604. success: function (res) { }
  605. });
  606. },
  607. // 授权关闭
  608. authColse: function (e) {
  609. this.isShowAuth = e
  610. },
  611. // 绑定手机
  612. bindPhone () {
  613. uni.navigateTo({
  614. url: '/pages/users/user_phone/index'
  615. })
  616. },
  617. /**
  618. * 获取个人用户信息
  619. */
  620. getUserInfo: function () {
  621. let that = this;
  622. getUserInfo().then(res => {
  623. that.userInfo = res.data
  624. that.$store.commit("SETUID", res.data.userId);
  625. // that.orderMenu.forEach((item, index) => {
  626. // switch (item.title) {
  627. // case '待付款':
  628. // item.num = res.data.orderStatusNum.unpaid_count
  629. // break
  630. // case '待发货':
  631. // item.num = res.data.orderStatusNum.unshipped_count
  632. // break
  633. // case '待收货':
  634. // item.num = res.data.orderStatusNum.received_count
  635. // break
  636. // case '待评价':
  637. // item.num = res.data.orderStatusNum.evaluated_count
  638. // break
  639. // case '售后':
  640. // item.num = res.data.orderStatusNum.refunding_count
  641. // break
  642. // }
  643. // })
  644. uni.stopPullDownRefresh();
  645. });
  646. },
  647. //小程序授权api替换 getUserInfo
  648. getUserProfile () {
  649. toLogin();
  650. },
  651. /**
  652. *
  653. * 获取个人中心图标
  654. */
  655. switchTab (order) {
  656. this.orderMenu.forEach((item, index) => {
  657. switch (item.title) {
  658. case '待付款':
  659. item.img = order.dfk
  660. break
  661. case '待发货':
  662. item.img = order.dfh
  663. break
  664. case '待收货':
  665. item.img = order.dsh
  666. break
  667. case '待评价':
  668. item.img = order.dpj
  669. break
  670. case '售后':
  671. item.img = order.sh
  672. break
  673. }
  674. })
  675. },
  676. getMyMenus: function () {
  677. let that = this;
  678. // if (this.MyMenus.length) return;
  679. uni.request({
  680. url: 'api/mock/menu',
  681. success: res => {
  682. let storeMenu = []
  683. let myMenu = []
  684. res.data.routine_my_menus.forEach((el, index, arr) => {
  685. if (el.url == '/pages/admin/order/index' || el.url ==
  686. '/pages/admin/order_cancellation/index' || el.name ==
  687. this.$t(`客服接待`)) {
  688. storeMenu.push(el)
  689. } else {
  690. myMenu.push(el)
  691. }
  692. })
  693. this.member_style = Number(res.data.diy_data.value)
  694. this.my_banner_status = res.data.diy_data.my_banner_status
  695. let order01 = {
  696. dfk: 'icon-daifukuan',
  697. dfh: 'icon-daifahuo',
  698. dsh: 'icon-daishouhuo',
  699. dpj: 'icon-daipingjia',
  700. sh: 'icon-a-shouhoutuikuan'
  701. }
  702. let order02 = {
  703. dfk: 'icon-daifukuan-lan',
  704. dfh: 'icon-daifahuo-lan',
  705. dsh: 'icon-daishouhuo-lan',
  706. dpj: 'icon-daipingjia-lan',
  707. sh: 'icon-shouhou-tuikuan-lan'
  708. }
  709. let order03 = {
  710. dfk: 'icon-daifukuan-ju',
  711. dfh: 'icon-daifahuo-ju',
  712. dsh: 'icon-daishouhuo-ju',
  713. dpj: 'icon-daipingjia-ju',
  714. sh: 'icon-shouhou-tuikuan-ju'
  715. }
  716. let order04 = {
  717. dfk: 'icon-daifukuan-fen',
  718. dfh: 'icon-daifahuo-fen',
  719. dsh: 'icon-daishouhuo-fen',
  720. dpj: 'icon-daipingjia-fen',
  721. sh: 'icon-a-shouhoutuikuan-fen'
  722. }
  723. let order05 = {
  724. dfk: 'icon-daifukuan-lv',
  725. dfh: 'icon-daifahuo-lv',
  726. dsh: 'icon-daishouhuo-lv',
  727. dpj: 'icon-daipingjia-lv',
  728. sh: 'icon-shouhou-tuikuan-lv'
  729. }
  730. switch (res.data.diy_data.order_status) {
  731. case 1:
  732. this.switchTab(order01)
  733. break
  734. case 2:
  735. this.switchTab(order02)
  736. break
  737. case 3:
  738. this.switchTab(order03)
  739. break
  740. case 4:
  741. this.switchTab(order04)
  742. break
  743. case 5:
  744. this.switchTab(order05)
  745. break
  746. }
  747. that.$set(that, 'MyMenus', myMenu);
  748. that.$set(that, 'storeMenu', storeMenu);
  749. this.imgUrls = res.data.routine_my_banner
  750. this.routineContact = Number(res.data.routine_contact_type)
  751. }
  752. })
  753. },
  754. // 编辑页面
  755. goEdit () {
  756. if (this.isLogin == false) {
  757. toLogin();
  758. } else {
  759. uni.navigateTo({
  760. url: '/pages/users/user_info/index?currentRole=' + this.currentRole
  761. })
  762. }
  763. },
  764. goRouter (item) {
  765. var pages = getCurrentPages();
  766. var page = (pages[pages.length - 1]).$page.fullPath;
  767. if (item.url == page) return
  768. getApp().globalData.switchId = item.title
  769. uni.switchTab({
  770. url: item.url,
  771. fail (err) {
  772. uni.redirectTo({
  773. url: item.url
  774. })
  775. }
  776. })
  777. },
  778. getCopyRight () {
  779. const copyRight = uni.getStorageSync('copyRight')
  780. if (copyRight.copyrightImage) {
  781. this.copyRightPic = copyRight.copyrightImage
  782. }
  783. }
  784. }
  785. }
  786. </script>
  787. <style lang="scss">
  788. page,
  789. body {
  790. height: 100%;
  791. }
  792. .height {}
  793. .unBg {
  794. background-color: unset !important;
  795. .user-info {
  796. .info {
  797. .name {
  798. color: #333333 !important;
  799. font-weight: 600;
  800. }
  801. .num {
  802. color: #333 !important;
  803. .num-txt {
  804. height: 38rpx;
  805. background-color: rgba(51, 51, 51, 0.13);
  806. padding: 0 12rpx;
  807. border-radius: 16rpx;
  808. }
  809. }
  810. }
  811. }
  812. .num-wrapper {
  813. color: #333 !important;
  814. font-weight: 600;
  815. .num-item {
  816. .txt {
  817. color: rgba(51, 51, 51, 0.7) !important;
  818. }
  819. }
  820. }
  821. .message {
  822. .iconfont {
  823. color: #333 !important;
  824. }
  825. .num {
  826. color: #fff !important;
  827. background-color: var(--view-theme) !important;
  828. }
  829. }
  830. .setting {
  831. .iconfont {
  832. color: #333 !important;
  833. }
  834. }
  835. }
  836. .cardVipB {
  837. background-color: #343A48;
  838. width: 100%;
  839. height: 124rpx;
  840. border-radius: 16rpx 16rpx 0 0;
  841. padding: 22rpx 30rpx 0 30rpx;
  842. margin-top: 16px;
  843. .left-box {
  844. .small {
  845. color: #F8D5A8;
  846. font-size: 28rpx;
  847. margin-left: 18rpx;
  848. }
  849. .pictrue {
  850. width: 40rpx;
  851. height: 45rpx;
  852. image {
  853. width: 100%;
  854. height: 100%;
  855. }
  856. }
  857. }
  858. .btn {
  859. color: #BBBBBB;
  860. font-size: 26rpx;
  861. }
  862. .icon-xiangyou {
  863. margin-top: 6rpx;
  864. }
  865. }
  866. .cardVipA {
  867. position: absolute;
  868. // background: url('~@/static/images/member.png') no-repeat;
  869. background-size: 100% 100%;
  870. width: 750rpx;
  871. height: 84rpx;
  872. bottom: -2rpx;
  873. left: 0;
  874. padding: 0 56rpx 0 135rpx;
  875. .left-box {
  876. font-size: 26rpx;
  877. color: #905100;
  878. font-weight: 400;
  879. }
  880. .btn {
  881. color: #905100;
  882. font-weight: 400;
  883. font-size: 24rpx;
  884. }
  885. .iconfont {
  886. font-size: 20rpx;
  887. margin: 4rpx 0 0 4rpx;
  888. }
  889. }
  890. .new-users {
  891. display: flex;
  892. flex-direction: column;
  893. height: 100%;
  894. .sys-head {
  895. position: relative;
  896. width: 100%;
  897. // background: linear-gradient(90deg, $bg-star1 0%, $bg-end1 100%);
  898. .bg {
  899. position: absolute;
  900. left: 0;
  901. top: 0;
  902. width: 100%;
  903. height: 100%;
  904. background: var(--view-theme);
  905. background-size: 100% auto;
  906. background-position: left bottom;
  907. }
  908. .sys-title {
  909. z-index: 10;
  910. position: relative;
  911. height: 43px;
  912. text-align: left;
  913. line-height: 43px;
  914. font-size: 36rpx;
  915. color: rgba(17, 17, 17, 1);
  916. font-weight: bolder;
  917. padding-left: 36rpx;
  918. }
  919. }
  920. .head {
  921. // background: #fff;
  922. .user-card {
  923. position: relative;
  924. width: 100%;
  925. height: 180rpx;
  926. margin: 0 auto;
  927. background-image: linear-gradient(#FDF5F6, #FBF7F7);
  928. background-size: 100% auto;
  929. background-color: var(--view-theme);
  930. .user-info {
  931. z-index: 20;
  932. position: relative;
  933. display: flex;
  934. .headwear {
  935. position: absolute;
  936. right: -4rpx;
  937. top: -14rpx;
  938. width: 44rpx;
  939. height: 44rpx;
  940. image {
  941. width: 100%;
  942. height: 100%;
  943. }
  944. }
  945. .live {
  946. width: 28rpx;
  947. height: 28rpx;
  948. margin-left: 20rpx;
  949. }
  950. .bntImg {
  951. width: 120rpx;
  952. height: 120rpx;
  953. border-radius: 50%;
  954. text-align: center;
  955. line-height: 120rpx;
  956. background-color: unset;
  957. position: relative;
  958. .avatarName {
  959. font-size: 16rpx;
  960. color: #fff;
  961. text-align: center;
  962. background-color: rgba(0, 0, 0, 0.6);
  963. height: 37rpx;
  964. line-height: 37rpx;
  965. position: absolute;
  966. bottom: 0;
  967. left: 0;
  968. width: 100%;
  969. }
  970. }
  971. .avatar-box {
  972. position: relative;
  973. display: flex;
  974. align-items: center;
  975. justify-content: center;
  976. width: 150rpx;
  977. height: 150rpx;
  978. border-radius: 50%;
  979. &.on {
  980. .avatar {
  981. border: 2px solid #FFAC65;
  982. border-radius: 50%;
  983. box-sizing: border-box;
  984. }
  985. }
  986. }
  987. .avatar {
  988. position: relative;
  989. width: 150rpx;
  990. height: 150rpx;
  991. border-radius: 50%;
  992. }
  993. .info {
  994. max-width: 50%;
  995. flex: 1;
  996. display: flex;
  997. flex-direction: column;
  998. justify-content: center;
  999. margin-left: 20rpx;
  1000. padding: 15rpx 0;
  1001. .name {
  1002. display: flex;
  1003. align-items: center;
  1004. font-size: 32rpx;
  1005. margin-top: 30rpx;
  1006. font-weight: bolder;
  1007. color: #333333;
  1008. .vip {
  1009. margin-left: 10rpx;
  1010. image {
  1011. width: 78rpx;
  1012. height: 30rpx;
  1013. display: block;
  1014. }
  1015. }
  1016. }
  1017. .num {
  1018. display: flex;
  1019. align-items: center;
  1020. margin-top: 20rpx;
  1021. font-size: 26rpx;
  1022. color: rgba(255, 255, 255, 0.6);
  1023. image {
  1024. width: 22rpx;
  1025. height: 23rpx;
  1026. margin-left: 20rpx;
  1027. }
  1028. }
  1029. }
  1030. }
  1031. .message {
  1032. align-self: flex-start;
  1033. position: relative;
  1034. display: flex;
  1035. margin-right: 20rpx;
  1036. height: 150rpx;
  1037. align-items: center;
  1038. .num {
  1039. position: absolute;
  1040. top: -8rpx;
  1041. left: 18rpx;
  1042. padding: 0 6rpx;
  1043. height: 28rpx;
  1044. border-radius: 12rpx;
  1045. background-color: #fff;
  1046. font-size: 18rpx;
  1047. line-height: 28rpx;
  1048. text-align: center;
  1049. color: var(--view-theme);
  1050. }
  1051. .iconfont {
  1052. font-size: 40rpx;
  1053. color: #fff;
  1054. }
  1055. }
  1056. .num-wrapper {
  1057. z-index: 30;
  1058. position: relative;
  1059. display: flex;
  1060. align-items: center;
  1061. justify-content: space-between;
  1062. margin-top: 22rpx;
  1063. // padding: 0 47rpx;
  1064. color: #fff;
  1065. .num-item {
  1066. width: 33.33%;
  1067. text-align: center;
  1068. &~.num-item {
  1069. position: relative;
  1070. &:before {
  1071. content: '';
  1072. position: absolute;
  1073. width: 1rpx;
  1074. height: 28rpx;
  1075. top: 50%;
  1076. margin-top: -14rpx;
  1077. background-color: rgba(255, 255, 255, 0.4);
  1078. left: 0;
  1079. }
  1080. }
  1081. .num {
  1082. font-size: 42rpx;
  1083. font-weight: bold;
  1084. }
  1085. .txt {
  1086. margin-top: 8rpx;
  1087. font-size: 26rpx;
  1088. color: rgba(255, 255, 255, 0.6);
  1089. }
  1090. }
  1091. }
  1092. .sign {
  1093. z-index: 200;
  1094. position: absolute;
  1095. right: -12rpx;
  1096. top: 80rpx;
  1097. display: flex;
  1098. align-items: center;
  1099. justify-content: center;
  1100. width: 120rpx;
  1101. height: 60rpx;
  1102. background: linear-gradient(90deg, rgba(255, 225, 87, 1) 0%, rgba(238, 193, 15, 1) 100%);
  1103. border-radius: 29rpx 4rpx 4rpx 29rpx;
  1104. color: #282828;
  1105. font-size: 28rpx;
  1106. font-weight: bold;
  1107. }
  1108. }
  1109. .group-buying-data2 {
  1110. position: relative;
  1111. width: 100%;
  1112. height: 140rpx;
  1113. padding: 40rpx;
  1114. margin: 0 auto;
  1115. background-image: url('http://www.gzzzyd.com/groupon/regiment/提货管理@2x.png');
  1116. background-size: 100% auto;
  1117. background-color: var(--view-theme);
  1118. .group-title-2 {
  1119. display: flex;
  1120. justify-content: space-between;
  1121. font-size: 32rpx;
  1122. font-weight: 500;
  1123. color: #B22338;
  1124. line-height: 44rpx;
  1125. height: 44rpx;
  1126. }
  1127. }
  1128. .group-buying-data {
  1129. position: relative;
  1130. width: 100%;
  1131. height: 240rpx;
  1132. padding: 40rpx;
  1133. margin: 0 auto;
  1134. background-image: url('http://www.gzzzyd.com/groupon/regiment/提货管理@2x.png');
  1135. background-size: 100% auto;
  1136. background-color: var(--view-theme);
  1137. .group-title {
  1138. font-size: 32rpx;
  1139. font-weight: 500;
  1140. color: #B22338;
  1141. line-height: 44rpx;
  1142. height: 44rpx;
  1143. }
  1144. .group-content {
  1145. display: flex;
  1146. .group-content-l {
  1147. text-align: center;
  1148. flex: 1;
  1149. border-color: #333333;
  1150. border-right: 1px solid dashed;
  1151. }
  1152. .group-content-r {
  1153. text-align: center;
  1154. flex: 1
  1155. }
  1156. .content-num {
  1157. margin-top: 20rpx;
  1158. height: 48rpx;
  1159. font-size: 40rpx;
  1160. font-weight: bold;
  1161. color: #B22338;
  1162. line-height: 48rpx;
  1163. }
  1164. .content-info {
  1165. margin-top: 20rpx;
  1166. text-align: center;
  1167. width: 100%;
  1168. height: 36rpx;
  1169. font-size: 24rpx;
  1170. font-weight: 400;
  1171. color: #CF7986;
  1172. line-height: 36rpx;
  1173. }
  1174. }
  1175. }
  1176. .order-wrapper {
  1177. margin-top: 30rpx;
  1178. background: #fff;
  1179. border-radius: 16rpx;
  1180. position: relative;
  1181. .order-hd {
  1182. justify-content: space-between;
  1183. padding: 30rpx 20rpx 10rpx 30rpx;
  1184. margin-top: 25rpx;
  1185. font-size: 30rpx;
  1186. color: #282828;
  1187. .left {
  1188. font-weight: bold;
  1189. }
  1190. .right {
  1191. display: flex;
  1192. align-items: center;
  1193. color: #666666;
  1194. font-size: 26rpx;
  1195. .icon-xiangyou {
  1196. margin-left: 5rpx;
  1197. font-size: 26rpx;
  1198. }
  1199. }
  1200. }
  1201. .order-bd {
  1202. display: flex;
  1203. padding: 0 0;
  1204. .order-item {
  1205. display: flex;
  1206. flex-direction: column;
  1207. justify-content: center;
  1208. align-items: center;
  1209. flex: 1;
  1210. height: 140rpx;
  1211. .pic {
  1212. position: relative;
  1213. text-align: center;
  1214. .iconfont {
  1215. font-size: 48rpx;
  1216. color: var(--view-theme);
  1217. }
  1218. image {
  1219. width: 70rpx;
  1220. height: 70rpx;
  1221. }
  1222. }
  1223. .txt {
  1224. margin-top: 6rpx;
  1225. font-size: 26rpx;
  1226. color: #333;
  1227. }
  1228. }
  1229. }
  1230. }
  1231. }
  1232. .slider-wrapper {
  1233. margin: 20rpx 30rpx;
  1234. height: 130rpx;
  1235. swiper,
  1236. swiper-item {
  1237. height: 100%;
  1238. }
  1239. image {
  1240. width: 100%;
  1241. height: 130rpx;
  1242. border-radius: 16rpx;
  1243. }
  1244. }
  1245. .user-menus {
  1246. background-color: #fff;
  1247. margin: 0 30rpx;
  1248. border-radius: 16rpx;
  1249. .menu-title {
  1250. padding: 30rpx 30rpx 40rpx;
  1251. font-size: 30rpx;
  1252. color: #282828;
  1253. font-weight: bold;
  1254. }
  1255. .list-box {
  1256. display: flex;
  1257. flex-wrap: wrap;
  1258. padding: 0;
  1259. }
  1260. .item {
  1261. position: relative;
  1262. display: flex;
  1263. align-items: center;
  1264. justify-content: space-between;
  1265. flex-direction: column;
  1266. width: 32%;
  1267. margin-bottom: 47rpx;
  1268. font-size: 26rpx;
  1269. color: #333333;
  1270. image {
  1271. width: 52rpx;
  1272. height: 52rpx;
  1273. margin-bottom: 18rpx;
  1274. }
  1275. &:last-child::before {
  1276. display: none;
  1277. }
  1278. }
  1279. button {
  1280. font-size: 28rpx;
  1281. }
  1282. }
  1283. .phone {
  1284. color: #fff;
  1285. background-color: #CCC;
  1286. border-radius: 15px;
  1287. width: max-content;
  1288. padding: 0 10px;
  1289. }
  1290. .order-status-num {
  1291. min-width: 12rpx;
  1292. background-color: #fff;
  1293. color: var(--view-theme);
  1294. border-radius: 15px;
  1295. position: absolute;
  1296. right: -14rpx;
  1297. top: -15rpx;
  1298. font-size: 20rpx;
  1299. padding: 0 8rpx;
  1300. border: 1px solid var(--view-theme);
  1301. }
  1302. .support {
  1303. width: 219rpx;
  1304. height: 74rpx;
  1305. margin: 54rpx auto;
  1306. display: block;
  1307. }
  1308. }
  1309. .card-vip {
  1310. display: flex;
  1311. align-items: center;
  1312. justify-content: space-between;
  1313. position: relative;
  1314. width: 690rpx;
  1315. height: 134rpx;
  1316. margin: -72rpx auto 0;
  1317. // background: url('~@/static/images/user_vip.png');
  1318. background-size: cover;
  1319. padding-left: 118rpx;
  1320. padding-right: 34rpx;
  1321. .left-box {
  1322. font-size: 24rpx;
  1323. color: #AE5A2A;
  1324. .big {
  1325. font-size: 28rpx;
  1326. }
  1327. .small {
  1328. opacity: 0.8;
  1329. margin-top: 10rpx;
  1330. }
  1331. }
  1332. .btn {
  1333. height: 52rpx;
  1334. line-height: 52rpx;
  1335. padding: 0 10rpx;
  1336. text-align: center;
  1337. background: #fff;
  1338. border-radius: 28rpx;
  1339. font-size: 26rpx;
  1340. color: #AE5A2A;
  1341. }
  1342. }
  1343. .setting {
  1344. margin-top: 15rpx;
  1345. margin-left: 15rpx;
  1346. color: #fff;
  1347. .iconfont {
  1348. font-size: 40rpx;
  1349. }
  1350. }
  1351. .page-footer {
  1352. position: fixed;
  1353. bottom: 0;
  1354. z-index: 30;
  1355. display: flex;
  1356. align-items: center;
  1357. justify-content: space-around;
  1358. width: 100%;
  1359. height: calc(98rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
  1360. height: calc(98rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
  1361. box-sizing: border-box;
  1362. border-top: solid 1rpx #F3F3F3;
  1363. background-color: #fff;
  1364. box-shadow: 0px 0px 17rpx 1rpx rgba(206, 206, 206, 0.32);
  1365. padding-bottom: constant(safe-area-inset-bottom); ///兼容 IOS<11.2/
  1366. padding-bottom: env(safe-area-inset-bottom); ///兼容 IOS>11.2/
  1367. .foot-item {
  1368. display: flex;
  1369. width: max-content;
  1370. align-items: center;
  1371. justify-content: center;
  1372. flex-direction: column;
  1373. position: relative;
  1374. .count-num {
  1375. position: absolute;
  1376. display: flex;
  1377. justify-content: center;
  1378. align-items: center;
  1379. width: 40rpx;
  1380. height: 40rpx;
  1381. top: 0rpx;
  1382. right: -15rpx;
  1383. color: #fff;
  1384. font-size: 20rpx;
  1385. background-color: #FD502F;
  1386. border-radius: 50%;
  1387. padding: 4rpx;
  1388. }
  1389. }
  1390. .foot-item image {
  1391. height: 50rpx;
  1392. width: 50rpx;
  1393. text-align: center;
  1394. margin: 0 auto;
  1395. }
  1396. .foot-item .txt {
  1397. font-size: 24rpx;
  1398. &.active {}
  1399. }
  1400. }
  1401. .new-users {
  1402. padding-bottom: 0;
  1403. padding-bottom: constant(safe-area-inset-bottom);
  1404. padding-bottom: env(safe-area-inset-bottom);
  1405. }
  1406. .group-buying-btn {
  1407. margin-top: 20rpx;
  1408. display: flex;
  1409. width: 100%;
  1410. height: 110rpx;
  1411. .image-text_21 {
  1412. flex: 1;
  1413. image {
  1414. width: 100%;
  1415. height: 100%;
  1416. }
  1417. }
  1418. }
  1419. .icon_1 {
  1420. width: 14px;
  1421. height: 14px;
  1422. margin: 3px 0 3px 0;
  1423. }
  1424. .text-group_1 {
  1425. overflow-wrap: break-word;
  1426. color: rgba(178, 35, 56, 1);
  1427. font-size: 14px;
  1428. font-family: PingFangSC-Semibold;
  1429. font-weight: 600;
  1430. text-align: left;
  1431. white-space: nowrap;
  1432. line-height: 20px;
  1433. }
  1434. .image-text_22 {
  1435. width: 78px;
  1436. }
  1437. .icon_10 {
  1438. width: 14px;
  1439. height: 14px;
  1440. margin: 3px 0 3px 0;
  1441. }
  1442. .text-group_8 {
  1443. overflow-wrap: break-word;
  1444. color: rgba(178, 35, 56, 1);
  1445. font-size: 14px;
  1446. font-family: PingFangSC-Semibold;
  1447. font-weight: 600;
  1448. text-align: left;
  1449. white-space: nowrap;
  1450. line-height: 20px;
  1451. }
  1452. .leader {
  1453. width: 96rpx;
  1454. height: 40rpx;
  1455. background: #F1F8E5;
  1456. color: #75BE00;
  1457. border-radius: 22rpx;
  1458. text-align: center;
  1459. border: 2rpx solid #75BE00;
  1460. }
  1461. .employees {
  1462. width: 96rpx;
  1463. height: 40rpx;
  1464. background: rgb(247, 233, 235);
  1465. border-radius: 22rpx;
  1466. color: rgb(174, 33, 56);
  1467. text-align: center;
  1468. border: 2rpx solid rgb(174, 33, 56);
  1469. }
  1470. .tool_list,
  1471. .footer {
  1472. background: #fff;
  1473. border-radius: 16rpx;
  1474. margin-top: 20rpx;
  1475. }
  1476. .footer {
  1477. height: 100rpx;
  1478. button {
  1479. height: 100%;
  1480. font-size: 28rpx;
  1481. font-weight: 400;
  1482. color: #999999;
  1483. line-height: 100rpx;
  1484. }
  1485. }
  1486. /deep/ .tool_list .u-line,
  1487. .my_order .u-line {
  1488. display: none !important;
  1489. }
  1490. .my_order{
  1491. }
  1492. .my_order_text{
  1493. font-weight: bold;
  1494. }
  1495. .u-slot-title {
  1496. text {
  1497. vertical-align: text-bottom;
  1498. line-height: 60rpx;
  1499. }
  1500. image {
  1501. margin-right: 20rpx;
  1502. transform: translateY(10rpx);
  1503. width: 60rpx;
  1504. height: 60rpx;
  1505. }
  1506. }
  1507. .origin{
  1508. margin-top: 0 !important;
  1509. }
  1510. .order_menu_title{
  1511. color: #666666 !important;
  1512. }
  1513. </style>