setPolling.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <view class="handler">
  3. <view class="body">
  4. <view class="scan-box">
  5. <view class="scan">
  6. <text class="newicon newicon-saoma icon" @click="scanCodes"></text>
  7. </view>
  8. </view>
  9. <view class="container">
  10. <view class="weight-class">可以通过扫一扫功能设置“巡检点”,扫描二维码后设置或选择巡检点。</view>
  11. <view class="weight-tip">查询巡检点结果:{{dataInfo.pollingData}}</view>
  12. <view class="weight-tip" v-if="dataInfo.newPollingData">选择巡检点为:<text class="red">{{dataInfo.newPollingData.name}}</text></view>
  13. </view>
  14. </view>
  15. <view class="foot_common_btns">
  16. <button v-if="dataInfo.type" @click="replace" type="default" class="primaryButton btn">选择巡检点</button>
  17. <button v-if="dataInfo.newPollingData" @click="save" type="default" class="primaryButton btn">保存</button>
  18. </view>
  19. <uni-popup ref="alertDialog" type="dialog">
  20. <uni-popup-dialog type="info" :before-close="true" cancelText="取消" confirmText="确认" title="提示" :content="dataInfo.content" @confirm="dialogConfirm" @close="close"></uni-popup-dialog>
  21. </uni-popup>
  22. </view>
  23. </template>
  24. <script setup>
  25. import { SM } from "@/http/http.js"
  26. import { ref, reactive, computed } from 'vue'
  27. import { onLoad } from '@dcloudio/uni-app'
  28. import { api_inspectionNode, api_inspectionNodeEdit } from "@/http/api.js"
  29. import { defaultColor } from '@/static/js/theme.js'
  30. import { useSetTitle } from '@/share/useSetTitle.js'
  31. import { useGoBack } from '@/share/useGoBack.js'
  32. import { useLoginUserStore } from '@/stores/loginUser'
  33. import { post } from "@/http/http.js"
  34. import { join } from "lodash-es"
  35. useSetTitle();
  36. const loginUserStore = useLoginUserStore();
  37. const { goBack } = useGoBack();
  38. // 主题颜色
  39. const primaryColor = ref(defaultColor)
  40. const alertDialog = ref(null)
  41. // 数据
  42. const dataInfo = reactive({
  43. pollingData:'无',
  44. pollingId:null,
  45. newPollingData:null,
  46. content:'',
  47. type:false
  48. })
  49. // 选择巡检点
  50. function replace(){
  51. // let data = {
  52. // code: 'inspection|$|703f3569-b80e-48df-aafd-5fcef36c96f0',
  53. // pollingData: '1东',
  54. // pollingId: 1,
  55. // }
  56. // uni.setStorageSync('pollingCode',JSON.stringify(data))
  57. uni.navigateTo({
  58. url: `/pages/setPolling/selectPolling`
  59. })
  60. }
  61. // 保存
  62. function save(){
  63. setTimeout(_=>{
  64. alertDialog.value.open()
  65. },100)
  66. }
  67. // 提交
  68. function dialogConfirm(){
  69. let data = JSON.parse(uni.getStorageSync('pollingCode'))
  70. let query = {
  71. inspectionNode:{
  72. updateInspectionNodeCode: 1,
  73. id: data.pollingId,
  74. updateId: dataInfo.newPollingData.id,
  75. code: data.code
  76. }
  77. }
  78. api_inspectionNodeEdit(query).then((result) => {
  79. if (result.status == 200) {
  80. uni.showToast({
  81. icon: 'none',
  82. title: result.msg
  83. });
  84. setTimeout(_=>{
  85. alertDialog.value.close()
  86. dataInfo.pollingData = '无'
  87. dataInfo.pollingId = null
  88. dataInfo.newPollingData = null
  89. dataInfo.content = ''
  90. dataInfo.type = false
  91. uni.removeStorageSync('pollingCode')
  92. },1000)
  93. } else {
  94. uni.showToast({
  95. icon: 'none',
  96. title: result.msg
  97. });
  98. }
  99. });
  100. }
  101. // 关闭
  102. function close(){
  103. alertDialog.value.close()
  104. }
  105. // 扫码
  106. function scanCodes(){
  107. uni.showLoading({
  108. title: "加载中",
  109. mask: true,
  110. });
  111. SM().then((res) => {
  112. let query = {
  113. idx: 0,
  114. sum: 1,
  115. inspectionNode:{
  116. code:res
  117. }
  118. }
  119. api_inspectionNode(query).then((res2) => {
  120. uni.hideLoading();
  121. if (res2.status == 200) {
  122. if(res2.list.length>0){
  123. dataInfo.pollingData = res2.list[0].name
  124. dataInfo.pollingId = res2.list[0].id
  125. }
  126. let data = {
  127. code: res,
  128. pollingData: dataInfo.pollingData,
  129. pollingId: dataInfo.pollingId,
  130. }
  131. uni.setStorageSync('pollingCode',JSON.stringify(data))
  132. dataInfo.type = true
  133. } else {
  134. uni.showToast({
  135. icon: 'none',
  136. title: res2.msg || '请求数据失败!'
  137. });
  138. }
  139. });
  140. })
  141. }
  142. onLoad((option) => {
  143. if(option && option.data){
  144. let data = JSON.parse(option.data)
  145. dataInfo.newPollingData = data
  146. console.log(998,data)
  147. }
  148. if(uni.getStorageSync('pollingCode')){
  149. let data = JSON.parse(uni.getStorageSync('pollingCode'))
  150. dataInfo.pollingData = data.pollingData
  151. dataInfo.pollingId = data.pollingId
  152. dataInfo.content = `二维码绑定为“${dataInfo.newPollingData.name}”,原“${dataInfo.pollingData}”二维码被清空,您确认绑定吗?`
  153. }
  154. })
  155. </script>
  156. <style>
  157. >>> .uni-popup__info{
  158. color: #333 !important;
  159. }
  160. >>>.uni-button-color{
  161. color: #49B856 !important;
  162. }
  163. </style>
  164. <style lang="scss" scoped>
  165. .handler{
  166. height: 89vh;
  167. .body{
  168. height: 100%;
  169. padding: 0 30rpx;
  170. .scan-box{
  171. padding: 40rpx 0 ;
  172. display: flex;
  173. justify-content: center;
  174. .scan{
  175. width: 150rpx;
  176. height: 150rpx;
  177. border-radius: 50%;
  178. text-align: center;
  179. line-height: 150rpx;
  180. background: linear-gradient( 300deg, #6BBF76 0%, #46B491 100%);
  181. .icon{
  182. color: #fff;
  183. }
  184. }
  185. }
  186. .container{
  187. text-align: center;
  188. .weight-class{
  189. font-size: 38rpx;
  190. font-weight: 600;
  191. margin-bottom: 20rpx;
  192. }
  193. .weight-tip{
  194. font-size: 32rpx;
  195. margin-bottom: 20rpx;
  196. }
  197. }
  198. }
  199. }
  200. </style>