safecheck-client 3.0.32-35 → 3.0.32-37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/android/PhoneUpUserinfo.vue +1230 -1230
- package/src/components/map/checkScreen.vue +1 -1
- package/src/filiale/Util.js +7 -0
- package/src/filiale/ankangyihua/android/AndroidDefectDeal.vue +1 -1
- package/src/filiale/ankangyihua/android/CurrentCreate.vue +1 -1
- package/src/filiale/bayan/pc/NewCheckpaper.vue +1 -1
- package/src/filiale/dexin/android/SafecheckOrderV.vue +2851 -2851
- package/src/filiale/fugou/pc/DefectPaperNew.vue +1 -1
- package/src/filiale/fugou/pc/PlanManage.vue +1007 -1019
- package/src/filiale/jingyang/android/AddPlanItem.vue +246 -246
- package/src/filiale/jingyang/android/CurrentCreate.vue +18 -18
- package/src/filiale/jingyang/android/SafecheckOrderV.vue +2281 -2281
- package/src/filiale/jingyang/android/SafecheckUserInfo.vue +1 -0
- package/src/filiale/jingyang/android.js +4 -0
- package/src/filiale/kelai/android/SafecheckDevices.vue +1 -1
- package/src/filiale/qianneng/pc/NewCheckpaper.vue +1 -1
- package/src/filiale/rongchuang/android/SafecheckDevices.vue +1680 -0
- package/src/filiale/rongchuang/android/SafecheckOrderV.vue +975 -488
- package/src/filiale/shanxian/android/SafecheckOrderV.vue +1 -1
- package/src/filiale/tongchuan/pc/CheckPlanCountChartArea.vue +1 -1
- package/src/filiale/yangchunboneng/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/yangchunboneng/pc/CheckBookUser.vue +3 -3
- package/src/main.js +33 -33
@@ -227,7 +227,7 @@ export default {
|
|
227
227
|
source: `root.getResourceById($${this.$login.f.orgid}$,$organization$).getSpecialResByType($user$).where(row.getAttributes().get($rolestr$).indexOf($需要定位人员$) != -1)`,
|
228
228
|
userid: this.$login.f.id
|
229
229
|
}, {resolveMsg: null, rejectMsg: null})
|
230
|
-
|
230
|
+
|
231
231
|
let arr1 = await new HttpResetClass().load('GET', `/rs/safePsoition/getPosition`, {}, {
|
232
232
|
resolveMsg: null,
|
233
233
|
rejectMsg: null
|
package/src/filiale/Util.js
CHANGED
@@ -20,6 +20,13 @@ export function getAttendanceState(item, timeToWork, timeToGo) {
|
|
20
20
|
item.f_state = '正常'
|
21
21
|
}
|
22
22
|
|
23
|
+
export function dateAddDay (date, day) {
|
24
|
+
date.setDate(date.getDate() + Number.parseInt(day));
|
25
|
+
let month = date.getMonth()+1
|
26
|
+
let date2 = date.getDate()
|
27
|
+
return date.getFullYear() + '-' + (month<10? '0'+ month : month) + '-' + (date2<10? '0'+ date2 : date2)
|
28
|
+
}
|
29
|
+
|
23
30
|
// 字符串进行解密
|
24
31
|
export function uncompileStr (code) {
|
25
32
|
code = unescape(code)
|