bonus.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. <template>
  2. <view class="box">
  3. <view style="height: 20rpx;"></view>
  4. <view class="line" v-for="(item,index) in list">
  5. <view class="linetop">
  6. <view class="name">{{item.CustomerName}}</view>
  7. <view class="amount">¥{{item.BonusMoney}}</view>
  8. </view>
  9. <view class="lineCOnt">
  10. <view class="lineline">
  11. <view class="lineContLeft">
  12. <image src="../../static/timg/icon_dianhua.png" mode="" class="lineContLeftImg"></image>
  13. <view class="lineContLeftMs">{{item.MobilePhone}}</view>
  14. </view>
  15. </view>
  16. <view class="lineline">
  17. <view class="lineContLeft">
  18. <image src="../../static/timg/icon_danhao.png" mode="" class="lineContLeftImg"></image>
  19. <view class="lineContLeftMs">{{item.Code}}</view>
  20. </view>
  21. <view class="lineTIme">{{item.BillDate}}</view>
  22. </view>
  23. </view>
  24. </view>
  25. <nodata v-if="list.length==0"></nodata>
  26. <!-- 手机号授权 -->
  27. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  28. <view class="authorizCont" @click.stop="">
  29. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  30. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  31. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  32. </view>
  33. <view style="text-align: center;padding-top: 56rpx;">
  34. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. import nodata from '../../components/nodata/nodata.vue'
  41. export default {
  42. components: {
  43. nodata
  44. },
  45. data() {
  46. return {
  47. list:[],
  48. themeColor:'',
  49. userInfo:'',
  50. page:1,
  51. limit:20,
  52. authorizShow:false,
  53. userInfo:'',
  54. ext:'',
  55. wxOpenData:'',
  56. }
  57. },
  58. onLoad(opt) {
  59. this.themeColor = uni.getStorageSync("themeColor");
  60. this.userInfo = uni.getStorageSync("userInfo");
  61. this.userInfo=this.$store.state.userInfo;
  62. this.ext=this.$common.getExtStoreId();
  63. if(this.userInfo){
  64. this.getList()
  65. }else{
  66. this.$common.automaticlogin().then(val => {
  67. this.userInfo=this.$store.state.userInfo;
  68. this.wxOpenData=this.$store.state.wxOpenData;
  69. this.themeColor = uni.getStorageSync("themeColor");
  70. if(!this.userInfo){
  71. this.authorizShow=true
  72. }
  73. this.getList()
  74. })
  75. }
  76. },
  77. onShow() {
  78. },
  79. methods: {
  80. getList(){
  81. uni.showLoading({
  82. title: '加载中'
  83. })
  84. this.$http('opencarInfoOwner/listBonusPage', {
  85. page:this.page,limit:this.limit,
  86. }, 'GET').then(res => {
  87. uni.hideLoading();
  88. //this.list = res.data.Items
  89. var data=res.data.Items;
  90. this.list=this.list.concat(data);
  91. //console.log('list+=', this.queryShopList);
  92. })
  93. },
  94. decryptPhoneNumber: function(e) {
  95. console.log(e);
  96. this.code=e.detail.code
  97. this.wxPhoneLogin()
  98. this.authorizShow=false;
  99. },
  100. wxPhoneLogin(){
  101. var that=this;
  102. this.$http('miniApp2/sys/wxPhoneLogin', {
  103. appId:this.ext.appId,
  104. unionId:this.ext.unionId,
  105. code:this.code,
  106. openId:this.wxOpenData.openid
  107. },'POST').then(res => {
  108. var data = res.data;
  109. if(data.loginInfo){
  110. this.userInfo=data.loginInfo.openUser;
  111. this.wxOpenData=data.loginInfo;
  112. this.$store.commit('mutationswxOpenData', data)
  113. this.$store.commit('mutationsuserInfo', this.userInfo)
  114. this.list=[]
  115. this.getList()
  116. }
  117. })
  118. },
  119. },
  120. onReachBottom(){
  121. this.page++;
  122. this.getList()
  123. //console.log("shanglas")
  124. },
  125. onPullDownRefresh(){
  126. this.page=1;
  127. this.list=[];
  128. this.getList();
  129. setTimeout(() => {
  130. uni.stopPullDownRefresh(); // 关闭下拉刷新
  131. }, 2000);
  132. }
  133. }
  134. </script>
  135. <style scoped lang="less">
  136. .box {
  137. width: 100vw;
  138. min-height: 100vh;
  139. background: #F4F5F7;
  140. }
  141. .lineContLeftImg{
  142. width: 30rpx;
  143. height: 30rpx;
  144. margin-right: 10rpx;
  145. }
  146. .line{
  147. width: 702rpx;
  148. background: #FFFFFF;
  149. border-radius: 10rpx;
  150. margin-bottom: 20rpx;
  151. margin-left: 24rpx;
  152. }
  153. .linetop{
  154. display: flex;
  155. justify-content: space-between;
  156. font-size: 30rpx;
  157. padding: 20rpx;
  158. padding-bottom: 0;
  159. }
  160. .lineline{
  161. display: flex;
  162. justify-content: space-between;
  163. padding: 20rpx;
  164. font-weight: 400;
  165. color: #999999;
  166. font-size: 24rpx;
  167. line-height: 30rpx;
  168. }
  169. .lineContLeft{
  170. display: flex;
  171. }
  172. .name{
  173. font-weight: 500;
  174. color: #3C3C3C;
  175. }
  176. .amount{
  177. color: #FF0000;font-weight: 500;
  178. }
  179. .authorizBox{
  180. width: 100vw;
  181. height: 100vh;
  182. background: rgba(0, 0, 0, 0.5);
  183. position: fixed;
  184. top: 0;
  185. left: 0;
  186. }
  187. .authorizCont{
  188. margin-top: 30vh;
  189. width: 564rpx;
  190. height: 408rpx;
  191. background: #FFFFFF;
  192. border-radius: 24rpx;
  193. margin-left: 93rpx;
  194. position: relative;
  195. }
  196. .authorizCloseImg{
  197. width: 62rpx;
  198. height: 62rpx;
  199. }
  200. .sqLogoBox{
  201. width: 180rpx;
  202. height: 180rpx;
  203. background: #FFFFFF;
  204. border-radius: 90rpx;
  205. text-align: center;
  206. position: absolute;
  207. top: -50rpx;
  208. left: 192rpx;
  209. }
  210. .authorizName{
  211. color: #333333;
  212. line-height: 42rpx;
  213. font-size: 30rpx;
  214. text-align: center;
  215. padding-top: 58rpx;
  216. }
  217. .authorizMs{
  218. color: #999999;
  219. line-height: 36rpx;
  220. font-size: 26rpx;
  221. width: 452rpx;
  222. padding-top: 24rpx;
  223. text-align: center;
  224. margin-left: 56rpx;
  225. }
  226. .authorizContbutton{
  227. width: 422rpx;
  228. height: 88rpx;
  229. background: #D53533;
  230. border-radius: 44rpx;
  231. line-height: 88rpx;
  232. text-align: center;
  233. font-size:30rpx;
  234. color: #FFFFFF;
  235. margin-top: 62rpx;
  236. margin-left:71rpx;
  237. }
  238. </style>