wenjuan-info.vue 5.7 KB

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