浏览代码

巡检点绑定开发

maotao 2 周之前
父节点
当前提交
1b1eb756eb

+ 7 - 0
http/api.js

@@ -245,6 +245,13 @@ export function api_inspectionNode(data){
245 245
 }
246 246
 
247 247
 /**
248
+ * 修改巡检点
249
+ */
250
+export function api_inspectionNodeEdit(data){
251
+  return post("/data/updData/inspectionNode", data);
252
+}
253
+
254
+/**
248 255
  * 获取巡检执行列表-数量
249 256
  */
250 257
 export function api_listCount(data){

+ 18 - 0
pages.json

@@ -299,6 +299,24 @@
299 299
 	     },
300 300
 	     "enablePullDownRefresh": true
301 301
 	   }
302
+	 },
303
+	 {
304
+	   "path": "pages/setPolling/setPolling",
305
+	   "style": {
306
+	     "h5": {
307
+	       "titleNView": false
308
+	     },
309
+	     "enablePullDownRefresh": true
310
+	   }
311
+	 },
312
+	 {
313
+	   "path": "pages/setPolling/selectPolling",
314
+	   "style": {
315
+	     "h5": {
316
+	       "titleNView": false
317
+	     },
318
+	     "enablePullDownRefresh": true
319
+	   }
302 320
 	 }
303 321
   ],
304 322
   "globalStyle": {

+ 13 - 0
pages/my/my.vue

@@ -45,6 +45,9 @@
45 45
         </view>
46 46
       </view>
47 47
     </scroll-view>
48
+		<view class="new-btn">
49
+			<button @click="addPolling" type="default" class="primaryButton"><text class="icon-style newicon newicon-bangding"></text>巡检点绑定</button>
50
+		</view>
48 51
     <view class="foot_common_btns">
49 52
 			<button @click="myRepair" type="default" class="primaryButton btn"><text class="icon-style newicon newicon-ziyuan-baoxiu1"></text>我的报修</button>
50 53
       <button @click="toBuildIncident" type="default" class="primaryButton btn"><text class="newicon newicon-xinjian2"></text>新建事件</button>
@@ -132,6 +135,13 @@
132 135
     })
133 136
   }
134 137
   
138
+	// 巡检点绑定
139
+	function addPolling(){
140
+		uni.navigateTo({
141
+		  url: `/pages/setPolling/setPolling`
142
+		})
143
+	}
144
+	
135 145
 	// 知识库
136 146
 	function myRepair(){
137 147
 		// repositorySearchStore.clearRepositoryListSearchData()
@@ -257,5 +267,8 @@ page{
257 267
 		position: relative;
258 268
 		left: -6rpx;
259 269
 	}
270
+	.new-btn{
271
+		padding: 0 24rpx;
272
+	}
260 273
 }
261 274
 </style>

+ 180 - 0
pages/setPolling/selectPolling.vue

