优化后,再次提交

This commit is contained in:
王利强
2026-05-03 09:08:56 +08:00
parent 721ef0ad54
commit 805747d1d9
1243 changed files with 46213 additions and 221 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"file":"Inspectionchecklist.js","sources":["F:/software/HBuilderX/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvSW5zcGVjdGlvbmNoZWNrbGlzdC9JbnNwZWN0aW9uY2hlY2tsaXN0LnZ1ZQ"],"sourcesContent":["import MiniProgramPage from 'E:/hexieyun/ThreeChecksOneExposure_platform/12.07chongqixinde/三查一曝光小程序/threeonecheck_小程序/pages/Inspectionchecklist/Inspectionchecklist.vue'\nwx.createPage(MiniProgramPage)"],"names":[],"mappings":";;;;;;;;;AACA,GAAG,WAAW,eAAe;"}

View File

@@ -0,0 +1 @@
{"version":3,"file":"Inspectionlog.js","sources":["pages/Inspectionlog/Inspectionlog.vue","F:/software/HBuilderX/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvSW5zcGVjdGlvbmxvZy9JbnNwZWN0aW9ubG9nLnZ1ZQ"],"sourcesContent":["<template>\r\n\t<view class=\"page padding\">\r\n\t\t<view class=\"padding bg-white radius list\">\r\n\t\t\t<view class=\"text-bold margin-bottom text-black\">和谐矿业每日巡检</view>\r\n\t\t\t<view class=\"flex margin-bottom\">\r\n\t\t\t\t<view class=\"text-gray\">检查时间:</view>\r\n\t\t\t\t<view>2025-11-19 10:18:40</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"flex margin-bottom\">\r\n\t\t\t\t<view class=\"text-gray\">检查人员:</view>\r\n\t\t\t\t<view>18174379303</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"flex margin-bottom\">\r\n\t\t\t\t<view class=\"text-gray\">隐患数量:</view>\r\n\t\t\t\t<view>1</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"flex margin-bottom\">\r\n\t\t\t\t<view class=\"text-gray\">备注:</view>\r\n\t\t\t\t<view>可以</view>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"flex justify-between\">\r\n\t\t\t\t<view></view>\r\n\t\t\t\t<button class=\"bg-blue round cu-btn lg \" @click=\"Checklist()\">预览清单</button>\r\n\t\t\t</view>\r\n\t\t\t\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script setup>\r\n\timport { ref } from 'vue'\r\n\tconst Checklist = () => {\r\n\t\tuni.navigateTo({\r\n\t\t\turl: '/pages/Inspectionchecklist/Inspectionchecklist'\r\n\t\t})\r\n\t}\r\n\t\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n\t.page {\r\n\t\t\tmin-height: 100vh;\r\n\t\t\tbackground: #EBF2FC;\r\n\t\t}\r\n\t\t.list {\r\n\t\t\tbackground: #FFFFFF;\r\n\t\t\tbox-shadow: 0rpx 2rpx 6rpx 2rpx rgba(0, 0, 0, 0.08);\r\n\t\t\tborder-left: 5px solid #2667E9;\r\n\t\t\tborder-radius: 20rpx;\r\n\t\t\tpadding: 20rpx;\r\n\t\t}\r\n</style>","import MiniProgramPage from 'E:/hexieyun/ThreeChecksOneExposure_platform/12.07chongqixinde/三查一曝光小程序/threeonecheck_小程序/pages/Inspectionlog/Inspectionlog.vue'\nwx.createPage(MiniProgramPage)"],"names":["uni"],"mappings":";;;;;AA+BC,UAAM,YAAY,MAAM;AACvBA,oBAAAA,MAAI,WAAW;AAAA,QACd,KAAK;AAAA,MACR,CAAG;AAAA,IACD;;;;;;;;;;AClCF,GAAG,WAAW,eAAe;"}

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

View File

