上报地址变更

main
zhangqun 3 years ago
parent bc49799595
commit 622086f18e
  1. 91
      App.vue
  2. 2
      manifest.json
  3. 26
      pages/index/index.vue
  4. 10
      pages/patrolRecord/list.vue
  5. 2
      pages/patrolRecord/report.vue
  6. 6
      pages/positionRecord/list.vue
  7. 15
      pages/setting/other.vue
  8. 15
      pages/setting/user.vue
  9. 10
      pages/voiceRecord/list.vue
  10. 2
      pages/voiceRecord/report.vue
  11. BIN
      unpackage/cache/apk/__UNI__B814B58_cm.apk
  12. 2
      unpackage/cache/apk/apkurl
  13. 2
      unpackage/cache/apk/cmManifestCache.json
  14. 4
      unpackage/cache/wgt/__UNI__B814B58/app-service.js
  15. 2
      unpackage/cache/wgt/__UNI__B814B58/app-view.js
  16. 2
      unpackage/cache/wgt/__UNI__B814B58/manifest.json
  17. 4
      unpackage/dist/build/app-plus/app-service.js
  18. 2
      unpackage/dist/build/app-plus/app-view.js
  19. 2
      unpackage/dist/build/app-plus/manifest.json
  20. 34
      unpackage/dist/dev/app-plus/app-service.js
  21. 9
      unpackage/dist/dev/app-plus/app-view.js
  22. 2
      unpackage/dist/dev/app-plus/manifest.json
  23. BIN
      unpackage/release/apk/__UNI__B814B58__20230817090530.apk
  24. BIN
      unpackage/release/apk/__UNI__B814B58__20230817093749.apk
  25. BIN
      unpackage/release/apk/__UNI__B814B58__20230822093108.apk

