signForm.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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. console.log(this.studentList)
  146. NET.request(API.submitSignForm, {
  147. classId: this.classId,
  148. signStudentIdList: this.studentList.filter(site => site.state == 0 && site.checked).map(site => {
  149. if (site.fileId) {
  150. return {
  151. id: site.id,
  152. fileId: site.fileId,
  153. }
  154. } else {
  155. return {
  156. id: site.id,
  157. }
  158. }
  159. })
  160. }, 'POST').then(res => {
  161. this.$refs.uTips.show({
  162. title: '签到成功',
  163. type: 'success',
  164. })
  165. setTimeout(() => {
  166. uni.navigateBack()
  167. }, 1000)
  168. }).catch(error => {
  169. this.$refs.uTips.show({
  170. title: error.message,
  171. type: 'warning',
  172. })
  173. })
  174. },
  175. },
  176. }
  177. </script>
  178. <style>
  179. page {
  180. width: 100%;
  181. height: 100%;
  182. position: relative;
  183. }
  184. </style>
  185. <style lang="scss" scoped>
  186. @import "@/static/css/themes.scss";
  187. .content {
  188. width: 100%;
  189. float: left;
  190. padding-bottom: 60px;
  191. /deep/.u-list-item {
  192. width: 160rpx !important;
  193. height: 160rpx !important;
  194. border-radius: 50% !important;
  195. margin: 0 !important;
  196. }
  197. /deep/.u-avatar__level {
  198. left: 50%;
  199. transform: translateX(-50%);
  200. bottom: -6px !important;
  201. }
  202. /deep/.u-upload {
  203. height: 160rpx !important;
  204. }
  205. .check-icon {
  206. color: $mainColor;
  207. font-size: 20px;
  208. color: #ff6e3e;
  209. font-size: 26px;
  210. position: absolute;
  211. top: 120rpx;
  212. left: 50%;
  213. transform: translateX(-50%);
  214. background: #ffffff;
  215. border-radius: 50%;
  216. }
  217. .avatar-box {
  218. height: 200rpx;
  219. position: relative;
  220. }
  221. .grid-text {
  222. line-height: 40rpx;
  223. text-align: center;
  224. margin-top: 10rpx;
  225. }
  226. .slot-btn {
  227. width: 160rpx;
  228. height: 160rpx;
  229. border-radius: 50%;
  230. border: 1px solid #999999;
  231. display: flex;
  232. justify-content: center;
  233. align-items: center;
  234. }
  235. }
  236. </style>