@@ -0,0 +1 @@
{"version":3,"file":"checklist.js","sources":["pages/checklist/checklist.vue","F:/software/HBuilderX/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvY2hlY2tsaXN0L2NoZWNrbGlzdC52dWU"],"sourcesContent":["<template>\r\n\t<view class=\"page padding\">\r\n\t\t<!-- 检查表列表 -->\r\n\t\t<view class=\"checklist-card\" v-for=\"item in list\" :key=\"item.id\">\r\n\t\t\t<view class=\"card-name\">{{ item.name }}</view>\r\n\t\t</view>\r\n\t\t\r\n\t\t<!-- 空状态 -->\r\n\t\t<view v-if=\"list.length === 0\" class=\"empty-tip\">\r\n\t\t\t<text>暂无检查表</text>\r\n\t\t</view>\r\n\t\t\r\n\t\t<!-- 新增按钮 -->\r\n\t\t<button class=\"add-btn\" @click=\"goToAdd\">\r\n\t\t\t<text class=\"cuIcon-add\"></text>\r\n\t\t\t<text>新增检查表</text>\r\n\t\t</button>\r\n\t</view>\r\n</template>\r\n\r\n<script setup>\r\nimport { ref } from 'vue'\r\nimport { onShow } from '@dcloudio/uni-app'\r\nimport { getCheckTableList } from '@/request/api.js'\r\n\r\nconst list = ref([])\r\n\r\n// 获取检查表列表\r\nconst fetchList = async () => {\r\n\ttry {\r\n\t\tconst res = await getCheckTableList({ pageNum: 1, pageSize: 100 });\r\n\t\tif (res.code === 0) {\r\n\t\t\tlist.value = res.data.records || [];\r\n\t\t}\r\n\t} catch (error) {\r\n\t\tconsole.error('获取检查表列表失败:', error);\r\n\t}\r\n}\r\n\r\n// 跳转到新增页面\r\nconst goToAdd = () => {\r\n\tuni.navigateTo({\r\n\t\turl: '/pages/editchecklist/editchecklist'\r\n\t})\r\n}\r\n\r\n// 每次显示页面时刷新数据\r\nonShow(() => {\r\n\tfetchList();\r\n})\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n.page {\r\n\tmin-height: 100vh;\r\n\tbackground: #EBF2FC;\r\n\tpadding-bottom: 120rpx;\r\n}\r\n\r\n.checklist-card {\r\n\tbackground: #fff;\r\n\tborder-radius: 16rpx;\r\n\tpadding: 30rpx;\r\n\tmargin-bottom: 20rpx;\r\n\tbox-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);\r\n\t\r\n\t.card-name {\r\n\t\tfont-size: 32rpx;\r\n\t\tcolor: #333;\r\n\t\tfont-weight: 500;\r\n\t}\r\n}\r\n\r\n.empty-tip {\r\n\ttext-align: center;\r\n\tpadding: 100rpx 0;\r\n\tcolor: #999;\r\n\tfont-size: 28rpx;\r\n}\r\n\r\n.add-btn {\r\n\tposition: fixed;\r\n\tbottom: 40rpx;\r\n\tleft: 30rpx;\r\n\tright: 30rpx;\r\n\theight: 90rpx;\r\n\tbackground: linear-gradient(135deg, #667eea 0%, #2668EA 100%);\r\n\tborder-radius: 45rpx;\r\n\tcolor: #fff;\r\n\tfont-size: 32rpx;\r\n\tdisplay: flex;\r\n\talign-items: center;\r\n\tjustify-content: center;\r\n\tbox-shadow: 0 8rpx 20rpx rgba(102, 126, 234, 0.4);\r\n\t\r\n\t.cuIcon-add {\r\n\t\tmargin-right: 10rpx;\r\n\t\tfont-size: 36rpx;\r\n\t}\r\n}\r\n</style>","import MiniProgramPage from 'E:/hexieyun/ThreeChecksOneExposure_platform/12.07chongqixinde/三查一曝光小程序/threeonecheck_小程序/pages/checklist/checklist.vue'\nwx.createPage(MiniProgramPage)"],"names":["ref","getCheckTableList","uni","onShow"],"mappings":";;;;;;AAyBA,UAAM,OAAOA,cAAG,IAAC,EAAE;AAGnB,UAAM,YAAY,YAAY;AAC7B,UAAI;AACH,cAAM,MAAM,MAAMC,YAAAA,kBAAkB,EAAE,SAAS,GAAG,UAAU,IAAG,CAAE;AACjE,YAAI,IAAI,SAAS,GAAG;AACnB,eAAK,QAAQ,IAAI,KAAK,WAAW,CAAA;AAAA,QACjC;AAAA,MACD,SAAQ,OAAO;AACfC,kFAAc,cAAc,KAAK;AAAA,MACjC;AAAA,IACF;AAGA,UAAM,UAAU,MAAM;AACrBA,oBAAAA,MAAI,WAAW;AAAA,QACd,KAAK;AAAA,MACP,CAAE;AAAA,IACF;AAGAC,kBAAAA,OAAO,MAAM;AACZ;IACD,CAAC;;;;;;;;;;;;;;;;;;AChDD,GAAG,WAAW,eAAe;"}

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

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

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

View File

