signJkDetail.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. <template>
  2. <view class="box">
  3. <view class="top">
  4. <view class="activityName">{{activity.ActivityName}}</view>
  5. <view class="stateBox">
  6. <view class="jinxing" v-if="activity.state=='进行中'">进行中</view>
  7. <view class="jieshu" v-if="activity.state=='已结束'">已结束</view>
  8. <view class="weiqiyong" v-if="activity.state=='未启用'">未启用</view>
  9. <view class="weiqiyong" v-if="activity.state=='未开始'">未开始</view>
  10. <view class="date" v-if="activity.StartTime">
  11. {{activity.StartTime.slice(0,10)}}-{{activity.EndTime.slice(0,10)}}</view>
  12. </view>
  13. </view>
  14. <!-- 搜索 -->
  15. <view class="searchBoxBg">
  16. <searchBox placeholder="手机号、车牌号、姓名、客户单位" @search='search($event)'></searchBox>
  17. </view>
  18. <view class="boxstate">
  19. <view class="typeBox">
  20. <view class="type" @click="changeType" v-if="selectTab==0">核销状态</view>
  21. <view class="type" @click="changeType" v-if="selectTab==1">未核销</view>
  22. <view class="type" @click="changeType" v-if="selectTab==3">已核销</view>
  23. <image src="../../static/img/arrow_down.png" mode="" style="width: 24rpx;height: 24rpx;"></image>
  24. </view>
  25. <view class="black" v-if="showSift==true">
  26. <view class="siftBox">
  27. <view class="siftItem" @click="tab(0)">
  28. <view class="item" :class="{blueColor:selectTab==0}">全部</view>
  29. <image v-if="selectTab==0" src="../../static/img/select_icon.png" mode=""
  30. style="width: 40rpx;height: 40rpx;"></image>
  31. </view>
  32. <view class="siftItem" @click="tab(3)">
  33. <view class="item" :class="{blueColor:selectTab==3}">已核销</view>
  34. <image v-if="selectTab==3" src="../../static/img/select_icon.png" mode=""
  35. style="width: 40rpx;height: 40rpx;"></image>
  36. </view>
  37. <view class="siftItem" @click="tab(1)">
  38. <view class="item" :class="{blueColor:selectTab==1}">未核销</view>
  39. <image v-if="selectTab==1" src="../../static/img/select_icon.png" mode=""
  40. style="width: 40rpx;height: 40rpx;"></image>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="contentBox">
  46. <view class="itemHistory" v-for="(item,index) in itemData" :key="index">
  47. <view class="itemTop">
  48. <image :src="item.HeadImg" mode="" class="icon"></image>
  49. <view class="topRight">
  50. <view class="nickName">{{item.NickName?item.NickName:'微信昵称'}}</view>
  51. <view>
  52. <span class="phone" v-if="item.MobilePhone">{{item.MobilePhone}}</span>
  53. <span class="phone" v-if="item.PlateNumber">/ {{item.PlateNumber}}</span>
  54. <span class="phone" v-if="item.CustomerName">/ {{item.CustomerName}}</span>
  55. <span class="phone" v-if="item.Unit">/ {{item.Unit}}</span>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="timeBox"><span class="leftTitle">报名时间:</span>{{item.CreateTime}}</view>
  60. <view class="zhuangtaiBox" v-if="item.WriteoffState==1"><span class="leftTitle">核销状态:</span> 未核销</view>
  61. <view class="zhuangtaiBox" v-if="item.WriteoffState==3"><span class="leftTitle">核销状态:</span> 已核销 {{item.WriteoffTime}}</view>
  62. </view>
  63. <!-- 上拉 加载更多 -->
  64. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  65. <!-- 无数据空白页 -->
  66. <nodata v-if="itemData.length==0"></nodata>
  67. </view>
  68. </view>
  69. </template>
  70. <script>
  71. import searchBox from '@/components/searchBox/searchBox.vue'
  72. import nodata from '../../components/nodata/nodata.vue'
  73. export default {
  74. components: {
  75. nodata,
  76. searchBox
  77. },
  78. data() {
  79. return {
  80. activity: {},
  81. page: 1,
  82. itemData: [],
  83. noMoreShow: false,
  84. searchValue: '',
  85. showSift: false,
  86. selectTab: 0,
  87. }
  88. },
  89. onLoad(opt) {
  90. this.activity = JSON.parse(opt.activity);
  91. console.log('activity==', this.activity);
  92. this.page = 1
  93. this.myOrderCoupon()
  94. },
  95. methods: {
  96. changeType() {
  97. this.showSift = !this.showSift
  98. // console.log('showSift==', this.showSift);
  99. },
  100. tab(state) {
  101. this.selectTab = state
  102. this.showSift = false
  103. this.page = 1
  104. this.myOrderCoupon()
  105. },
  106. search(val) {
  107. // console.log(val);
  108. this.searchValue = val
  109. this.page = 1
  110. this.myOrderCoupon()
  111. },
  112. myOrderCoupon() {
  113. uni.showLoading({
  114. title: '加载中'
  115. })
  116. this.$http('openH5SetTheGuest/registrationDetails', {
  117. itemId: this.activity.ID,
  118. name: this.searchValue,
  119. writeoffState: this.selectTab ? this.selectTab : '',
  120. page: this.page,
  121. limit: 10,
  122. }, 'GET').then(res => {
  123. uni.hideLoading();
  124. // var list = res.data.Items
  125. var list = res.data.Items
  126. //str 拼接字符串
  127. list.forEach((item, index) => {
  128. item.str = item.MobilePhone?item.MobilePhone:'' + item.PlateNumber?'/'+item.PlateNumber:'' + item.CustomerName?'/'+item.CustomerName+'/':'' + item.Unit?'/'+item.Unit:''
  129. })
  130. if (this.page == 1) {
  131. this.itemData = list
  132. } else {
  133. this.itemData = this.itemData.concat(list)
  134. }
  135. if (list.length < 10) {
  136. this.noMoreShow = true
  137. } else {
  138. this.noMoreShow = false
  139. }
  140. console.log('itemData--',this.itemData);
  141. })
  142. },
  143. },
  144. // 下拉刷新 上拉加载更多
  145. onPullDownRefresh() {
  146. this.page = 1
  147. this.myOrderCoupon()
  148. setTimeout(function() {
  149. uni.stopPullDownRefresh();
  150. }, 1000);
  151. },
  152. onReachBottom() {
  153. this.page++;
  154. this.myOrderCoupon()
  155. },
  156. }
  157. </script>
  158. <style>
  159. .box {
  160. min-height: 100vh;
  161. background-color: #F4F5F7;
  162. width: 100vw;
  163. }
  164. .top {
  165. padding: 30rpx 24rpx;
  166. background-color: #FFFFFF;
  167. }
  168. .activityName {
  169. font-size: 30rpx;
  170. font-weight: bold;
  171. color: #333333;
  172. line-height: 42rpx;
  173. }
  174. .stateBox {
  175. margin-top: 4rpx;
  176. display: flex;
  177. align-items: center;
  178. }
  179. .jinxing {
  180. font-size: 22rpx;
  181. color: #00A040;
  182. line-height: 30rpx;
  183. width: 80rpx;
  184. height: 30rpx;
  185. background: #F2FBF6;
  186. border-radius: 4rpx;
  187. }
  188. .jieshu {
  189. font-size: 22rpx;
  190. color: #FF6010;
  191. line-height: 30rpx;
  192. width: 74rpx;
  193. height: 30rpx;
  194. background: #FFECE3;
  195. border-radius: 4rpx;
  196. }
  197. .weiqiyong{
  198. font-size: 22rpx;
  199. color: #3C3C3C;
  200. line-height: 30rpx;
  201. width: 74rpx;
  202. height: 30rpx;
  203. background: #F4F5F7;
  204. border-radius: 4rpx;
  205. }
  206. .date {
  207. height: 30rpx;
  208. font-size: 22rpx;
  209. color: #999999;
  210. line-height: 30rpx;
  211. margin-left: 15rpx;
  212. }
  213. .searchBoxBg {
  214. width: 100%;
  215. background-color: #FFFFFF;
  216. border-top: 1rpx solid #EEEEEE;
  217. border-bottom: 1rpx solid #EEEEEE;
  218. }
  219. .searchBox {
  220. display: flex;
  221. height: 72rpx;
  222. margin: 24rpx;
  223. background-color: #F4F5F7;
  224. border-radius: 36rpx;
  225. padding: 30rpx 24rpx;
  226. }
  227. .boxstate{
  228. position: relative;
  229. width: 100vw;
  230. }
  231. .typeBox {
  232. background-color: #FFFFFF;
  233. padding: 30rpx 24rpx;
  234. display: flex;
  235. align-items: center;
  236. }
  237. .type {
  238. width: 114rpx;
  239. height: 40rpx;
  240. font-size: 28rpx;
  241. font-weight: 400;
  242. color: #666666;
  243. line-height: 40rpx;
  244. }
  245. .contentBox {
  246. padding: 20rpx 24rpx;
  247. height: calc(100vh - 415rpx);
  248. }
  249. .itemHistory {
  250. padding: 24rpx 20rpx;
  251. background-color: #FFFFFF;
  252. border-radius: 10rpx;
  253. margin-bottom: 20rpx;
  254. }
  255. .itemTop {
  256. display: flex;
  257. padding-bottom: 24rpx;
  258. border-bottom: 1rpx solid #EEEEEE;
  259. }
  260. .icon {
  261. width: 72rpx;
  262. height: 72rpx;
  263. border-radius: 36rpx;
  264. margin-right: 20rpx;
  265. }
  266. .nickName {
  267. height: 42rpx;
  268. font-size: 30rpx;
  269. font-weight: 400;
  270. color: #3C3C3C;
  271. line-height: 42rpx;
  272. margin-bottom: 8rpx;
  273. }
  274. .phone {
  275. height: 33rpx;
  276. font-size: 24rpx;
  277. font-weight: 400;
  278. color: #666666;
  279. line-height: 33rpx;
  280. margin-right: 10rpx;
  281. }
  282. .timeBox {
  283. height: 33rpx;
  284. font-size: 24rpx;
  285. font-weight: 400;
  286. color: #3C3C3C;
  287. line-height: 33rpx;
  288. margin-top: 24rpx;
  289. }
  290. .leftTitle {
  291. color: #999999;
  292. font-size: 24rpx;
  293. }
  294. .zhuangtaiBox {
  295. height: 33rpx;
  296. font-size: 24rpx;
  297. font-weight: 400;
  298. color: #3C3C3C;
  299. line-height: 33rpx;
  300. margin-top: 16rpx;
  301. }
  302. .black {
  303. width: 100vw;
  304. height: calc(100vh - 414rpx);
  305. background: rgba(0, 0, 0, 0.6000);
  306. z-index: 999;
  307. position: absolute;
  308. }
  309. .siftBox {
  310. width: 100vw;
  311. background-color: #FFFFFF;
  312. }
  313. .siftItem {
  314. padding: 22rpx 24rpx;
  315. border-bottom: 1rpx solid #EEEEEE;
  316. display: flex;
  317. justify-content: space-between;
  318. }
  319. .item {
  320. height: 37rpx;
  321. font-size: 26rpx;
  322. font-weight: 400;
  323. color: #3C3C3C;
  324. line-height: 37rpx;
  325. }
  326. .blueColor {
  327. color: #3F90F7;
  328. }
  329. .noMore {
  330. text-align: center;
  331. line-height: 50rpx;
  332. color: #999999;
  333. font-size: 28rpx;
  334. }
  335. </style>