maotao 3 månader sedan
förälder
incheckning
3509c89037

+ 16 - 8
components/appUpdata/appUpdata.vue

@@ -9,7 +9,7 @@
9 9
 				<view class="title">更新提示</view>
10 10
 				<view class="content">有新版本发布,请及时更新!</view>
11 11
 				<view class="schedule" v-if="isSchedule">	
12
-					<progress :percent="upProgress" show-info stroke-width="15" />
12
+					<progress :percent="upProgress" activeColor="#49b856" show-info stroke-width="15" />
13 13
 				</view>
14 14
 				<view class="btn">
15 15
 					<button size="mini" :disabled="isSchedule" @click="nowUpdate()">立即更新</button>
@@ -48,14 +48,22 @@
48 48
 		methods: {
49 49
 			getProperty(){
50 50
 				// 获取本地应用资源版本号
51
-				plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
52
-					this.appVersion = wgtinfo.version;
53
-					this.getVersionNumber();
54
-				})
51
+				let that = this
52
+				uni.getSystemInfo({
53
+					success: function (res) {
54
+						// console.log(7777,res)
55
+						that.appVersion = res.appVersion
56
+						that.getVersionNumber();
57
+					}
58
+				});
59
+				
60
+				// plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
61
+				// 	this.appVersion = wgtinfo.version;
62
+				// 	this.getVersionNumber();
63
+				// })
55 64
 			},
56 65
 			// 获取后台版本号 检查是否有新版本
57 66
 			getVersionNumber() {
58
-				let version = this.appVersion;
59 67
 				uni.showLoading({
60 68
 				  title: "加载中",
61 69
 				});
@@ -73,7 +81,7 @@
73 81
 						let ip = uni.getStorageSync('ip')
74 82
 						this.apkUrl = ip + `/getapk/pdazV${this.supportAppVersion}.apk`
75 83
 						console.log(444,this.apkUrl)
76
-						if(this.supportAppVersion != version){
84
+						if(this.supportAppVersion != this.appVersion){
77 85
 							this.isUpdate = true;
78 86
 						}else{
79 87
 							this.isUpdate = false;
@@ -82,7 +90,7 @@
82 90
 				})
83 91
 				
84 92
 			},
85
-			// 点击立即升级查看手机是安卓还是ios
93
+			// 点击立即升级
86 94
 			nowUpdate() {
87 95
 				this.androidUpdate();
88 96
 			},

+ 6 - 6
manifest.json

@@ -2,8 +2,8 @@
2 2
     "name" : "病理全流程",
3 3
     "appid" : "__UNI__9F2011E",
4 4
     "description" : "",
5
-    "versionName" : "1.0",
6
-    "versionCode" : 10,
5
+    "versionName" : "1.11",
6
+    "versionCode" : 11,
7 7
     "transformPx" : false,
8 8
     /* 5+App特有相关 */
9 9
     "app-plus" : {
@@ -36,7 +36,9 @@
36 36
                 "abiFilters" : [ "armeabi-v7a", "arm64-v8a" ]
37 37
             },
38 38
             /* ios打包配置 */
39
-            "ios" : {},
39
+            "ios" : {
40
+                "dSYMs" : false
41
+            },
40 42
             /* SDK配置 */
41 43
             "sdkConfigs" : {
42 44
                 "ad" : {},
@@ -111,8 +113,6 @@
111 113
             // "base" : "/app/",
112 114
             "base" : "/dstechbh/app/"
113 115
         },