@@ -0,0 +1 @@
{"version":3,"file":"agreement.js","sources":["pages/login/agreement.vue","F:/software/HBuilderX/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbG9naW4vYWdyZWVtZW50LnZ1ZQ"],"sourcesContent":["<template>\r\n\t<view>\r\n\t\t<web-view :webview-styles=\"webviewStyles\" :src=\"articleUrl\"></web-view>\r\n\t</view>\r\n</template>\r\n\r\n<script setup>\r\nimport { ref, onMounted } from 'vue';\r\n\r\n// 响应式数据\r\nconst articleUrl = ref('');\r\nconst webviewStyles = ref({\r\n\tprogress: {\r\n\t\tcolor: '#3D83F6' // 使用蓝色主题色\r\n\t}\r\n});\r\n\r\n// 页面加载时\r\nonMounted(() => {\r\n\t// 设置协议URL实际使用时替换为真实的协议地址\r\n\tarticleUrl.value = 'http://www.baidu.com/';\r\n});\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n// 可以根据需要添加样式\r\n</style> ","import MiniProgramPage from 'E:/hexieyun/ThreeChecksOneExposure_platform/12.07chongqixinde/三查一曝光小程序/threeonecheck_小程序/pages/login/agreement.vue'\nwx.createPage(MiniProgramPage)"],"names":["ref","onMounted"],"mappings":";;;;;AAUA,UAAM,aAAaA,cAAAA,IAAI,EAAE;AACzB,UAAM,gBAAgBA,cAAAA,IAAI;AAAA,MACzB,UAAU;AAAA,QACT,OAAO;AAAA;AAAA,MACP;AAAA,IACF,CAAC;AAGDC,kBAAAA,UAAU,MAAM;AAEf,iBAAW,QAAQ;AAAA,IACpB,CAAC;;;;;;;;;;;ACpBD,GAAG,WAAW,eAAe;"}

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

View File

@@ -0,0 +1 @@
{"version":3,"file":"success.js","sources":["pages/login/success.vue","F:/software/HBuilderX/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbG9naW4vc3VjY2Vzcy52dWU"],"sourcesContent":["<template>\r\n\t<view>\r\n\t\t<!-- 注册成功 -->\r\n\t\t<view class=\"text-center\" v-if=\"success\">\r\n\t\t\t<image src=\"/static/index/蒙版组 260.png\" style=\"width: 160rpx;height: 160rpx;margin-top: 140rpx;\"></image>\r\n\t\t\t<view class=\"text-bold margin-bottom-xl margin-top-xl\">注册成功</view>\r\n\t\t\t<view class=\"text-gray\">等待管理员确认后,才能进行账号登录</view>\r\n\t\t\t<button class=\"bg-blue round lg but \">返回首页</button>\r\n\t\t</view>\r\n\t\t<!-- 注册异常 -->\r\n\t\t<view class=\"text-center\" v-else>\r\n\t\t\t<image src=\"/static/index/蒙版组 261.png\" style=\"width: 160rpx;height: 160rpx;margin-top: 140rpx;\"></image>\r\n\t\t\t<view class=\"text-bold margin-bottom-xl margin-top-xl\">注册异常</view>\r\n\t\t\t<view class=\"text-gray\">员工已注册,如账号异常请联系管理员</view>\r\n\t\t\t<button class=\"bg-blue round lg but \">返回首页</button>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script setup>\r\n\tconst success = true\r\n</script>\r\n\r\n<style scoped>\r\n\t.but {\r\n\t\twidth: 248rpx;\r\n\t\theight: 88rpx;\r\n\t\tmargin-top: 100rpx;\r\n\t\t\r\n\t}\r\n</style>","import MiniProgramPage from 'E:/hexieyun/ThreeChecksOneExposure_platform/12.07chongqixinde/三查一曝光小程序/threeonecheck_小程序/pages/login/success.vue'\nwx.createPage(MiniProgramPage)"],"names":[],"mappings":";;;AAoBC,MAAM,UAAU;;;;;;;;;;;;;;;;ACnBjB,GAAG,WAAW,eAAe;"}

View File

@@ -0,0 +1 @@
{"version":3,"file":"map.js","sources":["F:/software/HBuilderX/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbWFwL21hcC52dWU"],"sourcesContent":["import MiniProgramPage from 'E:/hexieyun/ThreeChecksOneExposure_platform/12.07chongqixinde/三查一曝光小程序/threeonecheck_小程序/pages/map/map.vue'\nwx.createPage(MiniProgramPage)"],"names":[],"mappings":";;;;;;;;;AACA,GAAG,WAAW,eAAe;"}

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

View File