@ -6,7 +6,7 @@
} from "@/util/date.js";
export default {
globalData: {
apiUrl: 'http://192.168.3.32:81', //
apiUrl: 'http://192.168.1.102:81', //
mobileUrl: 'http://172.19.2.177:8081', //
fileUrl: 'http://192.168.3.32:1888' //
},
@ -21,36 +21,36 @@
},
onLaunch: function() {
console.log('App Launch');
this.onKeep();
/********设置开机自动启动开始********/
// this.onKeep();
this.requestAndroidPermission().then(res => {
if (res == 0) {
let userInfo = uni.getStorageSync('mobileInfo') ? JSON.parse(uni.getStorageSync('mobileInfo')) : null;
if (userInfo && userInfo.employeeId != this.employeeId) {
this.employeeId = userInfo.employeeId;
} else {
uni.navigateTo({
url: '/pages/setting/user'
})
}
} else {
uni.showModal({
title: '是否忽略电池优化',
content: '忽略后才能在后台保持连接接收消息通知,请前往设置!',
confirmText: '去设置',
success: (res) => {
if (res.confirm) {
var main = plus.android.runtimeMainActivity();
var Intent = plus.android.importClass('android.content.Intent'); //
var Settings = plus.android.importClass('android.provider.Settings'); //
var intent = new Intent(Intent.ACTION_POWER_USAGE_SUMMARY); //
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
main.startActivity(intent); //
}
}
});
}
});
// this.requestAndroidPermission().then(res => {
// if (res == 0) {
// let userInfo = uni.getStorageSync('mobileInfo') ? JSON.parse(uni.getStorageSync('mobileInfo')) : null;
// if (userInfo && userInfo.employeeId != this.employeeId) {
// this.employeeId = userInfo.employeeId;
// } else {
// uni.navigateTo({
// url: '/pages/setting/user'
// })
// }
// } else {
// // uni.showModal({
// // title: '',
// // content: '',
// // confirmText: '',
// // success: (res) => {
// // if (res.confirm) {
// // var main = plus.android.runtimeMainActivity();
// // var Intent = plus.android.importClass('android.content.Intent'); //
// // var Settings = plus.android.importClass('android.provider.Settings'); //
// // var intent = new Intent(Intent.ACTION_POWER_USAGE_SUMMARY); //
// // intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
// // main.startActivity(intent); //
// // }
// // }
// // });
// }
// });
/********设置开机自动启动结束********/
},
beforeDestroy() {
@ -63,24 +63,26 @@
if (userInfo && userInfo.employeeId != this.employeeId) {
this.employeeId = userInfo.employeeId;
this.getStatus();
this.subStatus();
// this.subStatus();
}else{
// uni.navigateTo({
// url: '/pages/setting/user'
// })
}
},
onHide: function() {
console.log('App Hide', this.employeeId);
if (this.employeeId) {
this.sendMsg();
this.getStatus();
// this.getStatus();
this.receiveMsg();
this.subStatus();
this.subStatus(1);
} else {
let userInfo = uni.getStorageSync('mobileInfo') ? JSON.parse(uni.getStorageSync('mobileInfo')) : null;
if (userInfo && userInfo.employeeId != this.employeeId) {
this.employeeId = userInfo.employeeId;
this.sendMsg();
this.getStatus();
// this.getStatus();
this.receiveMsg();
this.subStatus();
this.subStatus(2);
}
}
},
@ -126,18 +128,11 @@
console.log(res);
});
},
subStatus() {
subStatus(num) {
// websocket
console.log('监听状态')
websocket.subStatus(res => {
console.log("监听 websocket 连接状态", res);
keepAlive.onShowNotify({
ID: new Date().getTime(),
title: "监听 websocket 连接状态",
content: res.serviceStatus + ' - ' + res.websocketStatus,
},
(res) => {});
if (res.serviceStatus && !res.websocketStatus) {
console.log("监听 websocket 连接状态"+num, res);
if (!res.websocketStatus) {
this.stop();
this.timer && clearTimeout(this.timer);
this.timer = setTimeout(() => {
@ -164,7 +159,7 @@
//
keepAlive.onKeep({
title: "齐鲁医院报警通知",
content: "保持通知",
content: "保持运行",
isRouge: true
},
(res) => {

@ -47,6 +47,8 @@
"<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.REBOOT\"/>",
"<uses-permission android:name=\"android.permission.RECEIVE_BOOT_COMPLETED\"/>",
"<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>",
"<uses-permission android:name=\"android.permission.USE_CREDENTIALS\"/>",
"<uses-permission android:name=\"android.permission.VIBRATE\"/>",

@ -5,15 +5,15 @@
<cover-view class="act-btn">
<cover-view class="act-btn-item" style="padding-top: 20upx;">
<cover-image src="../../static/right_icon1.png" class="img" @click="goMessage"></cover-image>
<cover-view @click="goMessage">消息</cover-view>
<cover-view class="txt" @click="goMessage">消息</cover-view>
</cover-view>
<cover-view class="act-btn-item">
<cover-image src="@/static/right_icon2.png" class="img" @click="goRecord"></cover-image>
<cover-view @click="goRecord">记录</cover-view>
<cover-view class="txt" @click="goRecord">记录</cover-view>
</cover-view>
<cover-view class="act-btn-item">
<cover-image src="@/static/right_icon3.png" class="img" @click="goSetting"></cover-image>
<cover-view @click="goSetting">设置</cover-view>
<cover-view class="txt" @click="goSetting">设置</cover-view>
</cover-view>
</cover-view>
<!-- 上报工具栏 -->
@ -156,22 +156,17 @@
.act-btn {
position: fixed;
width: 67upx;
height: 259upx;
height: 280upx;
right: 30upx;
top: 38upx;
top: 19upx;
background: #FFFFFF;
box-shadow: 1px 4px 6px 1px rgba(0, 0, 0, 0.22);
box-shadow: 1upx 4upx 6upx 1upx rgba(0, 0, 0, 0.22);
border-radius: 20upx;
padding: 10upx;
.act-btn-item {
padding: 6upx;
border-bottom: 1px solid #D6D8DF;
font-size: 20upx;
font-family: PingFang SC-Regular, PingFang SC;
font-weight: 400;
color: #031945;
line-height: 28upx;
border-bottom: 2upx solid #D6D8DF;
text-align: center;
.img {
@ -179,6 +174,13 @@
height: 44upx;
margin: 0 auto;
}
.txt{
font-size: 20upx;
font-family: PingFang SC-Regular, PingFang SC;
font-weight: 400;
color: #031945;
line-height: 28upx;
}
}
}

@ -21,7 +21,7 @@
<view class="txt" style="margin-bottom: 20upx;">纬度{{item.latidute}}</view>
<view class="txt">{{item.planTypeName}}</view>
<view>
<image v-for="(photo, idx) in item.fileList" :key="'photo'+idx" @click="previewImg(photo)" :src="fileUrl + photo" mode="scaleToFill"
<image v-for="(photo, idx) in item.attaches" :key="'photo'+idx" @click="previewImg(photo.link)" :src="photo.link" mode="scaleToFill"
class="img"></image>
</view>
</view>
@ -69,9 +69,9 @@
method: 'GET',
success: (res) => {
if(res.data.code == 200){
res.data.data.records.forEach(item => {
item.fileList = item.url ? item.url.split(",") : [];
})
// res.data.data.records.forEach(item => {
// item.fileList = item.url ? item.url.split(",") : [];
// })
this.dataList = this.dataList.concat(res.data.data.records);
console.log(this.dataList)
if(res.data.data.records.length == 0 || res.data.data.total < this.size){
@ -100,7 +100,7 @@
//
previewImg(url) {
uni.previewImage({
urls: [this.fileUrl + url],
urls: [url],
});
}
}

@ -221,7 +221,7 @@
reportIot(files) {
let _arr = [];
files.forEach(item => {
_arr.push({url:getApp().globalData.fileUrl + item});
_arr.push({url: item});
})
let data = {
"alarmTypeIdentity": "700006",

@ -63,9 +63,9 @@
method: 'GET',
success: (res) => {
if(res.data.code == 200){
res.data.data.records.forEach(item => {
item.fileList = item.url ? item.url.split(",") : [];
})
// res.data.data.records.forEach(item => {
// item.fileList = item.url ? item.url.split(",") : [];
// })
this.dataList = this.dataList.concat(res.data.data.records);
console.log(this.dataList)
if(res.data.data.records.length == 0 || res.data.data.total < this.size){

@ -239,19 +239,6 @@
}
}
.submit-btn {
display: block;
color: #338AF8;
font-size: 28upx;
font-family: PingFang SC-Regular, PingFang SC;
font-weight: 400;
line-height: 66upx;
text-align: center;
background: #E5F0FF;
border-radius: 20upx;
border: 1px solid #338AF8;
}
.tab-switch {
display: flex;
justify-content: flex-end;
@ -291,7 +278,7 @@
bottom: 100upx;
.submit-btn{
color: #FFFFFF;
font-size: 28px;
font-size: 22px;
font-family: PingFang SC-Regular, PingFang SC;
font-weight: 400;
line-height: 90upx;

@ -195,19 +195,6 @@
}
}
.submit-btn {
display: block;
color: #338AF8;
font-size: 28upx;
font-family: PingFang SC-Regular, PingFang SC;
font-weight: 400;
line-height: 66upx;
text-align: center;
background: #E5F0FF;
border-radius: 20upx;
border: 1px solid #338AF8;
}
.tab-switch {
display: flex;
justify-content: flex-end;
@ -247,7 +234,7 @@
bottom: 100upx;
.submit-btn{
color: #FFFFFF;
font-size: 28px;
font-size: 22px;
font-family: PingFang SC-Regular, PingFang SC;
font-weight: 400;
line-height: 90upx;

@ -15,7 +15,7 @@
<view class="record-cnt">
<image class="img" src="@/static/record-icon1.png"></image>
<view class="cnt">
<view @click="playVoice(voice)" class="voice-box" v-for="(voice, idx) in item.fileList" :key="'voice'+idx">
<view @click="playVoice(voice.link)" class="voice-box" v-for="(voice, idx) in item.attaches" :key="'voice'+idx">
<!-- <view class="voice-mins">{{item.duration || 0}}</view> -->
</view>
<view class="txt" style="margin-bottom: 20upx;">{{item.buildId?item.buildId+'号楼':''}}{{item.floorNo?item.floorNo+'层':''}}</view>
@ -66,7 +66,7 @@
}
else{
console.log('播放录音');
this.innerAudioContext.src = this.fileUrl + url;
this.innerAudioContext.src = url;
this.innerAudioContext.play();
this.isPlaying = true;
}
@ -85,9 +85,9 @@
method: 'GET',
success: (res) => {
if(res.data.code == 200){
res.data.data.records.forEach(item => {
item.fileList = item.url ? item.url.split(",") : [];
})
// res.data.data.records.forEach(item => {
// item.fileList = item.url ? item.url.split(",") : [];
// })
this.dataList = this.dataList.concat(res.data.data.records);
console.log(this.dataList)
if(res.data.data.records.length == 0 || res.data.data.total < this.size){

@ -274,7 +274,7 @@
reportIot() {
let _arr = [];
this.voices.forEach(item => {
_arr.push({url:getApp().globalData.fileUrl + item});
_arr.push({url:item});
})
let data = {
"alarmTypeIdentity": "700005",

Binary file not shown.

@ -1 +1 @@
https://ide.dcloud.net.cn/build/download/680488f0-3bf3-11ee-ba98-5b7f97e98b39
https://ide.dcloud.net.cn/build/download/9198c840-408b-11ee-8134-0ffd3e4e5898

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__B814B58","name":"齐鲁医院报警检测","version":{"name":"1.0.2","code":102},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Record":{},"VideoPlayer":{},"Geolocation":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"autoclose":true,"delay":0,"target":"id:1","waiting":true},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","distribute":{"icons":{"android":{"hdpi":"icon-android-hdpi.png","xhdpi":"icon-android-xhdpi.png","xxhdpi":"icon-android-xxhdpi.png","xxxhdpi":"icon-android-xxxhdpi.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"},"prerendered":"false"}},"google":{"permissions":["<uses-feature android:name=\"android.hardware.camera\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<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_LOCATION_EXTRA_COMMANDS\"/>","<uses-permission android:name=\"android.permission.ACCESS_MOCK_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.BIND_ACCESSIBILITY_SERVICE\"/>","<uses-permission android:name=\"android.permission.BIND_NOTIFICATION_LISTENER_SERVICE\"/>","<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.DEVICE_POWER\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.INJECT_EVENTS\"/>","<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_CREDENTIALS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"packagename":"uni.UNIB814B58","aliasname":"","password":"","keystore":"html5plus://test","custompermissions":true},"apple":{"dSYMs":false,"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}},"geolocation":{"system":{"__platform__":["android"]}}},"orientation":"portrait-primary"},"nativePlugins":{"Ba-KeepAliveSuit":{},"Ba-Websocket":{}},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.8.7","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html","adid":"122852140111"}}
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__B814B58","name":"齐鲁医院报警检测","version":{"name":"1.0.2","code":102},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Record":{},"VideoPlayer":{},"Geolocation":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"autoclose":true,"delay":0,"target":"id:1","waiting":true},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","distribute":{"icons":{"android":{"hdpi":"icon-android-hdpi.png","xhdpi":"icon-android-xhdpi.png","xxhdpi":"icon-android-xxhdpi.png","xxxhdpi":"icon-android-xxxhdpi.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"},"prerendered":"false"}},"google":{"permissions":["<uses-feature android:name=\"android.hardware.camera\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<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_LOCATION_EXTRA_COMMANDS\"/>","<uses-permission android:name=\"android.permission.ACCESS_MOCK_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.BIND_ACCESSIBILITY_SERVICE\"/>","<uses-permission android:name=\"android.permission.BIND_NOTIFICATION_LISTENER_SERVICE\"/>","<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.DEVICE_POWER\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.INJECT_EVENTS\"/>","<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.REBOOT\"/>","<uses-permission android:name=\"android.permission.RECEIVE_BOOT_COMPLETED\"/>","<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>","<uses-permission android:name=\"android.permission.USE_CREDENTIALS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"packagename":"uni.UNIB814B58","aliasname":"","password":"","keystore":"html5plus://test","custompermissions":true},"apple":{"dSYMs":false,"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}},"geolocation":{"system":{"__platform__":["android"]}}},"orientation":"portrait-primary"},"nativePlugins":{"Ba-KeepAliveSuit":{},"Ba-Websocket":{}},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.8.7","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html","adid":"122852140111"}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -330,6 +330,7 @@ var render = function () {
_c(
"v-uni-cover-view",
{
staticClass: _vm._$g(5, "sc"),
attrs: { _i: 5 },
on: {
click: function ($event) {
@ -358,6 +359,7 @@ var render = function () {
_c(
"v-uni-cover-view",
{
staticClass: _vm._$g(8, "sc"),
attrs: { _i: 8 },
on: {
click: function ($event) {
@ -386,6 +388,7 @@ var render = function () {
_c(
"v-uni-cover-view",
{
staticClass: _vm._$g(11, "sc"),
attrs: { _i: 11 },
on: {
click: function ($event) {
@ -590,7 +593,7 @@ if(false) {}
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ./node_modules/css-loader/dist/runtime/api.js */ 10);
exports = ___CSS_LOADER_API_IMPORT___(false);
// Module
exports.push([module.i, "@charset \"UTF-8\";\n/* 水平间距 */\n/* 水平间距 */\n.container {\n height: 100%;\n padding: 20px;\n font-size: 14px;\n line-height: 24px;\n background-color: aliceblue;\n}\n.act-btn {\n position: fixed;\n width: 67upx;\n height: 259upx;\n right: 30upx;\n top: 38upx;\n background: #FFFFFF;\n box-shadow: 1px 4px 6px 1px rgba(0, 0, 0, 0.22);\n border-radius: 20upx;\n padding: 10upx;\n}\n.act-btn .act-btn-item {\n padding: 6upx;\n border-bottom: 1px solid #D6D8DF;\n font-size: 20upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n color: #031945;\n line-height: 28upx;\n text-align: center;\n}\n.act-btn .act-btn-item .img {\n width: 44upx;\n height: 44upx;\n margin: 0 auto;\n}\n.foot-tool {\n position: fixed;\n height: 230upx;\n left: 30upx;\n right: 30upx;\n bottom: 157upx;\n background-color: #fff;\n border-radius: 40upx;\n overflow: hidden;\n}\n.foot-tool .foot-tool-item {\n float: left;\n width: 33.3%;\n color: #031945;\n font-size: 28upx;\n text-align: center;\n}\n.foot-tool .foot-tool-item .img {\n width: 100upx;\n height: 100upx;\n margin: 40upx auto 20upx;\n}\n", ""]);
exports.push([module.i, "@charset \"UTF-8\";\n/* 水平间距 */\n/* 水平间距 */\n.container {\n height: 100%;\n padding: 20px;\n font-size: 14px;\n line-height: 24px;\n background-color: aliceblue;\n}\n.act-btn {\n position: fixed;\n width: 67upx;\n height: 280upx;\n right: 30upx;\n top: 19upx;\n background: #FFFFFF;\n box-shadow: 1upx 4upx 6upx 1upx rgba(0, 0, 0, 0.22);\n border-radius: 20upx;\n padding: 10upx;\n}\n.act-btn .act-btn-item {\n padding: 6upx;\n border-bottom: 2upx solid #D6D8DF;\n text-align: center;\n}\n.act-btn .act-btn-item .img {\n width: 44upx;\n height: 44upx;\n margin: 0 auto;\n}\n.act-btn .act-btn-item .txt {\n font-size: 20upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n color: #031945;\n line-height: 28upx;\n}\n.foot-tool {\n position: fixed;\n height: 230upx;\n left: 30upx;\n right: 30upx;\n bottom: 157upx;\n background-color: #fff;\n border-radius: 40upx;\n overflow: hidden;\n}\n.foot-tool .foot-tool-item {\n float: left;\n width: 33.3%;\n color: #031945;\n font-size: 28upx;\n text-align: center;\n}\n.foot-tool .foot-tool-item .img {\n width: 100upx;\n height: 100upx;\n margin: 40upx auto 20upx;\n}\n", ""]);
// Exports
module.exports = exports;
@ -5853,7 +5856,7 @@ var ___CSS_LOADER_URL_IMPORT_0___ = __webpack_require__(/*! @/static/voive_bg.pn
exports = ___CSS_LOADER_API_IMPORT___(false);
var ___CSS_LOADER_URL_REPLACEMENT_0___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_0___);
// Module
exports.push([module.i, "@charset \"UTF-8\";\n/* 水平间距 */\n/* 水平间距 */\nbody[data-v-269cc0f3],\n.container[data-v-269cc0f3] {\n min-height: 100vh;\n background-color: #FFFFFF;\n}\nbody[data-v-269cc0f3] .uni-forms-item__label,\n.container[data-v-269cc0f3] .uni-forms-item__label {\n color: #031945;\n font-size: 28upx;\n font-family: PingFang SC-Bold, PingFang SC;\n font-weight: bold;\n}\nbody[data-v-269cc0f3] .uni-easyinput__content,\n.container[data-v-269cc0f3] .uni-easyinput__content {\n height: 88upx;\n border: 0;\n border-bottom: 1px solid #D6D8DF;\n border-radius: 0;\n}\nbody[data-v-269cc0f3] .uni-easyinput__content-input,\n.container[data-v-269cc0f3] .uni-easyinput__content-input {\n font-size: 28upx;\n height: 88upx;\n}\nbody[data-v-269cc0f3] .uni-input-placeholder,\n.container[data-v-269cc0f3] .uni-input-placeholder {\n color: #90959D;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n}\n.padding-wrap[data-v-269cc0f3] {\n padding: 30upx;\n}\n.choose-map[data-v-269cc0f3] {\n line-height: 88upx;\n color: #C4C7CB;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n background: #F6F8FA;\n border-radius: 30upx;\n padding: 0 15upx 0 30upx;\n}\n.voice-rocord-box[data-v-269cc0f3] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-bottom: 40upx;\n}\n.voice-rocord-box .voice-box[data-v-269cc0f3] {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n min-width: 300px;\n height: 90upx;\n background: #338AF8 url(" + ___CSS_LOADER_URL_REPLACEMENT_0___ + ") 40upx 28upx no-repeat;\n background-size: 226upx 34upx;\n border-radius: 100upx;\n}\n.voice-rocord-box .voice-box .voice-mins[data-v-269cc0f3] {\n color: #FFFFFF;\n font-size: 28upx;\n font-family: Arial-Regular, Arial;\n font-weight: 400;\n margin-right: 40upx;\n}\n.voice-rocord-box .voice-del[data-v-269cc0f3] {\n color: #B6B8BB;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n margin-left: 20upx;\n}\n.submit-btn[data-v-269cc0f3] {\n display: block;\n color: #338AF8;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n line-height: 66upx;\n text-align: center;\n background: #E5F0FF;\n border-radius: 20upx;\n border: 1px solid #338AF8;\n}\n.tab-switch[data-v-269cc0f3] {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n}\n.tab-switch .tab-btn[data-v-269cc0f3] {\n display: flex;\n width: 80upx;\n height: 40upx;\n border-radius: 20upx;\n background-color: #eee;\n margin-right: 10upx;\n}\n.tab-switch .tab-btn .tab-btn-item[data-v-269cc0f3] {\n float: right;\n width: 36upx;\n height: 36upx;\n border-radius: 18upx;\n background-color: #FFFFFF;\n margin: 2upx;\n}\n.tab-switch .tab-btn.active[data-v-269cc0f3] {\n background-color: #338AF8;\n}\n.tab-switch .tab-btn.active .tab-btn-item[data-v-269cc0f3] {\n float: left;\n}\n.btn-box[data-v-269cc0f3] {\n position: fixed;\n left: 30upx;\n right: 30upx;\n bottom: 100upx;\n}\n.btn-box .submit-btn[data-v-269cc0f3] {\n color: #FFFFFF;\n font-size: 28px;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n line-height: 90upx;\n text-align: center;\n background: #338AF8;\n border-radius: 100upx;\n}\n", ""]);
exports.push([module.i, "@charset \"UTF-8\";\n/* 水平间距 */\n/* 水平间距 */\nbody[data-v-269cc0f3],\n.container[data-v-269cc0f3] {\n min-height: 100vh;\n background-color: #FFFFFF;\n}\nbody[data-v-269cc0f3] .uni-forms-item__label,\n.container[data-v-269cc0f3] .uni-forms-item__label {\n color: #031945;\n font-size: 28upx;\n font-family: PingFang SC-Bold, PingFang SC;\n font-weight: bold;\n}\nbody[data-v-269cc0f3] .uni-easyinput__content,\n.container[data-v-269cc0f3] .uni-easyinput__content {\n height: 88upx;\n border: 0;\n border-bottom: 1px solid #D6D8DF;\n border-radius: 0;\n}\nbody[data-v-269cc0f3] .uni-easyinput__content-input,\n.container[data-v-269cc0f3] .uni-easyinput__content-input {\n font-size: 28upx;\n height: 88upx;\n}\nbody[data-v-269cc0f3] .uni-input-placeholder,\n.container[data-v-269cc0f3] .uni-input-placeholder {\n color: #90959D;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n}\n.padding-wrap[data-v-269cc0f3] {\n padding: 30upx;\n}\n.choose-map[data-v-269cc0f3] {\n line-height: 88upx;\n color: #C4C7CB;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n background: #F6F8FA;\n border-radius: 30upx;\n padding: 0 15upx 0 30upx;\n}\n.voice-rocord-box[data-v-269cc0f3] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-bottom: 40upx;\n}\n.voice-rocord-box .voice-box[data-v-269cc0f3] {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n min-width: 300px;\n height: 90upx;\n background: #338AF8 url(" + ___CSS_LOADER_URL_REPLACEMENT_0___ + ") 40upx 28upx no-repeat;\n background-size: 226upx 34upx;\n border-radius: 100upx;\n}\n.voice-rocord-box .voice-box .voice-mins[data-v-269cc0f3] {\n color: #FFFFFF;\n font-size: 28upx;\n font-family: Arial-Regular, Arial;\n font-weight: 400;\n margin-right: 40upx;\n}\n.voice-rocord-box .voice-del[data-v-269cc0f3] {\n color: #B6B8BB;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n margin-left: 20upx;\n}\n.tab-switch[data-v-269cc0f3] {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n}\n.tab-switch .tab-btn[data-v-269cc0f3] {\n display: flex;\n width: 80upx;\n height: 40upx;\n border-radius: 20upx;\n background-color: #eee;\n margin-right: 10upx;\n}\n.tab-switch .tab-btn .tab-btn-item[data-v-269cc0f3] {\n float: right;\n width: 36upx;\n height: 36upx;\n border-radius: 18upx;\n background-color: #FFFFFF;\n margin: 2upx;\n}\n.tab-switch .tab-btn.active[data-v-269cc0f3] {\n background-color: #338AF8;\n}\n.tab-switch .tab-btn.active .tab-btn-item[data-v-269cc0f3] {\n float: left;\n}\n.btn-box[data-v-269cc0f3] {\n position: fixed;\n left: 30upx;\n right: 30upx;\n bottom: 100upx;\n}\n.btn-box .submit-btn[data-v-269cc0f3] {\n color: #FFFFFF;\n font-size: 22px;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n line-height: 90upx;\n text-align: center;\n background: #338AF8;\n border-radius: 100upx;\n}\n", ""]);
// Exports
module.exports = exports;
@ -6168,7 +6171,7 @@ var ___CSS_LOADER_URL_IMPORT_0___ = __webpack_require__(/*! @/static/voive_bg.pn
exports = ___CSS_LOADER_API_IMPORT___(false);
var ___CSS_LOADER_URL_REPLACEMENT_0___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_0___);
// Module
exports.push([module.i, "@charset \"UTF-8\";\n/* 水平间距 */\n/* 水平间距 */\nbody[data-v-2c959890],\n.container[data-v-2c959890] {\n min-height: 100vh;\n background-color: #FFFFFF;\n}\nbody[data-v-2c959890] .uni-forms-item__label,\n.container[data-v-2c959890] .uni-forms-item__label {\n color: #031945;\n font-size: 28upx;\n font-family: PingFang SC-Bold, PingFang SC;\n font-weight: bold;\n}\nbody[data-v-2c959890] .uni-easyinput__content,\n.container[data-v-2c959890] .uni-easyinput__content {\n height: 88upx;\n border: 0;\n border-bottom: 1px solid #D6D8DF;\n border-radius: 0;\n}\nbody[data-v-2c959890] .uni-easyinput__content-input,\n.container[data-v-2c959890] .uni-easyinput__content-input {\n font-size: 28upx;\n height: 88upx;\n}\nbody[data-v-2c959890] .uni-input-placeholder,\n.container[data-v-2c959890] .uni-input-placeholder {\n color: #90959D;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n}\nbody[data-v-2c959890] .uni-select,\n.container[data-v-2c959890] .uni-select {\n height: 88upx;\n background: #F6F8FA;\n border-radius: 30upx;\n padding: 0 15upx 0 30upx;\n border: 0;\n}\nbody[data-v-2c959890] .uni-select__input-box,\n.container[data-v-2c959890] .uni-select__input-box {\n height: 88upx;\n}\nbody[data-v-2c959890] .uni-select__input-placeholder,\n.container[data-v-2c959890] .uni-select__input-placeholder {\n color: #C4C7CB;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n}\nbody[data-v-2c959890] .uni-icons,\n.container[data-v-2c959890] .uni-icons {\n color: #C4C7CB;\n font-size: 28upx;\n}\n.padding-wrap[data-v-2c959890] {\n padding: 30upx;\n}\n.choose-map[data-v-2c959890] {\n line-height: 44upx;\n color: #C4C7CB;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n text-align: left;\n background: #F6F8FA;\n border-radius: 30upx;\n word-break: break-all;\n padding: 22upx 15upx 22upx 33upx;\n}\n.voice-rocord-box[data-v-2c959890] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-bottom: 40upx;\n}\n.voice-rocord-box .voice-box[data-v-2c959890] {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n min-width: 300px;\n height: 90upx;\n background: #338AF8 url(" + ___CSS_LOADER_URL_REPLACEMENT_0___ + ") 40upx 28upx no-repeat;\n background-size: 226upx 34upx;\n border-radius: 100upx;\n}\n.voice-rocord-box .voice-box .voice-mins[data-v-2c959890] {\n color: #FFFFFF;\n font-size: 28upx;\n font-family: Arial-Regular, Arial;\n font-weight: 400;\n margin-right: 40upx;\n}\n.voice-rocord-box .voice-del[data-v-2c959890] {\n color: #B6B8BB;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n margin-left: 20upx;\n}\n.submit-btn[data-v-2c959890] {\n display: block;\n color: #338AF8;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n line-height: 66upx;\n text-align: center;\n background: #E5F0FF;\n border-radius: 20upx;\n border: 1px solid #338AF8;\n}\n.tab-switch[data-v-2c959890] {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n}\n.tab-switch .tab-btn[data-v-2c959890] {\n display: flex;\n width: 80upx;\n height: 40upx;\n border-radius: 20upx;\n background-color: #eee;\n margin-right: 10upx;\n}\n.tab-switch .tab-btn .tab-btn-item[data-v-2c959890] {\n float: right;\n width: 36upx;\n height: 36upx;\n border-radius: 18upx;\n background-color: #FFFFFF;\n margin: 2upx;\n}\n.tab-switch .tab-btn.active[data-v-2c959890] {\n background-color: #338AF8;\n}\n.tab-switch .tab-btn.active .tab-btn-item[data-v-2c959890] {\n float: left;\n}\n.btn-box[data-v-2c959890] {\n position: fixed;\n left: 30upx;\n right: 30upx;\n bottom: 100upx;\n}\n.btn-box .submit-btn[data-v-2c959890] {\n color: #FFFFFF;\n font-size: 28px;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n line-height: 90upx;\n text-align: center;\n background: #338AF8;\n border-radius: 100upx;\n}\n", ""]);
exports.push([module.i, "@charset \"UTF-8\";\n/* 水平间距 */\n/* 水平间距 */\nbody[data-v-2c959890],\n.container[data-v-2c959890] {\n min-height: 100vh;\n background-color: #FFFFFF;\n}\nbody[data-v-2c959890] .uni-forms-item__label,\n.container[data-v-2c959890] .uni-forms-item__label {\n color: #031945;\n font-size: 28upx;\n font-family: PingFang SC-Bold, PingFang SC;\n font-weight: bold;\n}\nbody[data-v-2c959890] .uni-easyinput__content,\n.container[data-v-2c959890] .uni-easyinput__content {\n height: 88upx;\n border: 0;\n border-bottom: 1px solid #D6D8DF;\n border-radius: 0;\n}\nbody[data-v-2c959890] .uni-easyinput__content-input,\n.container[data-v-2c959890] .uni-easyinput__content-input {\n font-size: 28upx;\n height: 88upx;\n}\nbody[data-v-2c959890] .uni-input-placeholder,\n.container[data-v-2c959890] .uni-input-placeholder {\n color: #90959D;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n}\nbody[data-v-2c959890] .uni-select,\n.container[data-v-2c959890] .uni-select {\n height: 88upx;\n background: #F6F8FA;\n border-radius: 30upx;\n padding: 0 15upx 0 30upx;\n border: 0;\n}\nbody[data-v-2c959890] .uni-select__input-box,\n.container[data-v-2c959890] .uni-select__input-box {\n height: 88upx;\n}\nbody[data-v-2c959890] .uni-select__input-placeholder,\n.container[data-v-2c959890] .uni-select__input-placeholder {\n color: #C4C7CB;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n}\nbody[data-v-2c959890] .uni-icons,\n.container[data-v-2c959890] .uni-icons {\n color: #C4C7CB;\n font-size: 28upx;\n}\n.padding-wrap[data-v-2c959890] {\n padding: 30upx;\n}\n.choose-map[data-v-2c959890] {\n line-height: 44upx;\n color: #C4C7CB;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n text-align: left;\n background: #F6F8FA;\n border-radius: 30upx;\n word-break: break-all;\n padding: 22upx 15upx 22upx 33upx;\n}\n.voice-rocord-box[data-v-2c959890] {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-bottom: 40upx;\n}\n.voice-rocord-box .voice-box[data-v-2c959890] {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n min-width: 300px;\n height: 90upx;\n background: #338AF8 url(" + ___CSS_LOADER_URL_REPLACEMENT_0___ + ") 40upx 28upx no-repeat;\n background-size: 226upx 34upx;\n border-radius: 100upx;\n}\n.voice-rocord-box .voice-box .voice-mins[data-v-2c959890] {\n color: #FFFFFF;\n font-size: 28upx;\n font-family: Arial-Regular, Arial;\n font-weight: 400;\n margin-right: 40upx;\n}\n.voice-rocord-box .voice-del[data-v-2c959890] {\n color: #B6B8BB;\n font-size: 28upx;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n margin-left: 20upx;\n}\n.tab-switch[data-v-2c959890] {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n}\n.tab-switch .tab-btn[data-v-2c959890] {\n display: flex;\n width: 80upx;\n height: 40upx;\n border-radius: 20upx;\n background-color: #eee;\n margin-right: 10upx;\n}\n.tab-switch .tab-btn .tab-btn-item[data-v-2c959890] {\n float: right;\n width: 36upx;\n height: 36upx;\n border-radius: 18upx;\n background-color: #FFFFFF;\n margin: 2upx;\n}\n.tab-switch .tab-btn.active[data-v-2c959890] {\n background-color: #338AF8;\n}\n.tab-switch .tab-btn.active .tab-btn-item[data-v-2c959890] {\n float: left;\n}\n.btn-box[data-v-2c959890] {\n position: fixed;\n left: 30upx;\n right: 30upx;\n bottom: 100upx;\n}\n.btn-box .submit-btn[data-v-2c959890] {\n color: #FFFFFF;\n font-size: 22px;\n font-family: PingFang SC-Regular, PingFang SC;\n font-weight: 400;\n line-height: 90upx;\n text-align: center;\n background: #338AF8;\n border-radius: 100upx;\n}\n", ""]);
// Exports
module.exports = exports;

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save