setPolling.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. <template>
  2. <view class="handler">
  3. <view class="body">
  4. <view class="scan-box">
  5. <view class="scan" @click="scanCodes">
  6. <text class="newicon newicon-saoma icon"></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" :mask-click="false">
  20. <view class="popup-content">
  21. <view class="tip">提示</view>
  22. <view class="content">{{dataInfo.content}}</view>
  23. </view>
  24. <view class="btn-box">
  25. <view @click="close" class="btn-item-50 color-close">取消</view>
  26. <view @click="dialogConfirm" class="btn-item-50 color">确认</view>
  27. </view>
  28. </uni-popup>
  29. </view>
  30. </template>
  31. <script setup>
  32. import { SM } from "@/http/http.js"
  33. import { ref, reactive, computed } from 'vue'
  34. import { onLoad, onUnload, onShow, onPullDownRefresh } from '@dcloudio/uni-app'
  35. import { api_inspectionNode, api_inspectionNodeEdit } from "@/http/api.js"
  36. import { defaultColor } from '@/static/js/theme.js'
  37. import { useSetTitle } from '@/share/useSetTitle.js'
  38. import { useGoBack } from '@/share/useGoBack.js'
  39. import { useLoginUserStore } from '@/stores/loginUser'
  40. import { post } from "@/http/http.js"
  41. import { join } from "lodash-es"
  42. useSetTitle();
  43. const loginUserStore = useLoginUserStore();
  44. const { goBack } = useGoBack();
  45. // 主题颜色
  46. const primaryColor = ref(defaultColor)
  47. const alertDialog = ref(null)
  48. // 数据
  49. const dataInfo = reactive({
  50. pollingData:'无',
  51. pollingId:null,
  52. newPollingData:null,
  53. content:'',
  54. type:false,
  55. bindingPolling:false
  56. })
  57. // 清空数据
  58. function setInfoData(){
  59. dataInfo.pollingData = '无'
  60. dataInfo.pollingId = null
  61. dataInfo.newPollingData = null
  62. dataInfo.content = ''
  63. dataInfo.type = false
  64. dataInfo.bindingPolling = false
  65. uni.removeStorageSync('pollingCode')
  66. }
  67. // 选择巡检点
  68. function replace(){
  69. // let data = {
  70. // code: 'inspection|$|703f3569-b80e-48df-aafd-5fcef36c96f0',
  71. // pollingData: '1东',
  72. // pollingId: 1,
  73. // }
  74. // uni.setStorageSync('pollingCode',JSON.stringify(data))
  75. uni.navigateTo({
  76. url: `/pages/setPolling/selectPolling`
  77. })
  78. }
  79. // 保存
  80. function save(){
  81. setTimeout(_=>{
  82. alertDialog.value.open()
  83. },100)
  84. }
  85. // 提交
  86. function dialogConfirm(){
  87. let data = JSON.parse(uni.getStorageSync('pollingCode'))
  88. let query = {
  89. inspectionNode:{
  90. updateInspectionNodeCode: 1,
  91. id: data.pollingId,
  92. updateId: dataInfo.newPollingData.id,
  93. code: data.code
  94. }
  95. }
  96. uni.showLoading({
  97. title: "加载中",
  98. mask: true,
  99. });
  100. api_inspectionNodeEdit(query).then((result) => {
  101. if (result.status == 200) {
  102. uni.hideLoading();
  103. uni.showToast({
  104. icon: 'none',
  105. title: result.msg
  106. });
  107. alertDialog.value.close()
  108. setTimeout(_=>{
  109. setInfoData()
  110. },1000)
  111. } else {
  112. uni.showToast({
  113. icon: 'none',
  114. title: result.msg
  115. });
  116. }
  117. });
  118. }
  119. // 关闭
  120. function close(){
  121. alertDialog.value.close()
  122. }
  123. // 扫码
  124. function scanCodes(){
  125. uni.showLoading({
  126. title: "加载中",
  127. mask: true,
  128. });
  129. SM().then((res) => {
  130. let query = {
  131. idx: 0,
  132. sum: 1,
  133. inspectionNode:{
  134. code:res
  135. }
  136. }
  137. api_inspectionNode(query).then((res2) => {
  138. uni.hideLoading();
  139. if (res2.status == 200) {
  140. if(res2.list.length>0){
  141. dataInfo.pollingData = res2.list[0].name
  142. dataInfo.pollingId = res2.list[0].id
  143. }else{
  144. dataInfo.pollingData = '无'
  145. dataInfo.pollingId = null
  146. }
  147. let data = {
  148. code: res,
  149. pollingData: dataInfo.pollingData,
  150. pollingId: dataInfo.pollingId,
  151. }
  152. uni.setStorageSync('pollingCode',JSON.stringify(data))
  153. if(dataInfo.newPollingData){
  154. dataInfo.content = `二维码绑定为“${dataInfo.newPollingData.name}”,原“${dataInfo.pollingData}”二维码被清空,您确认绑定吗?`
  155. }
  156. dataInfo.type = true
  157. } else {
  158. uni.showToast({
  159. icon: 'none',
  160. title: res2.msg || '请求数据失败!'
  161. });
  162. }
  163. });
  164. })
  165. }
  166. onLoad((option) => {
  167. uni.hideLoading();
  168. if(option && option.data){
  169. let data = JSON.parse(option.data)
  170. dataInfo.newPollingData = data
  171. dataInfo.type = true
  172. console.log(998,data)
  173. }
  174. if(uni.getStorageSync('pollingCode')){
  175. let data = JSON.parse(uni.getStorageSync('pollingCode'))
  176. dataInfo.pollingData = data.pollingData
  177. dataInfo.pollingId = data.pollingId
  178. dataInfo.content = `二维码绑定为“${dataInfo.newPollingData.name}”,原“${dataInfo.pollingData}”二维码被清空,您确认绑定吗?`
  179. }
  180. })
  181. onShow(()=>{
  182. uni.hideLoading();
  183. })
  184. onUnload(()=>{
  185. setInfoData()
  186. })
  187. onPullDownRefresh(()=>{
  188. uni.stopPullDownRefresh()
  189. })
  190. </script>
  191. <style>
  192. >>> .uni-popup .uni-popup__wrapper{
  193. background-color: #fff !important;
  194. width: 90%;
  195. border-radius: 10rpx;
  196. }
  197. >>> .uni-popup__info{
  198. color: #333 !important;
  199. }
  200. >>>.uni-button-color{
  201. color: #49B856 !important;
  202. }
  203. </style>
  204. <style lang="scss" scoped>
  205. .handler{
  206. height: 89vh;
  207. .body{
  208. height: 100%;
  209. padding: 0 30rpx;
  210. .scan-box{
  211. padding: 40rpx 0 ;
  212. display: flex;
  213. justify-content: center;
  214. .scan{
  215. width: 150rpx;
  216. height: 150rpx;
  217. border-radius: 50%;
  218. text-align: center;
  219. line-height: 150rpx;
  220. background: linear-gradient( 300deg, #6BBF76 0%, #46B491 100%);
  221. .icon{
  222. color: #fff;
  223. }
  224. }
  225. }
  226. .container{
  227. text-align: center;
  228. .weight-class{
  229. font-size: 38rpx;
  230. font-weight: 600;
  231. margin-bottom: 20rpx;
  232. }
  233. .weight-tip{
  234. font-size: 32rpx;
  235. margin-bottom: 20rpx;
  236. }
  237. }
  238. }
  239. .popup-content{
  240. padding: 20rpx;
  241. text-align: center;
  242. .tip{
  243. font-size: 32rpx;
  244. color: #333;
  245. margin-bottom: 20rpx;
  246. }
  247. .content{
  248. color: #6C6C6C;
  249. padding: 20rpx;
  250. }
  251. }
  252. .btn-box{
  253. display: flex;
  254. border-top: 1px solid #E3E3E3;
  255. .btn-item-50{
  256. flex: 1;
  257. height: 90rpx;
  258. line-height: 90rpx;
  259. text-align: center;
  260. }
  261. .color-close{
  262. color: #606266;
  263. }
  264. .color{
  265. color: #49B856;
  266. border-left: 1px solid #E3E3E3;
  267. }
  268. }
  269. }
  270. </style>