@@ -0,0 +1 @@
{"version":3,"file":"helpcenter.js","sources":["F:/software/HBuilderX/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvcGVyc29uYWxjZW50ZXIvaGVscGNlbnRlci52dWU"],"sourcesContent":["import MiniProgramPage from 'E:/hexieyun/ThreeChecksOneExposure_platform/12.07chongqixinde/三查一曝光小程序/threeonecheck_小程序/pages/personalcenter/helpcenter.vue'\nwx.createPage(MiniProgramPage)"],"names":[],"mappings":";;;;;;;;;;;;AACA,GAAG,WAAW,eAAe;"}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"file":"notification.js","sources":["pages/personalcenter/notification.vue","F:/software/HBuilderX/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvcGVyc29uYWxjZW50ZXIvbm90aWZpY2F0aW9uLnZ1ZQ"],"sourcesContent":["<template>\r\n\t<view class=\"page padding\">\r\n\t\t<view class=\"padding bg-white radius\">\r\n\t\t\t<view class=\"flex justify-between padding-bottom solid-bottom\">\r\n\t\t\t\t<view>横幅消息通知</view>\r\n\t\t\t\t <up-switch v-model=\"value\" activeColor=\"#07C160\" @change=\"change\" ></up-switch>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"flex justify-between padding-bottom padding-top solid-bottom\">\r\n\t\t\t\t<view>系统声音</view>\r\n\t\t\t\t <up-switch v-model=\"value\" activeColor=\"#07C160\" @change=\"change\"></up-switch>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"flex justify-between padding-bottom padding-top solid-bottom\">\r\n\t\t\t\t<view>系统震动</view>\r\n\t\t\t\t <up-switch v-model=\"value\" activeColor=\"#07C160\" @change=\"change\"></up-switch>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script setup>\r\n\timport { ref } from 'vue'\r\n\t\r\n\tconst value = ref(false)\r\n\t\r\n\tconst change = (e) => {\r\n\t console.log('change', e);\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n\t.page {\r\n\t\tmin-height: 100vh;\r\n\t\tbackground: #EBF2FC;\r\n\t}\r\n</style>","import MiniProgramPage from 'E:/hexieyun/ThreeChecksOneExposure_platform/12.07chongqixinde/三查一曝光小程序/threeonecheck_小程序/pages/personalcenter/notification.vue'\nwx.createPage(MiniProgramPage)"],"names":["ref","uni"],"mappings":";;;;;;;;;;;;;AAsBC,UAAM,QAAQA,cAAG,IAAC,KAAK;AAEvB,UAAM,SAAS,CAAC,MAAM;AACpBC,oBAAA,MAAA,MAAA,OAAA,+CAAY,UAAU,CAAC;AAAA,IACxB;;;;;;;;;;;;;;;;;;;;;;;;;;;ACzBF,GAAG,WAAW,eAAe;"}

View File

@@ -0,0 +1 @@
{"version":3,"file":"settings.js","sources":["pages/personalcenter/settings.vue","F:/software/HBuilderX/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvcGVyc29uYWxjZW50ZXIvc2V0dGluZ3MudnVl"],"sourcesContent":["<template>\r\n\t<view class=\"page padding\">\r\n\t\t<view class=\"padding bg-white radius\">\r\n\t\t\t<view class=\"flex justify-between padding-bottom solid-bottom\">\r\n\t\t\t\t<view>截屏后提示</view>\r\n\t\t\t\t <up-switch v-model=\"value\" activeColor=\"#07C160\" @change=\"change\" ></up-switch>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"flex justify-between padding-bottom padding-top solid-bottom\">\r\n\t\t\t\t<view>开启屏幕旋转</view>\r\n\t\t\t\t <up-switch v-model=\"value\" activeColor=\"#07C160\" @change=\"change\"></up-switch>\r\n\t\t\t</view>\r\n\t\t\t<view class=\"flex justify-between padding-bottom padding-top solid-bottom\">\r\n\t\t\t\t<view>获取地理位置</view>\r\n\t\t\t\t <up-switch v-model=\"value\" activeColor=\"#07C160\" @change=\"change\"></up-switch>\r\n\t\t\t</view>\r\n\t\t</view>\r\n\t</view>\r\n</template>\r\n\r\n<script setup>\r\n\timport { ref } from 'vue'\r\n\t\r\n\tconst value = ref(false)\r\n\t\r\n\tconst change = (e) => {\r\n\t console.log('change', e);\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n\t.page {\r\n\t\tmin-height: 100vh;\r\n\t\tbackground: #EBF2FC;\r\n\t}\r\n</style>","import MiniProgramPage from 'E:/hexieyun/ThreeChecksOneExposure_platform/12.07chongqixinde/三查一曝光小程序/threeonecheck_小程序/pages/personalcenter/settings.vue'\nwx.createPage(MiniProgramPage)"],"names":["ref","uni"],"mappings":";;;;;;;;;;;;;AAsBC,UAAM,QAAQA,cAAG,IAAC,KAAK;AAEvB,UAAM,SAAS,CAAC,MAAM;AACpBC,oBAAA,MAAA,MAAA,OAAA,2CAAY,UAAU,CAAC;AAAA,IACxB;;;;;;;;;;;;;;;;;;;;;;;;;;;ACzBF,GAAG,WAAW,eAAe;"}

File diff suppressed because one or more lines are too long