signForm.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <template>
  2. <view class="content">
  3. <u-card :title="'总数(' + studentNum + ')人'" title-size="32" margin="0px 0px 10px 0px" :head-style="cardStyle">
  4. <u-grid :col="3" slot="body" :border="false">
  5. <u-grid-item v-for="(item, index) in studentList" :key="index" :custom-style="gridCustomStyle" @click.native.stop="setSignCheck(item)">
  6. <view class="avatar-box">
  7. <u-avatar :src="item.url" mode="circle" size="160" v-if="item.hasHead == 1"></u-avatar>
  8. <u-upload :custom-btn="true" :max-count="1" :index="index" :multiple="false" :show-progress="false"
  9. :preview-full-image="false" :action="uploadUrl" :header="uploadHeader" @on-success="uploadSuccess" @on-error="uploadError"
  10. @on-remove="uploadRemove" @on-preview-error="uploadPreview" v-else>
  11. <view slot="addBtn" class="slot-btn">
  12. <u-icon name="camera-fill" size="60" color="#999999"></u-icon>
  13. </view>
  14. </u-upload>
  15. <u-icon name="checkmark-circle-fill" v-if="item.state == 1 || item.checked" class="check-icon"></u-icon>
  16. <view class="grid-text">{{item.name}}</view>
  17. </view>
  18. </u-grid-item>
  19. <u-grid-item :custom-style="gridCustomStyle" @click="goToSelectStudent()">
  20. <view class="slot-btn">
  21. <u-icon name="plus" size="60" color="#999999"></u-icon>
  22. </view>
  23. </u-grid-item>
  24. </u-grid>
  25. </u-card>
  26. <view class="handle-fix-box">
  27. <u-button type="warning" shape="circle" :ripple="true" :custom-style="customStyle" @click="submitForm()">
  28. {{status == 0 ? '签到确认' : '今日已签到'}}
  29. <!-- :disabled="status != 0" -->
  30. </u-button>
  31. </view>
  32. <u-top-tips ref="uTips"></u-top-tips>
  33. </view>
  34. </template>
  35. <script>
  36. import {
  37. mapGetters
  38. } from 'vuex'
  39. const NET = require('@/utils/request')
  40. const API = require('@/config/api')
  41. export default {
  42. computed: {
  43. ...mapGetters([
  44. 'mainColor',
  45. 'customStyle',
  46. ])
  47. },
  48. data() {
  49. return {
  50. classId: '',
  51. venueId:'',
  52. status: '',
  53. uploadUrl: API.uploadFile,
  54. uploadHeader: {
  55. Authorization: uni.getStorageSync('token')
  56. },
  57. studentList: [],
  58. cardStyle: {
  59. fontWeight: 'bold'
  60. },
  61. gridCustomStyle: {
  62. padding: '0 2px'
  63. },
  64. studentNum: 0
  65. }
  66. },
  67. onLoad(options) {
  68. this.classId = options.id
  69. this.status = options.status
  70. this.venueId = options.venueId
  71. },
  72. onShow() {
  73. this.initialize()
  74. },
  75. methods: {
  76. // 获取初始化数据
  77. initialize() {
  78. NET.request(API.getSignStudentList, {
  79. id: this.classId
  80. }, 'POST').then(res => {
  81. res.data.forEach(site => site.checked = false)
  82. this.studentList = res.data
  83. const checkedList = uni.getStorageSync('signUserList').length ? uni.getStorageSync('signUserList') : []
  84. checkedList.forEach(
  85. checkedItem => {
  86. if(this.studentList.filter(item=>checkedItem.id==item.id).length==0){
  87. this.studentList.push(checkedItem)
  88. }
  89. }
  90. )
  91. this.studentNum = this.studentList.length
  92. }).catch(error => {
  93. this.$refs.uTips.show({
  94. title: error.message,
  95. type: 'warning',
  96. })
  97. })
  98. },
  99. // 文件上传成功回调
  100. uploadSuccess(res, index, lists, name) {
  101. this.studentList[name].url = res.data.url
  102. this.studentList[name].fileId = res.data.id
  103. this.$refs.uTips.show({
  104. title: '文件上传成功',
  105. type: 'success',
  106. })
  107. return true
  108. },
  109. // 文件上传失败回调
  110. uploadError(res, index, lists, name) {
  111. this.$refs.uTips.show({
  112. title: '文件上传失败',
  113. type: 'warning',
  114. })
  115. },
  116. // 移除文件回调
  117. uploadRemove(index, lists, name) {
  118. this.studentList[name].url = ''
  119. this.studentList[name].fileId = ''
  120. },
  121. // 预览文件回调
  122. uploadPreview(url, lists, name) {
  123. if (this.status == 0) {
  124. this.studentList[name].checked = this.studentList[name].checked ? false : true
  125. }
  126. },
  127. // 设置是否签到
  128. setSignCheck(item) {
  129. if (this.status == 0) {
  130. item.checked = item.checked ? false : true
  131. }
  132. },
  133. // 跳转选择学生页面
  134. goToSelectStudent() {
  135. uni.navigateTo({
  136. url: '/pagesClass/signStudentList?venueId='+this.venueId
  137. });
  138. },
  139. // 跳转签到表单
  140. goToSignForm() {
  141. uni.navigateTo({
  142. url: '/pagesMember/signForm?id=' + this.classId
  143. });
  144. },
  145. // 提交表单
  146. submitForm() {
  147. console.log(this.studentList)
  148. NET.request(API.submitSignForm, {
  149. classId: this.classId,
  150. signStudentIdList: this.studentList.filter(site => site.state != 1 && site.checked).map(site => {
  151. if (site.fileId) {
  152. return {
  153. id: site.id,
  154. fileId: site.fileId,
  155. }
  156. } else {
  157. return {
  158. id: site.id,
  159. }
  160. }
  161. })
  162. }, 'POST').then(res => {
  163. this.$refs.uTips.show({
  164. title: '签到成功',
  165. type: 'success',
  166. })
  167. setTimeout(() => {
  168. uni.navigateBack()
  169. }, 1000)
  170. }).catch(error => {
  171. this.$refs.uTips.show({
  172. title: error.message,
  173. type: 'warning',
  174. })
  175. })
  176. },
  177. },
  178. }
  179. </script>
  180. <style>
  181. page {
  182. width: 100%;
  183. height: 100%;
  184. position: relative;
  185. }
  186. </style>
  187. <style lang="scss" scoped>
  188. @import "@/static/css/themes.scss";
  189. .content {
  190. width: 100%;
  191. float: left;
  192. padding-bottom: 60px;
  193. /deep/.u-list-item {
  194. width: 160rpx !important;
  195. height: 160rpx !important;
  196. border-radius: 50% !important;
  197. margin: 0 !important;
  198. }
  199. /deep/.u-avatar__level {
  200. left: 50%;
  201. transform: translateX(-50%);
  202. bottom: -6px !important;
  203. }
  204. /deep/.u-upload {
  205. height: 160rpx !important;
  206. }
  207. .check-icon {
  208. color: $mainColor;
  209. font-size: 20px;
  210. color: #ff6e3e;
  211. font-size: 26px;
  212. position: absolute;
  213. top: 120rpx;
  214. left: 50%;
  215. transform: translateX(-50%);
  216. background: #ffffff;
  217. border-radius: 50%;
  218. }
  219. .avatar-box {
  220. height: 200rpx;
  221. position: relative;
  222. }
  223. .grid-text {
  224. line-height: 40rpx;
  225. text-align: center;
  226. margin-top: 10rpx;
  227. }
  228. .slot-btn {
  229. width: 160rpx;
  230. height: 160rpx;
  231. border-radius: 50%;
  232. border: 1px solid #999999;
  233. display: flex;
  234. justify-content: center;
  235. align-items: center;
  236. }
  237. }
  238. </style>