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