signForm.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <template>
  2. <view class="content">
  3. <u-card :title="'总数(' + studentList.length + ')人'" 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. }
  65. },
  66. onLoad(options) {
  67. this.classId = options.id
  68. this.status = options.status
  69. this.venueId = options.venueId
  70. },
  71. onShow() {
  72. this.initialize()
  73. },
  74. methods: {
  75. // 获取初始化数据
  76. initialize() {
  77. NET.request(API.getSignStudentList, {
  78. id: this.classId
  79. }, 'POST').then(res => {
  80. res.data.forEach(site => site.checked = false)
  81. this.studentList = res.data
  82. const checkedList = uni.getStorageSync('signUserList').length ? uni.getStorageSync('signUserList') : []
  83. checkedList.forEach(
  84. checkedItem => {
  85. if(this.studentList.filter(item=>checkedItem.id==item.id).length==0){
  86. this.studentList.push(checkedItem)
  87. }
  88. }
  89. )
  90. }).catch(error => {
  91. this.$refs.uTips.show({
  92. title: error.message,
  93. type: 'warning',
  94. })
  95. })
  96. },
  97. // 文件上传成功回调
  98. uploadSuccess(res, index, lists, name) {
  99. this.studentList[name].url = res.data.url
  100. this.studentList[name].fileId = res.data.id
  101. this.$refs.uTips.show({
  102. title: '文件上传成功',
  103. type: 'success',
  104. })
  105. return true
  106. },
  107. // 文件上传失败回调
  108. uploadError(res, index, lists, name) {
  109. this.$refs.uTips.show({
  110. title: '文件上传失败',
  111. type: 'warning',
  112. })
  113. },
  114. // 移除文件回调
  115. uploadRemove(index, lists, name) {
  116. this.studentList[name].url = ''
  117. this.studentList[name].fileId = ''
  118. },
  119. // 预览文件回调
  120. uploadPreview(url, lists, name) {
  121. if (this.status == 0) {
  122. this.studentList[name].checked = this.studentList[name].checked ? false : true
  123. }
  124. },
  125. // 设置是否签到
  126. setSignCheck(item) {
  127. if (this.status == 0) {
  128. item.checked = item.checked ? false : true
  129. }
  130. },
  131. // 跳转选择学生页面
  132. goToSelectStudent() {
  133. uni.navigateTo({
  134. url: '/pagesClass/signStudentList?venueId='+this.venueId
  135. });
  136. },
  137. // 跳转签到表单
  138. goToSignForm() {
  139. uni.navigateTo({
  140. url: '/pagesMember/signForm?id=' + this.classId
  141. });
  142. },
  143. // 提交表单
  144. submitForm() {
  145. NET.request(API.submitSignForm, {
  146. classId: this.classId,
  147. signStudentIdList: this.studentList.filter(site => site.state == 0 && site.checked).map(site => {
  148. if (site.fileId) {
  149. return {
  150. id: site.id,
  151. fileId: site.fileId,
  152. }
  153. } else {
  154. return {
  155. id: site.id,
  156. }
  157. }
  158. })
  159. }, 'POST').then(res => {
  160. this.$refs.uTips.show({
  161. title: '签到成功',
  162. type: 'success',
  163. })
  164. setTimeout(() => {
  165. uni.navigateBack()
  166. }, 1000)
  167. }).catch(error => {
  168. this.$refs.uTips.show({
  169. title: error.message,
  170. type: 'warning',
  171. })
  172. })
  173. },
  174. },
  175. }
  176. </script>
  177. <style>
  178. page {
  179. width: 100%;
  180. height: 100%;
  181. position: relative;
  182. }
  183. </style>
  184. <style lang="scss" scoped>
  185. @import "@/static/css/themes.scss";
  186. .content {
  187. width: 100%;
  188. float: left;
  189. padding-bottom: 60px;
  190. /deep/.u-list-item {
  191. width: 160rpx !important;
  192. height: 160rpx !important;
  193. border-radius: 50% !important;
  194. margin: 0 !important;
  195. }
  196. /deep/.u-avatar__level {
  197. left: 50%;
  198. transform: translateX(-50%);
  199. bottom: -6px !important;
  200. }
  201. /deep/.u-upload {
  202. height: 160rpx !important;
  203. }
  204. .check-icon {
  205. color: $mainColor;
  206. font-size: 20px;
  207. color: #ff6e3e;
  208. font-size: 26px;
  209. position: absolute;
  210. top: 120rpx;
  211. left: 50%;
  212. transform: translateX(-50%);
  213. background: #ffffff;
  214. border-radius: 50%;
  215. }
  216. .avatar-box {
  217. height: 200rpx;
  218. position: relative;
  219. }
  220. .grid-text {
  221. line-height: 40rpx;
  222. text-align: center;
  223. margin-top: 10rpx;
  224. }
  225. .slot-btn {
  226. width: 160rpx;
  227. height: 160rpx;
  228. border-radius: 50%;
  229. border: 1px solid #999999;
  230. display: flex;
  231. justify-content: center;
  232. align-items: center;
  233. }
  234. }
  235. </style>