app代码提交
2
App.vue
@ -33,6 +33,7 @@
|
|||||||
// this.globalData.siteUrl = 'http://58.250.210.4:9090/'
|
// this.globalData.siteUrl = 'http://58.250.210.4:9090/'
|
||||||
// this.globalData.siteUrl = 'http://182.90.224.147:18170'//瑞士恒通
|
// this.globalData.siteUrl = 'http://182.90.224.147:18170'//瑞士恒通
|
||||||
// this.globalData.siteUrl = 'http://116.169.63.183:7070/'//三江
|
// this.globalData.siteUrl = 'http://116.169.63.183:7070/'//三江
|
||||||
|
// this.globalData.siteUrl = 'http://192.168.34.221:8188'//中建四局本地
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
@ -62,6 +63,7 @@
|
|||||||
// Vue.prototype.url_config = 'http://58.250.210.4:9090/'
|
// Vue.prototype.url_config = 'http://58.250.210.4:9090/'
|
||||||
// this.globalData.siteUrl = 'http://182.90.224.147:18170'//瑞士恒通
|
// this.globalData.siteUrl = 'http://182.90.224.147:18170'//瑞士恒通
|
||||||
// this.globalData.siteUrl = 'http://116.169.63.183:7070/'//三江
|
// this.globalData.siteUrl = 'http://116.169.63.183:7070/'//三江
|
||||||
|
// this.globalData.siteUrl = 'http://192.168.34.221:8188'//中建四局本地
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
2
main.js
@ -44,6 +44,7 @@ if (process.env.NODE_ENV === 'development') {
|
|||||||
// this.globalData.siteUrl = 'http://182.90.224.147:18170'//瑞士恒通
|
// this.globalData.siteUrl = 'http://182.90.224.147:18170'//瑞士恒通
|
||||||
// this.globalData.siteUrl = 'http://116.169.63.183:7070/'//三江
|
// this.globalData.siteUrl = 'http://116.169.63.183:7070/'//三江
|
||||||
// this.globalData.siteUrl = 'http://192.168.34.221:8088'//郭圣熊本地
|
// this.globalData.siteUrl = 'http://192.168.34.221:8088'//郭圣熊本地
|
||||||
|
// this.globalData.siteUrl = 'http://192.168.34.221:8188'//中建四局本地
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
@ -74,6 +75,7 @@ if (process.env.NODE_ENV === 'development') {
|
|||||||
// this.globalData.siteUrl = 'http://192.168.34.116:6023/'//邱平毅本地
|
// this.globalData.siteUrl = 'http://192.168.34.116:6023/'//邱平毅本地
|
||||||
// this.globalData.siteUrl = 'http://182.90.224.147:18170'//瑞士恒通
|
// this.globalData.siteUrl = 'http://182.90.224.147:18170'//瑞士恒通
|
||||||
// this.globalData.siteUrl = 'http://116.169.63.183:7070/'//三江
|
// this.globalData.siteUrl = 'http://116.169.63.183:7070/'//三江
|
||||||
|
// this.globalData.siteUrl = 'http://192.168.34.221:8188'//中建四局本地
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -28,7 +28,8 @@
|
|||||||
"FaceID" : {},
|
"FaceID" : {},
|
||||||
"Fingerprint" : {},
|
"Fingerprint" : {},
|
||||||
"Speech" : {},
|
"Speech" : {},
|
||||||
"Push" : {}
|
"Push" : {},
|
||||||
|
"Camera" : {}
|
||||||
},
|
},
|
||||||
/* 应用发布信息 */
|
/* 应用发布信息 */
|
||||||
"distribute" : {
|
"distribute" : {
|
||||||
|
|||||||
@ -6,28 +6,28 @@
|
|||||||
</view>
|
</view>
|
||||||
</headers>
|
</headers>
|
||||||
<view class="tab flex2">
|
<view class="tab flex2">
|
||||||
<view class="tabType" @click="changeTab(0)" :class="checkedTab==0?'checkedTab':'noCheckTab'">未开始</view>
|
<view class="tabType" @click.native="changeTab(0)" :class="checkedTab==0?'checkedTab':'noCheckTab'">未开始</view>
|
||||||
<view class="tabType" @click="changeTab(1)" :class="checkedTab==1?'checkedTab':'noCheckTab'">进行中</view>
|
<view class="tabType" @click.native="changeTab(1)" :class="checkedTab==1?'checkedTab':'noCheckTab'">进行中</view>
|
||||||
<view class="tabType" @click="changeTab(2)" :class="checkedTab==2?'checkedTab':'noCheckTab'">已完成</view>
|
<view class="tabType" @click.native="changeTab(2)" :class="checkedTab==2?'checkedTab':'noCheckTab'">已完成</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<view class="item" v-if="listData.length>0" v-for="(item,index) in listData" :key="index">
|
<view class="item" v-if="listData.length>0" v-for="(item,index) in listData" :key="index">
|
||||||
<view class="item_title">{{item.taskName}}</view>
|
<view class="item_title">{{item.taskName}}</view>
|
||||||
<view class="item_content" >计划时间:{{item.startDate}}-{{item.finishDate}}</view>
|
<view class="item_content">计划时间:{{item.startDate}}-{{item.finishDate}}</view>
|
||||||
<view class="item_content" v-if="checkedTab==2">实际时间:{{item.actualStartDate}}-{{item.actualFinishDate}}</view>
|
<view class="item_content" v-if="checkedTab==2">实际时间:{{item.actualStartDate}}-{{item.actualFinishDate}}
|
||||||
|
</view>
|
||||||
<view class="item_content" v-if="checkedTab==1">实际开始时间:{{item.actualStartDate}}</view>
|
<view class="item_content" v-if="checkedTab==1">实际开始时间:{{item.actualStartDate}}</view>
|
||||||
<view class="name">任务工期:{{item.duration}}</view>
|
<view class="name">任务工期:{{item.duration}}</view>
|
||||||
<view class="time">进度比例:{{item.progressRatio}}%</view>
|
<view class="time">进度比例:{{item.progressRatio}}%</view>
|
||||||
|
|
||||||
<view class="state"
|
<view class="state" :class="item.differDay==0?'stateTextColor3':'stateTextColor1'">
|
||||||
:class="item.differDay==0?'stateTextColor3':'stateTextColor1'">
|
|
||||||
{{item.status==0?'':item.status==1?'':item.differDay==0?'正常':`提前${item.differDay}天`}}
|
{{item.status==0?'':item.status==1?'':item.differDay==0?'正常':`提前${item.differDay}天`}}
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="state"
|
<!-- <view class="state"
|
||||||
:class="item.differDay==0?'stateTextColor3':'stateTextColor1'" v-if="checkedTab==2">
|
:class="item.differDay==0?'stateTextColor3':'stateTextColor1'" v-if="checkedTab==2">
|
||||||
{{item.differDay==0?'正常':`提前${item.differDay}天`}}
|
{{item.differDay==0?'正常':`提前${item.differDay}天`}}
|
||||||
</view> -->
|
</view> -->
|
||||||
|
|
||||||
<view class="state2" :class="{'state2':item.status==0,'state2':item.status==1,'state3':item.status==2}"
|
<view class="state2" :class="{'state2':item.status==0,'state2':item.status==1,'state3':item.status==2}"
|
||||||
@click="editStatus(item)">
|
@click="editStatus(item)">
|
||||||
{{item.status==0?'开始任务':item.status==1?'结束任务':''}}
|
{{item.status==0?'开始任务':item.status==1?'结束任务':''}}
|
||||||
@ -48,7 +48,7 @@
|
|||||||
return {
|
return {
|
||||||
type: 1,
|
type: 1,
|
||||||
listData: [],
|
listData: [],
|
||||||
checkedTab: 0,
|
checkedTab: 1,
|
||||||
condition: {
|
condition: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
@ -60,20 +60,22 @@
|
|||||||
finishDate: ',',
|
finishDate: ',',
|
||||||
actualFinishDate: '',
|
actualFinishDate: '',
|
||||||
teach: true,
|
teach: true,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
this.condition.projectSn = JSON.parse(uni.getStorageSync('projectDetail')).projectSn;
|
this.condition.projectSn = JSON.parse(uni.getStorageSync('projectDetail')).projectSn;
|
||||||
this.checkedTab=sessionStorage.getItem('currentIndex')
|
// this.checkedTab = sessionStorage.getItem('currentIndex')
|
||||||
|
this.getListData();
|
||||||
|
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
this.listData = [];
|
this.listData = [];
|
||||||
this.condition.pageNo = 1;
|
this.condition.pageNo = 1;
|
||||||
this.condition.pageSize = 10;
|
this.condition.pageSize = 10;
|
||||||
this.getListData();
|
// this.getListData();
|
||||||
},
|
},
|
||||||
//上拉触底时间
|
//上拉触底时间
|
||||||
onReachBottom() {
|
onReachBottom() {
|
||||||
@ -83,10 +85,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
//切换tab
|
//切换tab
|
||||||
changeTab(type) {
|
changeTab(type) {
|
||||||
sessionStorage.setItem('currentIndex', type)
|
// sessionStorage.setItem('currentIndex', type)
|
||||||
this.checkedTab = type;
|
this.checkedTab = type;
|
||||||
this.condition.status = type;
|
this.condition.status = type;
|
||||||
this.condition.pageNo = 1;
|
this.condition.pageNo = 1;
|
||||||
@ -103,6 +105,7 @@
|
|||||||
this.condition.duration = ''
|
this.condition.duration = ''
|
||||||
this.condition.progressRatio = ''
|
this.condition.progressRatio = ''
|
||||||
this.status = 0
|
this.status = 0
|
||||||
|
|
||||||
|
|
||||||
} else if (this.checkedTab == 1) {
|
} else if (this.checkedTab == 1) {
|
||||||
this.condition.taskName = ''
|
this.condition.taskName = ''
|
||||||
@ -167,21 +170,34 @@
|
|||||||
arr.actualFinishDate = time
|
arr.actualFinishDate = time
|
||||||
|
|
||||||
}
|
}
|
||||||
this.sendRequest({
|
uni.showModal({
|
||||||
url: 'xmgl/progressTask/updateProgressTask',
|
title: '提示',
|
||||||
method: 'post',
|
content: '确定提交该操作吗?',
|
||||||
data: arr,
|
showCancel: true, // 不显示取消按钮
|
||||||
success: res => {
|
success(res) {
|
||||||
uni.showToast({
|
if (res.confirm) {
|
||||||
title: '状态编辑成功',
|
_this.sendRequest({
|
||||||
duration: 2000,
|
url: 'xmgl/progressTask/updateProgressTask',
|
||||||
})
|
method: 'post',
|
||||||
setTimeout(() => {
|
data: arr,
|
||||||
this.$router.go(0)
|
success: res => {
|
||||||
}, 500)
|
uni.showToast({
|
||||||
}
|
title: '状态编辑成功',
|
||||||
|
duration: 2000,
|
||||||
|
})
|
||||||
|
setTimeout(() => {
|
||||||
|
_this.$router.go(0)
|
||||||
|
}, 500)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -199,7 +215,7 @@
|
|||||||
height: 45px;
|
height: 45px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
box-shadow: 0 0 10px rgba(194, 194, 194, 0.5);
|
box-shadow: 0 0 10px rgba(194, 194, 194, 0.5);
|
||||||
position: fixed;
|
/* position: fixed; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabType {
|
.tabType {
|
||||||
@ -240,7 +256,7 @@
|
|||||||
|
|
||||||
.item_title {
|
.item_title {
|
||||||
margin: 10px 10px;
|
margin: 10px 10px;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item_content {
|
.item_content {
|
||||||
@ -259,14 +275,14 @@
|
|||||||
/* padding: 20px 30rpx 0; */
|
/* padding: 20px 30rpx 0; */
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-top: 15%;
|
margin-top: 5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.state {
|
.state {
|
||||||
|
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
margin-top: -42%;
|
margin-top: -42%;
|
||||||
margin-left: 85%;
|
margin-left: 85%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.state2 {
|
.state2 {
|
||||||
@ -277,8 +293,8 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
margin-left: 260px;
|
margin-left: 230px;
|
||||||
margin-top: 125px;
|
margin-top: 125px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -300,10 +316,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.headerName {
|
.headerName {
|
||||||
width: calc(113% - 50px);
|
/* width: calc(113% - 50px);
|
||||||
background: #4181fe;
|
background: #4181fe;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
padding-left: 0 !important;
|
padding-left: 0 !important; */
|
||||||
position: fixed;
|
/* position: fixed; */
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
6
unpackage/dist/build/app-plus/app-service.js
vendored
2
unpackage/dist/build/app-plus/app-view.js
vendored
2
unpackage/dist/build/app-plus/manifest.json
vendored
@ -1 +1 @@
|
|||||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__7B68D44","name":"智慧工地云","version":{"name":"1.2.4","code":124},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Maps":{"coordType":"gcj02"},"VideoPlayer":{},"Bluetooth":{},"SQLite":{},"FaceID":{},"Fingerprint":{},"Speech":{},"Push":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"light","background":"#F0AD4E"},"usingComponents":true,"nvueCompiler":"uni-app","compilerVersion":3,"compatible":{"ignoreVersion":true},"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"splashscreen":{"android":{"hdpi":"C:/Users/86173/Desktop/6d9e3eaea01d7138ad9cffaf4739cf0.png","xhdpi":"C:/Users/86173/Desktop/6d9e3eaea01d7138ad9cffaf4739cf0.png","xxhdpi":"C:/Users/86173/Desktop/6d9e3eaea01d7138ad9cffaf4739cf0.png"},"iosStyle":"common","ios":{"storyboard":"D:/work/JXJ2/unpackage/CustomStoryboard.zip","iphone":{"portrait-896h@3x":"C:/Users/86173/Desktop/6d9e3eaea01d7138ad9cffaf4739cf0.png"}},"useOriginalMsgbox":false,"androidStyle":"common"},"google":{"permissions":["<uses-feature android:name=\"android.hardware.camera\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_CHECKIN_PROPERTIES\"/>","<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.BLUETOOTH_PRIVILEGED\"/>","<uses-permission android:name=\"android.permission.CALL_PHONE\"/>","<uses-permission android:name=\"android.permission.CALL_PRIVILEGED\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.INTERNET\"/>","<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>","<uses-permission android:name=\"android.permission.USE_FINGERPRINT\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{"idfa":false,"dSYMs":false},"plugins":{"maps":{"amap":{"appkey_ios":"9510eb01b56e6428646b256cc379f695","appkey_android":"fdc95509666dff9deb22e57dedd29550","key":"3b060f3a0ce4bafebeba1621dcd99c31"}},"ad":{},"geolocation":{},"speech":{"ifly":{}},"push":{"unipush":{}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"nativePlugins":{},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.6.18","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html"}}
|
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__7B68D44","name":"智慧工地云","version":{"name":"1.2.4","code":124},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Maps":{"coordType":"gcj02"},"VideoPlayer":{},"Bluetooth":{},"SQLite":{},"FaceID":{},"Fingerprint":{},"Speech":{},"Push":{},"Camera":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"light","background":"#F0AD4E"},"usingComponents":true,"nvueCompiler":"uni-app","compilerVersion":3,"compatible":{"ignoreVersion":true},"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"splashscreen":{"android":{"hdpi":"C:/Users/86173/Desktop/6d9e3eaea01d7138ad9cffaf4739cf0.png","xhdpi":"C:/Users/86173/Desktop/6d9e3eaea01d7138ad9cffaf4739cf0.png","xxhdpi":"C:/Users/86173/Desktop/6d9e3eaea01d7138ad9cffaf4739cf0.png"},"iosStyle":"common","ios":{"storyboard":"D:/work/JXJ2/unpackage/CustomStoryboard.zip","iphone":{"portrait-896h@3x":"C:/Users/86173/Desktop/6d9e3eaea01d7138ad9cffaf4739cf0.png"}},"useOriginalMsgbox":false,"androidStyle":"common"},"google":{"permissions":["<uses-feature android:name=\"android.hardware.camera\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_CHECKIN_PROPERTIES\"/>","<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.BLUETOOTH_PRIVILEGED\"/>","<uses-permission android:name=\"android.permission.CALL_PHONE\"/>","<uses-permission android:name=\"android.permission.CALL_PRIVILEGED\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.INTERNET\"/>","<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>","<uses-permission android:name=\"android.permission.USE_FINGERPRINT\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{"idfa":false,"dSYMs":false},"plugins":{"maps":{"amap":{"appkey_ios":"9510eb01b56e6428646b256cc379f695","appkey_android":"fdc95509666dff9deb22e57dedd29550","key":"3b060f3a0ce4bafebeba1621dcd99c31"}},"ad":{},"geolocation":{},"speech":{"ifly":{}},"push":{"unipush":{}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"nativePlugins":{},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.6.18","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html"}}
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
BIN
unpackage/dist/build/app-plus/static/sjjt_syzl-tab.png
vendored
Normal file
|
After Width: | Height: | Size: 668 B |
BIN
unpackage/dist/build/app-plus/static/sjjt_syzl.png
vendored
Normal file
|
After Width: | Height: | Size: 542 B |
2
unpackage/dist/build/h5/index.html
vendored
@ -1,2 +1,2 @@
|
|||||||
<!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><title>智慧工地云</title><script>var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
|
<!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><title>智慧工地云</title><script>var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
|
||||||
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel=stylesheet href=/zjsjAPP/static/index.a5c69d49.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/zjsjAPP/static/js/chunk-vendors.7dbf19e7.js></script><script src=/zjsjAPP/static/js/index.302b5555.js></script></body></html>
|
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel=stylesheet href=/zjsjAPP/static/index.5841170f.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/zjsjAPP/static/js/chunk-vendors.033df402.js></script><script src=/zjsjAPP/static/js/index.5f6824da.js></script></body></html>
|
||||||
BIN
unpackage/dist/build/h5/static/CanvarsImg.png
vendored
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
unpackage/dist/build/h5/static/img/CanvarsImg.8e134d85.png
vendored
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
unpackage/dist/build/h5/static/img/addImg.82b8974d.png
vendored
Normal file
|
After Width: | Height: | Size: 11 KiB |
1
unpackage/dist/build/h5/static/index.5841170f.css
vendored
Normal file
7
unpackage/dist/build/h5/static/js/chunk-vendors.033df402.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/index.5f6824da.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-alarmPage-index.6d77bc86.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-areaTree-areaTree.fa601840.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-businessCenter-index.80fc4b8b.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-deviceManage-deviceManage.1cf84182.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-elevatorEscalation-elevatorEscalation.9307811f.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-errorAction-errorAction.c3232b36.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-fileList-fileList.420e00e8.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-fileManage-fileManage.4aefa78d.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-index-index.59c24789.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-index-index~pages-my-my.0b3a2694.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-login-login.be575581.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-markRoomManage-markRoomManage.398a2b8f.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-messageCenter-messageCenter.41be9d2d.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-my-messageCenter.5bf3ba78.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-my-messageCenter"],{1830:function(n,t,e){"use strict";e.d(t,"b",(function(){return u})),e.d(t,"c",(function(){return r})),e.d(t,"a",(function(){}));var u=function(){var n=this.$createElement,t=this._self._c||n;return t("div")},r=[]},"36f3":function(n,t){},6436:function(n,t,e){"use strict";e.r(t);var u=e("36f3"),r=e.n(u);for(var f in u)["default"].indexOf(f)<0&&function(n){e.d(t,n,(function(){return u[n]}))}(f);t["default"]=r.a},af1d:function(n,t,e){"use strict";e.r(t);var u=e("1830"),r=e("6436");for(var f in r)["default"].indexOf(f)<0&&function(n){e.d(t,n,(function(){return r[n]}))}(f);var i=e("f0c5"),c=Object(i["a"])(r["default"],u["b"],u["c"],!1,null,"98425852",null,!1,u["a"],void 0);t["default"]=c.exports}}]);
|
||||||
@ -1 +0,0 @@
|
|||||||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-my-messageCenter"],{4013:function(n,t,e){"use strict";var r;e.d(t,"b",(function(){return u})),e.d(t,"c",(function(){return c})),e.d(t,"a",(function(){return r}));var u=function(){var n=this,t=n.$createElement,e=n._self._c||t;return e("div")},c=[]},a13e:function(n,t,e){"use strict";e.r(t);var r=e("ccdd"),u=e.n(r);for(var c in r)"default"!==c&&function(n){e.d(t,n,(function(){return r[n]}))}(c);t["default"]=u.a},ae58:function(n,t,e){"use strict";e.r(t);var r=e("4013"),u=e("a13e");for(var c in u)"default"!==c&&function(n){e.d(t,n,(function(){return u[n]}))}(c);var a,f=e("f0c5"),i=Object(f["a"])(u["default"],r["b"],r["c"],!1,null,"4dfb3cf5",null,!1,r["a"],a);t["default"]=i.exports},ccdd:function(n,t){}}]);
|
|
||||||
1
unpackage/dist/build/h5/static/js/pages-my-my.e4bdc776.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-my-my"],{d021:function(o,n,d){"use strict";d.r(n);var i=d("f0c5"),e=Object(i["a"])({},void 0,void 0,!1,null,null,null,!1,void 0,void 0);n["default"]=e.exports}}]);
|
||||||
@ -1 +0,0 @@
|
|||||||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-my-versionInfo"],{"087b":function(t,n,e){"use strict";e.r(n);var a=e("433c"),r=e.n(a);for(var s in a)"default"!==s&&function(t){e.d(n,t,(function(){return a[t]}))}(s);n["default"]=r.a},"0912":function(t,n,e){"use strict";var a=e("7782"),r=e.n(a);r.a},"3b61":function(t,n,e){"use strict";e.r(n);var a=e("f4e2"),r=e("087b");for(var s in r)"default"!==s&&function(t){e.d(n,t,(function(){return r[t]}))}(s);e("0912");var o,u=e("f0c5"),i=Object(u["a"])(r["default"],a["b"],a["c"],!1,null,"461b0680",null,!1,a["a"],o);n["default"]=i.exports},"433c":function(t,n,e){"use strict";var a=e("4ea4");Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var r=a(e("9931")),s={props:["showBack","themeType"],components:{uniIcons:r.default},data:function(){return{mobileTopHeight:0}},mounted:function(){var t=this;uni.getSystemInfo({success:function(n){t.mobileTopHeight=n.statusBarHeight,uni.setStorageSync("systemInfo",n),console.log(n)}}),console.log("this.mobileTopHeight",this.mobileTopHeight)},methods:{goBackFn:function(){uni.navigateBack({success:function(){}})}}};n.default=s},"49a8":function(t,n,e){"use strict";e.r(n);var a=e("bacd"),r=e("fef1");for(var s in r)"default"!==s&&function(t){e.d(n,t,(function(){return r[t]}))}(s);var o,u=e("f0c5"),i=Object(u["a"])(r["default"],a["b"],a["c"],!1,null,"6c4f5a08",null,!1,a["a"],o);n["default"]=i.exports},7782:function(t,n,e){var a=e("c58a");"string"===typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);var r=e("4f06").default;r("ee2056aa",a,!0,{sourceMap:!1,shadowMode:!1})},aef9:function(t,n,e){"use strict";var a=e("4ea4");Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var r=a(e("3b61")),s={components:{headers:r.default},data:function(){return{}},methods:{}};n.default=s},bacd:function(t,n,e){"use strict";e.d(n,"b",(function(){return r})),e.d(n,"c",(function(){return s})),e.d(n,"a",(function(){return a}));var a={headers:e("3b61").default},r=function(){var t=this,n=t.$createElement,e=t._self._c||n;return e("v-uni-view",{staticClass:"fullHeight"},[e("headers",{attrs:{showBack:!0}},[e("v-uni-view",{staticClass:"headerName"},[t._v("版本信息")])],1),e("v-uni-scroll-view",{staticClass:"pageContent",attrs:{"scroll-y":"true"}},[e("v-uni-view",[t._v("444")])],1)],1)},s=[]},c58a:function(t,n,e){var a=e("24fb");n=a(!1),n.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.statusBar[data-v-461b0680]{background-color:#2a2b5b}.whiteHeaderBox .statusBar[data-v-461b0680]{background-color:#2b8df3}',""]),t.exports=n},f4e2:function(t,n,e){"use strict";e.d(n,"b",(function(){return r})),e.d(n,"c",(function(){return s})),e.d(n,"a",(function(){return a}));var a={uniIcons:e("9931").default},r=function(){var t=this,n=t.$createElement,e=t._self._c||n;return e("v-uni-view",{class:t.themeType?"whiteHeaderBox":""},[e("v-uni-view",{staticClass:"statusBar",style:{height:t.mobileTopHeight+"px"}}),e("v-uni-view",{staticClass:"headerBox"},[e("uni-icons",{directives:[{name:"show",rawName:"v-show",value:t.showBack,expression:"showBack"}],staticClass:"backImg",attrs:{type:"arrowleft",size:"24"},on:{click:function(n){arguments[0]=n=t.$handleEvent(n),t.goBackFn.apply(void 0,arguments)}}}),t._t("default")],2)],1)},s=[]},fef1:function(t,n,e){"use strict";e.r(n);var a=e("aef9"),r=e.n(a);for(var s in a)"default"!==s&&function(t){e.d(n,t,(function(){return a[t]}))}(s);n["default"]=r.a}}]);
|
|
||||||
1
unpackage/dist/build/h5/static/js/pages-my-versionInfo.f25bbb4d.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-my-versionInfo","pages-my-my"],{"0627":function(t,n,e){"use strict";e("7a82");var a=e("4ea4").default;Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var r=a(e("f9d8")),i={components:{headers:r.default},data:function(){return{}},methods:{}};n.default=i},"0a7b":function(t,n,e){"use strict";var a=e("2009"),r=e.n(a);r.a},2009:function(t,n,e){var a=e("4313");a.__esModule&&(a=a.default),"string"===typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);var r=e("4f06").default;r("cd34fa7e",a,!0,{sourceMap:!1,shadowMode:!1})},2057:function(t,n,e){"use strict";e.d(n,"b",(function(){return r})),e.d(n,"c",(function(){return i})),e.d(n,"a",(function(){return a}));var a={uniIcons:e("d021").default},r=function(){var t=this,n=t.$createElement,e=t._self._c||n;return e("v-uni-view",{class:t.themeType?"whiteHeaderBox":""},[e("v-uni-view",{staticClass:"statusBar",style:{height:t.mobileTopHeight+"px"}}),e("v-uni-view",{staticClass:"headerBox"},[e("uni-icons",{directives:[{name:"show",rawName:"v-show",value:t.showBack,expression:"showBack"}],staticClass:"backImg",attrs:{type:"arrowleft",size:"24"},on:{click:function(n){arguments[0]=n=t.$handleEvent(n),t.goBackFn.apply(void 0,arguments)}}}),t._t("default")],2)],1)},i=[]},"39db":function(t,n,e){"use strict";e.r(n);var a=e("0627"),r=e.n(a);for(var i in a)["default"].indexOf(i)<0&&function(t){e.d(n,t,(function(){return a[t]}))}(i);n["default"]=r.a},4313:function(t,n,e){var a=e("24fb");n=a(!1),n.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.statusBar[data-v-929d0930]{background-color:#2a2b5b}.whiteHeaderBox .statusBar[data-v-929d0930]{background-color:#2b8df3}',""]),t.exports=n},a273:function(t,n,e){"use strict";e.r(n);var a=e("aa69"),r=e("39db");for(var i in r)["default"].indexOf(i)<0&&function(t){e.d(n,t,(function(){return r[t]}))}(i);var s=e("f0c5"),o=Object(s["a"])(r["default"],a["b"],a["c"],!1,null,"7a455da6",null,!1,a["a"],void 0);n["default"]=o.exports},aa69:function(t,n,e){"use strict";e.d(n,"b",(function(){return r})),e.d(n,"c",(function(){return i})),e.d(n,"a",(function(){return a}));var a={headers:e("f9d8").default},r=function(){var t=this.$createElement,n=this._self._c||t;return n("v-uni-view",{staticClass:"fullHeight"},[n("headers",{attrs:{showBack:!0}},[n("v-uni-view",{staticClass:"headerName"},[this._v("版本信息")])],1),n("v-uni-scroll-view",{staticClass:"pageContent",attrs:{"scroll-y":"true"}},[n("v-uni-view",[this._v("444")])],1)],1)},i=[]},c07a:function(t,n,e){"use strict";e("7a82");var a=e("4ea4").default;Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var r=a(e("d021")),i={props:["showBack","themeType"],components:{uniIcons:r.default},data:function(){return{mobileTopHeight:0}},mounted:function(){var t=this;uni.getSystemInfo({success:function(n){t.mobileTopHeight=n.statusBarHeight,uni.setStorageSync("systemInfo",n),console.log(n)}}),console.log("this.mobileTopHeight",this.mobileTopHeight)},methods:{goBackFn:function(){uni.navigateBack({success:function(){}})}}};n.default=i},d021:function(t,n,e){"use strict";e.r(n);var a=e("f0c5"),r=Object(a["a"])({},void 0,void 0,!1,null,null,null,!1,void 0,void 0);n["default"]=r.exports},ec82:function(t,n,e){"use strict";e.r(n);var a=e("c07a"),r=e.n(a);for(var i in a)["default"].indexOf(i)<0&&function(t){e.d(n,t,(function(){return a[t]}))}(i);n["default"]=r.a},f9d8:function(t,n,e){"use strict";e.r(n);var a=e("2057"),r=e("ec82");for(var i in r)["default"].indexOf(i)<0&&function(t){e.d(n,t,(function(){return r[t]}))}(i);e("0a7b");var s=e("f0c5"),o=Object(s["a"])(r["default"],a["b"],a["c"],!1,null,"929d0930",null,!1,a["a"],void 0);n["default"]=o.exports}}]);
|
||||||