wenjuan-info.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <view class="wenjuan-info">
  3. <image src="../../static/img/bg@2x.png" style="position: fixed;z-index: -1;width: 750rpx;top: 0;left: 0;" mode="widthFix"></image>
  4. <view class="wenjuan-body">
  5. <view class="wenjuan-item" v-for="(item,index) in list" :key="index">
  6. <dan :index="index + 1" v-if="item.quesType == 1" :item="item" @changeradio="(e) => changeradio(e,index)"></dan>
  7. <duo :index="index + 1" v-if="item.quesType == 2" :item="item" @changecheck="(e) => changecheck(e,index)"></duo>
  8. <tian :index="index + 1" v-if="item.quesType == 3" :item="item" @changetian="(e) => changetian(e,index)"></tian>
  9. <wen :index="index + 1" v-if="item.quesType == 4" :item="item" @changewen="(e) => changewen(e,index)"></wen>
  10. </view>
  11. </view>
  12. <view style="height: 150rpx;"></view>
  13. <view class="safe-area-inset-bottom"></view>
  14. <view class="wenjuan-info-btn">
  15. <view class="btn-box u-flex u-row-center">
  16. <text @click="save">提交</text>
  17. </view>
  18. <view class="safe-area-inset-bottom"></view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. import dan from "../../components/wenjuan-dan.vue"
  24. import duo from "../../components/wenjuan-duo.vue"
  25. import tian from "../../components/wenjuan-tian.vue"
  26. import wen from "../../components/wenjuan-wen.vue"
  27. export default {
  28. data() {
  29. return {
  30. id: '',
  31. list: []
  32. }
  33. },
  34. onLoad(option) {
  35. this.id = option.id
  36. this.getdata()
  37. },
  38. components: {
  39. dan,
  40. duo,
  41. tian,
  42. wen
  43. },
  44. methods: {
  45. save() {
  46. var quesSubNodeMessageList = []
  47. for (let i = 0; i < this.list.length; i++) {
  48. if (this.list[i].quesType == 1) {
  49. if (!this.list[i].value) {
  50. this.$u.toast(`请选择第${i + 1}题答案`)
  51. return
  52. }
  53. quesSubNodeMessageList.push({
  54. answer: this.list[i].value,
  55. id: this.list[i].id,
  56. orderId: this.list[i].orderId,
  57. quesName: this.list[i].quesName,
  58. sysOrgCode: this.list[i].sysOrgCode
  59. })
  60. }
  61. if (this.list[i].quesType == 2) {
  62. if (this.list[i].value.length == 0) {
  63. this.$u.toast(`请选择第${i + 1}题答案`)
  64. return
  65. }
  66. quesSubNodeMessageList.push({
  67. answer: this.list[i].value.join(','),
  68. id: this.list[i].id,
  69. orderId: this.list[i].orderId,
  70. quesName: this.list[i].quesName,
  71. sysOrgCode: this.list[i].sysOrgCode
  72. })
  73. }
  74. if (this.list[i].quesType == 3) {
  75. var tian = ''
  76. for (let a = 0; a < this.list[i].value.length; a++) {
  77. if (this.list[i].value[a].input && !this.list[i].value[a].value) {
  78. this.$u.toast(`请选择第${i + 1}题填空题`)
  79. return
  80. } else {
  81. tian = tian + this.list[i].value[a].text + (this.list[i].value[a].value || '')
  82. }
  83. }
  84. quesSubNodeMessageList.push({
  85. answer: tian,
  86. id: this.list[i].id,
  87. orderId: this.list[i].orderId,
  88. quesName: this.list[i].quesName,
  89. sysOrgCode: this.list[i].sysOrgCode
  90. })
  91. }
  92. if (this.list[i].quesType == 4) {
  93. if (!this.list[i].value) {
  94. this.$u.toast(`请输入第${i + 1}题答案`)
  95. return
  96. }
  97. quesSubNodeMessageList.push({
  98. answer: this.list[i].value,
  99. id: this.list[i].id,
  100. orderId: this.list[i].orderId,
  101. quesName: this.list[i].quesName,
  102. sysOrgCode: this.list[i].sysOrgCode
  103. })
  104. }
  105. }
  106. uni.showLoading({
  107. mask: true,
  108. title: "请稍候"
  109. })
  110. this.$http.noteAdd({
  111. id: this.id,
  112. quesSubNodeMessageList: quesSubNodeMessageList
  113. }).then(res => {
  114. this.$u.toast(res.data.message)
  115. if (res.data.code == 200) {
  116. setTimeout(() => {
  117. uni.navigateBack()
  118. }, 800)
  119. }
  120. })
  121. // console.log(JSON.parse(JSON.stringify(this.list)));
  122. },
  123. changewen(e, index) {
  124. this.list[index].value = e
  125. },
  126. changetian(e, index) {
  127. this.list[index].value = e
  128. },
  129. changecheck(e, index) {
  130. this.list[index].value = e
  131. },
  132. changeradio(e, index) {
  133. this.list[index].value = e
  134. },
  135. getdata() {
  136. this.$http.quesInfo({
  137. id: this.id
  138. }).then(res => {
  139. this.list = []
  140. res.data.result.forEach(val => {
  141. if (val.quesType == 1) {
  142. this.list.push({
  143. ...val,
  144. value: ''
  145. })
  146. }
  147. if (val.quesType == 2) {
  148. this.list.push({
  149. ...val,
  150. value: []
  151. })
  152. }
  153. if (val.quesType == 3) {
  154. this.list.push({
  155. ...val,
  156. value: []
  157. })
  158. }
  159. if (val.quesType == 4) {
  160. this.list.push({
  161. ...val,
  162. value: ''
  163. })
  164. }
  165. })
  166. })
  167. }
  168. }
  169. }
  170. </script>
  171. <style lang="scss">
  172. .wenjuan-info {
  173. .wenjuan-info-btn {
  174. position: fixed;
  175. z-index: 10;
  176. background-color: #fff;
  177. width: 750rpx;
  178. left: 0;
  179. bottom: 0;
  180. .btn-box {
  181. padding: 10rpx 30rpx;
  182. width: 100%;
  183. text {
  184. width: 100%;
  185. line-height: 88rpx;
  186. background: #167FFF;
  187. border-radius: 12rpx;
  188. text-align: center;
  189. font-size: 32rpx;
  190. font-family: PingFangSC-Medium, PingFang SC;
  191. font-weight: 500;
  192. color: #FFFFFF;
  193. }
  194. }
  195. }
  196. .wenjuan-body {
  197. width: 690rpx;
  198. background: rgba(255, 255, 255, 0.6);
  199. border-radius: 20rpx;
  200. border: 2rpx solid #FFFFFF;
  201. backdrop-filter: blur(4px);
  202. margin: 20rpx auto;
  203. padding: 20rpx 0;
  204. .wenjuan-item {
  205. padding: 18rpx 20rpx;
  206. }
  207. }
  208. }
  209. </style>