114
-        // 宜昌打包目录
115
-        // "base" : "/dstechbh/app/"
116 116
         "optimization" : {
117 117
             "treeShaking" : {
118 118
                 "enable" : true
@@ -122,7 +122,7 @@
122 122
             "disableHostCheck" : true,
123 123
             "proxy" : {
124 124
                 "/service" : {
125
-                    "target" : "http://zzzx.njszyy.cn:50000", //请求的目标域名
125
+                    "target" : "http://192.168.3.108", //请求的目标域名
126 126
 
127 127
                     // "target" : "http://192.168.4.163", //宋程玉本地
128 128
                     "changeOrigin" : true, //是否跨域

+ 9 - 1
pages/specimenPort/detail.vue

@@ -179,7 +179,15 @@
179 179
 					uni.hideLoading();
180 180
 					if(res.status==200){
181 181
 						let data = res.data[0]
182
-						let item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
182
+						let item = null
183
+						let str = null
184
+						if(scannerCode.indexOf(':')!=-1){
185
+							str = scannerCode.split(':')
186
+							item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == str[1])
187
+						}else{
188
+							item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
189
+						}
190
+						// let item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
183 191
 						if(!item.fixationTime && data.pathologyFormType==0){
184 192
 							if(data.status.value==2 || data.status.value==3 ||
185 193
 							data.status.value==4){

+ 12 - 3
pages/specimenPort/scan.vue

@@ -3,7 +3,7 @@
3 3
 		<view class="info">
4 4
 			<view class="header">
5 5
 				<view class="center" :class="list.length < infoData.specimenNum?'par-top1':'par-top2'">
6
-					<view class="sign red">{{list.length}}/{{specimenNum}}</view>
6
+					<view class="sign red">{{specimenNum}}/{{list.length}}</view>
7 7
 				</view>
8 8
 				<view class="tip" v-if="list.length < infoData.specimenNum">请继续扫描标本!</view>
9 9
 				<view class="title">申请单共有<span class="red">{{totalNum}}</span>份,已固定<span class="red">{{fixationNum}}</span>份还需固定<span class="red">{{specimenNum}}</span>份</view>
@@ -253,7 +253,8 @@
253 253
 					specimenCodes:str.join(','),
254 254
 					handoverUserId:this.form.handoverUserId,
255 255
 					fixationTime:time,
256
-					specimenDeptId:this.userInfo.dept.id
256
+					specimenDeptId:this.userInfo.dept.id,
257
+					operationType:'pda'
257 258
 				}
258 259
 				post('/simple/data/addData/pathologyForm',query).then((res) => {
259 260
 					uni.hideLoading();
@@ -292,7 +293,15 @@
292 293
 					uni.hideLoading();
293 294
 					if(res.status==200){
294 295
 						let data = res.data[0]
295
-						let item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
296
+						let item = null
297
+						let str = null
298
+						if(scannerCode.indexOf(':')!=-1){
299
+							str = scannerCode.split(':')
300
+							item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == str[1])
301
+						}else{
302
+							item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
303
+						}
304
+						// let item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
296 305
 						uni.setStorageSync('pathologyFormId', data.id);
297 306
 						if(!item.fixationTime && data.pathologyFormType==0){
298 307
 							if(data.status.value==2 || data.status.value==3 ||

+ 49 - 15
pages/specimenPort/specimenPort.vue

@@ -41,6 +41,14 @@
41 41
 							<view>{{item.dept}}</view>
42 42
 						</label>
43 43
 					</radio-group>
44
+					<view>
45
+						<label class="df uni-list-cell uni-list-cell-pd">固定并存放标本间</label>
46
+						<checkbox-group @change="checkChange">
47
+							<label class="df uni-list-cell uni-list-cell-pd">
48
+								<checkbox color="#49B856" value="1" :checked="depositCheck" />是否开启
49
+							</label>
50
+						</checkbox-group>
51
+					</view>
44 52
 					<view class="execFilterFooter">
45 53
 						<view class="btn" @click="filterCacel()" v-if="isDept || specimenData.length==0">取消</view>
46 54
 						<view class="btn" @click="filterOk()">确认</view>
@@ -80,6 +88,7 @@
80 88
 				otherData:null,
81 89
 				isApp:false,
82 90
 				isUpdate:false,
91
+				depositCheck:false,
83 92
 			}
84 93
 		},
85 94
 		components: {
@@ -106,6 +115,15 @@
106 115
 			 
107 116
 				return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
108 117
 			},
118
+			// 选择check
119
+			checkChange(e){
120
+				let values = e.detail.value;
121
+				if(values[0]=='1'){
122
+					this.depositCheck = true
123
+				}else{
124
+					this.depositCheck = false
125
+				}
126
+			},
109 127
 			// 打开科室选择
110 128
 			filterClick() {
111 129
 				this.isShowFilter = true
@@ -148,28 +166,29 @@
148 166
 						dept:{
149 167
 							id:this.deptId?this.deptId:userInfo.dept.id
150 168
 						},
151
-						id:userInfo.id
169
+						id:userInfo.id,
170
+						fixedStoredSpecimenRoom:this.depositCheck ? 1 : 0
152 171
 					},
153 172
 				}
154 173
 				post('/data/updData/user', query).then(res => {
155 174
 					uni.hideLoading();
156 175
 					this.filterCacel();
157
-					this.getNewDept()
176
+					this.getCurrentUserNow()
158 177
 					this.idx = 0
159 178
 					this.getList()
160 179
 				});
161 180
 			},
162
-			getNewDept(){
163
-				let postData = {
164
-				  currentHosId: this.hosId,
165
-				  loginType: "Wechat",
166
-				};
167
-				post('/auth/changeHospital',postData).then((result) => {
168
-				  if (result.status == 200) {
169
-						this.getCurrentUserNow();
170
-				  }
171
-				});
172
-			},
181
+			// getNewDept(){
182
+			// 	let postData = {
183
+			// 	  currentHosId: this.hosId,
184
+			// 	  loginType: "Wechat",
185
+			// 	};
186
+			// 	post('/auth/changeHospital',postData).then((result) => {
187
+			// 	  if (result.status == 200) {
188
+			// 			this.getCurrentUserNow();
189
+			// 	  }
190
+			// 	});
191
+			// },
173 192
 			// 获取当前用户信息
174 193
 			getCurrentUserNow() {
175 194
 			  get('/user/data/getCurrentUser').then((data) => {
@@ -179,9 +198,13 @@
179 198
 			      user.user.dept = data["data"].dept;
180 199
 			      user.user.currentHospital = data["data"].currentHospital;
181 200
 						this.userInfo.dept.dept = data["data"].dept.dept;
201
+						user.user.fixedStoredSpecimenRoom = data["data"].fixedStoredSpecimenRoom;
182 202
 						uni.setStorageSync('userData',user)
183 203
 						let userInfo = uni.getStorageSync('userData').user
184 204
 						this.isDept = this.specimenData.find(i=>i.id == userInfo.dept.id)
205
+						if(userInfo.fixedStoredSpecimenRoom!=null){
206
+							this.depositCheck = userInfo.fixedStoredSpecimenRoom == 1 ? true : false
207
+						}
185 208
 			    }
186 209
 			  });
187 210
 			},
@@ -197,7 +220,7 @@
197 220
 			},
198 221
 			// 查看详情
199 222
 			detail(item){
200
-				// this.padChange('979522445312\n')
223
+				// this.padChange('862420344832\n')
201 224
 				uni.navigateTo({
202 225
 				  url: `/pages/specimenPort/detail?detailId=${item.id}`
203 226
 				});
@@ -228,6 +251,9 @@
228 251
 								this.isShowFilter = true
229 252
 							}
230 253
 							let userInfo = uni.getStorageSync('userData').user
254
+							if(userInfo.fixedStoredSpecimenRoom!=null){
255
+								this.depositCheck = userInfo.fixedStoredSpecimenRoom == 1 ? true : false
256
+							}
231 257
 							this.isDept = this.specimenData.find(i=>i.id == userInfo.dept.id)
232 258
 							this.$nextTick(_=>{
233 259
 								if(this.isDept){
@@ -294,7 +320,15 @@
294 320
 					uni.hideLoading();
295 321
 					if(res.status==200){
296 322
 						let data = res.data[0]
297
-						let item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
323
+						let item = null
324
+						let str = null
325
+						if(scannerCode.indexOf(':')!=-1){
326
+							str = scannerCode.split(':')
327
+							item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == str[1])
328
+						}else{
329
+							item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
330
+						}
331
+						// let item = data.pathologySpecimenDTOList.find(i=>i.specimenCode == scannerCode)
298 332
 						if(!item.fixationTime && data.pathologyFormType==0){
299 333
 							if(data.status.value==2 || data.status.value==3 ||
300 334
 							data.status.value==4){