@@ -0,0 +1,180 @@
1
+<template>
2
+  <view class="consumableList">
3
+    <view class="head">
4
+      <uni-search-bar v-model="dataInfo.keyWord" :placeholder="placeHolder" bgColor="#F8F8F8" @input="search" cancelButton="none" focus :radius="18" />
5
+    </view>
6
+    <view class="body" v-if="dataInfo.list.length">
7
+      <view class="body_item ellipsis" :class="dataInfo.index == index ? 'activeClass' :''" v-for="(data, index) in dataInfo.list" :key="data.id" @click="clickItem(data,index)">
8
+        {{data.name}}
9
+      </view>
10
+    </view>
11
+    <view class="zanwu" v-else>
12
+      <text class="newicon newicon-zanwu"></text>
13
+    </view>
14
+    <view class="foot_common_btns">
15
+      <button @click="goBackPage" type="default" class="primaryButton btn">确定</button>
16
+    </view>
17
+  </view>
18
+</template>
19
+
20
+<script setup>
21
+  import { debounce } from 'lodash-es'
22
+  import { ref, reactive} from 'vue'
23
+  import { onLoad, onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app'
24
+  import { api_inspectionNode } from "@/http/api.js"
25
+  import { defaultColor } from '@/static/js/theme.js'
26
+  import { useSetTitle } from '@/share/useSetTitle.js'
27
+  import { useLoginUserStore } from '@/stores/loginUser'
28
+  import { useIncidentBuildStore } from '@/stores/incidentBuild'
29
+  import { useGoBack } from '@/share/useGoBack.js'
30
+  
31
+  useSetTitle();
32
+  const loginUserStore = useLoginUserStore();
33
+  const incidentBuildStore = useIncidentBuildStore();
34
+  const { goBack }  = useGoBack();
35
+  
36
+  // 主题颜色
37
+  const primaryColor = ref(defaultColor)
38
+  
39
+  const placeHolder = ref('请搜索巡检点');
40
+  
41
+	const entranceType = ref(null);
42
+	
43
+	// 院区id
44
+	const branchId = ref(null);
45
+	
46
+  // 数据
47
+  const dataInfo = reactive({
48
+    list: [],//工单列表
49
+    idx: 0,//页码
50
+    hasMore: true,//是否有更多数据
51
+    incidentData: {},//事件对象
52
+    keyWord: '',//搜索的关键词
53
+		item:null,
54
+		index:null
55
+  })
56
+  
57
+  // 搜索
58
+  const search = debounce(getList.bind(null, 0), 500);
59
+
60
+  // 获取列表信息
61
+  function getList(idx){
62
+    if(dataInfo.keyWord.trim() === ''){
63
+      dataInfo.list = [];
64
+      return;
65
+    }
66
+    
67
+    uni.showLoading({
68
+      title: "加载中",
69
+      mask: true,
70
+    });
71
+
72
+    let postData = {
73
+      idx: dataInfo.idx,
74
+      sum: 9999,
75
+      inspectionNode: {
76
+				hosId: loginUserStore.loginUser.user.currentHospital.id,
77
+				name: dataInfo.keyWord
78
+      }
79
+    }
80
+    api_inspectionNode(postData).then(res => {
81
+      uni.hideLoading();
82
+      if(res.status == 200){
83
+        let list = res.list || [];
84
+        if(list.length){
85
+          dataInfo.hasMore = true;
86
+          dataInfo.list = list;
87
+        }else{
88
+          dataInfo.hasMore = false;
89
+        }
90
+      }else{
91
+        uni.showToast({
92
+          icon: 'none',
93
+          title: res.msg || '请求数据失败!'
94
+        });
95
+      }
96
+    })
97
+  }
98
+  
99
+	function goBackPage(){
100
+		if(!dataInfo.item){
101
+			uni.showToast({
102
+			  icon: 'none',
103
+			  title: '请选择巡检点!'
104
+			});
105
+			return
106
+		}
107
+		let data = JSON.stringify(dataInfo.item)
108
+		uni.navigateTo({
109
+		  url: '/pages/setPolling/setPolling?data=' + data
110
+		})
111
+	}
112
+	
113
+  // 点击
114
+  function clickItem(data,index){
115
+		dataInfo.index = index
116
+		dataInfo.item = data;
117
+		console.log(444,dataInfo.item)
118
+  }
119
+  
120
+  onLoad((option) => {
121
+    getList(0);
122
+  })
123
+  
124
+  onPullDownRefresh(() => {
125
+
126
+  })
127
+  
128
+  onReachBottom(() => {
129
+
130
+  })
131
+</script>
132
+
133
+<style lang="scss" scoped>
134
+.consumableList{
135
+  display: flex;
136
+  flex-direction: column;
137
+  justify-content: space-between;
138
+  .head{
139
+    height: 88rpx;
140
+    display: flex;
141
+    align-items: center;
142
+    justify-content: center;
143
+    padding: 0 24rpx;
144
+    position: fixed;
145
+    z-index: 99;
146
+    width: 100%;
147
+    box-sizing: border-box;
148
+    background: linear-gradient( 90deg, #58CF66 0%, #DDE9FC 100%);
149
+  }
150
+  .body{
151
+    margin-bottom: 140rpx;
152
+    margin-top: 88rpx;
153
+    font-size: 26rpx;
154
+    .body_item{
155
+      border-bottom: 1rpx solid #DEDEDE;
156
+      padding: 24rpx;
157
+    }
158
+		.activeClass{
159
+			color: #49b856;
160
+		}
161
+  }
162
+  .zanwu{
163
+    margin-bottom: 140rpx;
164
+    margin-top: 88rpx;
165
+    display: flex;
166
+    justify-content: center;
167
+    .newicon-zanwu{
168
+      font-size: 256rpx;
169
+      color: #D6D6D6;
170
+      margin-top: 140rpx;
171
+    }
172
+  }
173
+  .foot_common_btns{
174
+    position: fixed;
175
+    left: 0;
176
+    bottom: 0;
177
+    background-color: #fff;
178
+  }
179
+}
180
+</style>

+ 212 - 0
pages/setPolling/setPolling.vue

@@ -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>

+ 26 - 3
static/font/demo_index.html

@@ -55,6 +55,12 @@
55 55
           <ul class="icon_lists dib-box">
56 56
           
57 57
             <li class="dib">
58
+              <span class="icon newicon">&#xe68b;</span>
59
+                <div class="name">绑定</div>
60
+                <div class="code-name">&amp;#xe68b;</div>
61
+              </li>
62
+          
63
+            <li class="dib">
58 64
               <span class="icon newicon">&#xe633;</span>
59 65
                 <div class="name">右箭头</div>
60 66
                 <div class="code-name">&amp;#xe633;</div>
@@ -246,9 +252,9 @@
246 252
 <pre><code class="language-css"
247 253
 >@font-face {
248 254
   font-family: 'newicon';
249
-  src: url('iconfont.woff2?t=1721874329610') format('woff2'),
250
-       url('iconfont.woff?t=1721874329610') format('woff'),
251
-       url('iconfont.ttf?t=1721874329610') format('truetype');
255
+  src: url('iconfont.woff2?t=1741933729857') format('woff2'),
256
+       url('iconfont.woff?t=1741933729857') format('woff'),
257
+       url('iconfont.ttf?t=1741933729857') format('truetype');
252 258
 }
253 259
 </code></pre>
254 260
           <h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
@@ -275,6 +281,15 @@
275 281
         <ul class="icon_lists dib-box">
276 282
           
277 283
           <li class="dib">
284
+            <span class="icon newicon newicon-bangding"></span>
285
+            <div class="name">
286
+              绑定
287
+            </div>
288
+            <div class="code-name">.newicon-bangding
289
+            </div>
290
+          </li>
291
+          
292
+          <li class="dib">
278 293
             <span class="icon newicon newicon-youjiantou"></span>
279 294
             <div class="name">
280 295
               右箭头
@@ -564,6 +579,14 @@
564 579
           
565 580
             <li class="dib">
566 581
                 <svg class="icon svg-icon" aria-hidden="true">
582
+                  <use xlink:href="#newicon-bangding"></use>
583
+                </svg>
584
+                <div class="name">绑定</div>
585
+                <div class="code-name">#newicon-bangding</div>
586
+            </li>
587
+          
588
+            <li class="dib">
589
+                <svg class="icon svg-icon" aria-hidden="true">
567 590
                   <use xlink:href="#newicon-youjiantou"></use>
568 591
                 </svg>
569 592
                 <div class="name">右箭头</div>

+ 7 - 3
static/font/iconfont.css

@@ -1,8 +1,8 @@
1 1
 @font-face {
2 2
   font-family: "newicon"; /* Project id 4304860 */
3
-  src: url('iconfont.woff2?t=1721874329610') format('woff2'),
4
-       url('iconfont.woff?t=1721874329610') format('woff'),
5
-       url('iconfont.ttf?t=1721874329610') format('truetype');
3
+  src: url('iconfont.woff2?t=1741933729857') format('woff2'),
4
+       url('iconfont.woff?t=1741933729857') format('woff'),
5
+       url('iconfont.ttf?t=1741933729857') format('truetype');
6 6
 }
7 7
 
8 8
 .newicon {
@@ -13,6 +13,10 @@
13 13
   -moz-osx-font-smoothing: grayscale;
14 14
 }
15 15
 
16
+.newicon-bangding:before {
17
+  content: "\e68b";
18
+}
19
+
16 20
 .newicon-youjiantou:before {
17 21
   content: "\e633";
18 22
 }

文件差异内容过多而无法显示
+ 1 - 1
static/font/iconfont.js


+ 7 - 0
static/font/iconfont.json

@@ -6,6 +6,13 @@
6 6
   "description": "",
7 7
   "glyphs": [
8 8
     {
9
+      "icon_id": "5039564",
10
+      "name": "绑定",
11
+      "font_class": "bangding",
12
+      "unicode": "e68b",
13
+      "unicode_decimal": 59019
14
+    },
15
+    {
9 16
       "icon_id": "9021524",
10 17
       "name": "右箭头",
11 18
       "font_class": "youjiantou",

二进制
static/font/iconfont.ttf


二进制
static/font/iconfont.woff


二进制
static/font/iconfont.woff2