signJkDetail.vue 8.3 KB

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