Commit 46945089 authored by xinzhedeai's avatar xinzhedeai

chore: 忽略 unpackage 目录变更

parent 84f34ef5
unpackage/
/unpackage/
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/npm-debug.log*
/yarn-error.log
/yarn.lock
/package-lock.json
# production
/dist
# misc
.DS_Store
# umi
/src/.umi
/src/.umi-production
/src/.umi-test
/.env.local
\ No newline at end of file
......@@ -144,7 +144,7 @@
if (res) {
storager.set('token', res.token)
console.log('获取token', res.token)
pager.relaunchTo('/pages/home/version')
pager.relaunchTo('/pages/home/home')
}
},
async getExistedUser() {
......
{
"appid": "wx41f6d06aca0687c3",
"compileType": "miniprogram",
"libVersion": "3.7.3",
"packOptions": {
"ignore": [],
"include": []
},
"setting": {
"coverView": true,
"es6": true,
"postcss": true,
"minified": true,
"enhance": true,
"showShadowRootInWxmlPanel": true,
"packNpmRelationList": [],
"babelSetting": {
"ignore": [],
"disablePlugins": [],
"outputPath": ""
}
},
"condition": {},
"editorSetting": {
"tabIndent": "insertSpaces",
"tabSize": 2
}
}
\ No newline at end of file
{
"description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
"projectname": "yanshouyi-minipro",
"setting": {
"compileHotReLoad": true
}
}
\ No newline at end of file
## 1.2.1(2022-09-05)
- 修复 当 text 超过 max-num 时,badge 的宽度计算是根据 text 的长度计算,更改为 css 计算实际展示宽度,详见:[https://ask.dcloud.net.cn/question/150473](https://ask.dcloud.net.cn/question/150473)
## 1.2.0(2021-11-19)
- 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
- 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-badge](https://uniapp.dcloud.io/component/uniui/uni-badge)
## 1.1.7(2021-11-08)
- 优化 升级ui
- 修改 size 属性默认值调整为 small
- 修改 type 属性,默认值调整为 error,info 替换 default
## 1.1.6(2021-09-22)
- 修复 在字节小程序上样式不生效的 bug
## 1.1.5(2021-07-30)
- 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
## 1.1.4(2021-07-29)
- 修复 去掉 nvue 不支持css 的 align-self 属性,nvue 下不暂支持 absolute 属性
## 1.1.3(2021-06-24)
- 优化 示例项目
## 1.1.1(2021-05-12)
- 新增 组件示例地址
## 1.1.0(2021-05-12)
- 新增 uni-badge 的 absolute 属性,支持定位
- 新增 uni-badge 的 offset 属性,支持定位偏移
- 新增 uni-badge 的 is-dot 属性,支持仅显示有一个小点
- 新增 uni-badge 的 max-num 属性,支持自定义封顶的数字值,超过 99 显示99+
- 优化 uni-badge 属性 custom-style, 支持以对象形式自定义样式
## 1.0.7(2021-05-07)
- 修复 uni-badge 在 App 端,数字小于10时不是圆形的bug
- 修复 uni-badge 在父元素不是 flex 布局时,宽度缩小的bug
- 新增 uni-badge 属性 custom-style, 支持自定义样式
## 1.0.6(2021-02-04)
- 调整为uni_modules目录规范
<template>
<view class="uni-badge--x">
<slot />
<text v-if="text" :class="classNames" :style="[positionStyle, customStyle, dotStyle]"
class="uni-badge" @click="onClick()">{{displayValue}}</text>
</view>
</template>
<script>
/**
* Badge 数字角标
* @description 数字角标一般和其它控件(列表、9宫格等)配合使用,用于进行数量提示,默认为实心灰色背景
* @tutorial https://ext.dcloud.net.cn/plugin?id=21
* @property {String} text 角标内容
* @property {String} size = [normal|small] 角标内容
* @property {String} type = [info|primary|success|warning|error] 颜色类型
* @value info 灰色
* @value primary 蓝色
* @value success 绿色
* @value warning 黄色
* @value error 红色
* @property {String} inverted = [true|false] 是否无需背景颜色
* @property {Number} maxNum 展示封顶的数字值,超过 99 显示 99+
* @property {String} absolute = [rightTop|rightBottom|leftBottom|leftTop] 开启绝对定位, 角标将定位到其包裹的标签的四角上
* @value rightTop 右上
* @value rightBottom 右下
* @value leftTop 左上
* @value leftBottom 左下
* @property {Array[number]} offset 距定位角中心点的偏移量,只有存在 absolute 属性时有效,例如:[-10, -10] 表示向外偏移 10px,[10, 10] 表示向 absolute 指定的内偏移 10px
* @property {String} isDot = [true|false] 是否显示为一个小点
* @event {Function} click 点击 Badge 触发事件
* @example <uni-badge text="1"></uni-badge>
*/
export default {
name: 'UniBadge',
emits: ['click'],
props: {
type: {
type: String,
default: 'error'
},
inverted: {
type: Boolean,
default: false
},
isDot: {
type: Boolean,
default: false
},
maxNum: {
type: Number,
default: 99
},
absolute: {
type: String,
default: ''
},
offset: {
type: Array,
default () {
return [0, 0]
}
},
text: {
type: [String, Number],
default: ''
},
size: {
type: String,
default: 'small'
},
customStyle: {
type: Object,
default () {
return {}
}
}
},
data() {
return {};
},
computed: {
width() {
return String(this.text).length * 8 + 12
},
classNames() {
const {
inverted,
type,
size,
absolute
} = this
return [
inverted ? 'uni-badge--' + type + '-inverted' : '',
'uni-badge--' + type,
'uni-badge--' + size,
absolute ? 'uni-badge--absolute' : ''
].join(' ')
},
positionStyle() {
if (!this.absolute) return {}
let w = this.width / 2,
h = 10
if (this.isDot) {
w = 5
h = 5
}
const x = `${- w + this.offset[0]}px`
const y = `${- h + this.offset[1]}px`
const whiteList = {
rightTop: {
right: x,
top: y
},
rightBottom: {
right: x,
bottom: y
},
leftBottom: {
left: x,
bottom: y
},
leftTop: {
left: x,
top: y
}
}
const match = whiteList[this.absolute]
return match ? match : whiteList['rightTop']
},
dotStyle() {
if (!this.isDot) return {}
return {
width: '10px',
minWidth: '0',
height: '10px',
padding: '0',
borderRadius: '10px'
}
},
displayValue() {
const {
isDot,
text,
maxNum
} = this
return isDot ? '' : (Number(text) > maxNum ? `${maxNum}+` : text)
}
},
methods: {
onClick() {
this.$emit('click');
}
}
};
</script>
<style lang="scss" >
$uni-primary: #2979ff !default;
$uni-success: #4cd964 !default;
$uni-warning: #f0ad4e !default;
$uni-error: #dd524d !default;
$uni-info: #909399 !default;
$bage-size: 12px;
$bage-small: scale(0.8);
.uni-badge--x {
/* #ifdef APP-NVUE */
// align-self: flex-start;
/* #endif */
/* #ifndef APP-NVUE */
display: inline-block;
/* #endif */
position: relative;
}
.uni-badge--absolute {
position: absolute;
}
.uni-badge--small {
transform: $bage-small;
transform-origin: center center;
}
.uni-badge {
/* #ifndef APP-NVUE */
display: flex;
overflow: hidden;
box-sizing: border-box;
/* #endif */
justify-content: center;
flex-direction: row;
height: 20px;
min-width: 20px;
padding: 0 4px;
line-height: 18px;
color: #fff;
border-radius: 100px;
background-color: $uni-info;
background-color: transparent;
border: 1px solid #fff;
text-align: center;
font-family: 'Helvetica Neue', Helvetica, sans-serif;
font-feature-settings: "tnum";
font-size: $bage-size;
/* #ifdef H5 */
z-index: 999;
cursor: pointer;
/* #endif */
&--info {
color: #fff;
background-color: $uni-info;
}
&--primary {
background-color: $uni-primary;
}
&--success {
background-color: $uni-success;
}
&--warning {
background-color: $uni-warning;
}
&--error {
background-color: $uni-error;
}
&--inverted {
padding: 0 5px 0 0;
color: $uni-info;
}
&--info-inverted {
color: $uni-info;
background-color: transparent;
}
&--primary-inverted {
color: $uni-primary;
background-color: transparent;
}
&--success-inverted {
color: $uni-success;
background-color: transparent;
}
&--warning-inverted {
color: $uni-warning;
background-color: transparent;
}
&--error-inverted {
color: $uni-error;
background-color: transparent;
}
}
</style>
{
"id": "uni-badge",
"displayName": "uni-badge 数字角标",
"version": "1.2.1",
"description": "数字角标(徽章)组件,在元素周围展示消息提醒,一般用于列表、九宫格、按钮等地方。",
"keywords": [
"",
"badge",
"uni-ui",
"uniui",
"数字角标",
"徽章"
],
"repository": "https://github.com/dcloudio/uni-ui",
"engines": {
"HBuilderX": ""
},
"directories": {
"example": "../../temps/example_temps"
},
"dcloudext": {
"sale": {
"regular": {
"price": "0.00"
},
"sourcecode": {
"price": "0.00"
}
},
"contact": {
"qq": ""
},
"declaration": {
"ads": "无",
"data": "无",
"permissions": "无"
},
"npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui",
"type": "component-vue"
},
"uni_modules": {
"dependencies": ["uni-scss"],
"encrypt": [],
"platforms": {
"cloud": {
"tcb": "y",
"aliyun": "y"
},
"client": {
"App": {
"app-vue": "y",
"app-nvue": "y"
},
"H5-mobile": {
"Safari": "y",
"Android Browser": "y",
"微信浏览器(Android)": "y",
"QQ浏览器(Android)": "y"
},
"H5-pc": {
"Chrome": "y",
"IE": "y",
"Edge": "y",
"Firefox": "y",
"Safari": "y"
},
"小程序": {
"微信": "y",
"阿里": "y",
"百度": "y",
"字节跳动": "y",
"QQ": "y"
},
"快应用": {
"华为": "y",
"联盟": "y"
},
"Vue": {
"vue2": "y",
"vue3": "y"
}
}
}
}
}
\ No newline at end of file
## Badge 数字角标
> **组件名:uni-badge**
> 代码块: `uBadge`
数字角标一般和其它控件(列表、9宫格等)配合使用,用于进行数量提示,默认为实心灰色背景,
### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-badge)
#### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
{"version":3,"sources":["webpack:///E:/gitlabWorkspace/露天炮孔验收仪小程序/yanshouyi-minipro/components/u-link/u-link.vue?9a7c","webpack:///E:/gitlabWorkspace/露天炮孔验收仪小程序/yanshouyi-minipro/components/u-link/u-link.vue?9b43","webpack:///E:/gitlabWorkspace/露天炮孔验收仪小程序/yanshouyi-minipro/components/u-link/u-link.vue?742b","webpack:///E:/gitlabWorkspace/露天炮孔验收仪小程序/yanshouyi-minipro/components/u-link/u-link.vue?d2e6","uni-app:///components/u-link/u-link.vue"],"names":["name","props","href","type","default","text","inWhiteList","methods","openURL","uni","url","data","content","showCancel"],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAmH;AACnH;AAC0D;AACL;;;AAGrD;AAC0M;AAC1M,gBAAgB,kNAAU;AAC1B,EAAE,4EAAM;AACR,EAAE,iFAAM;AACR,EAAE,0FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,qFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACtBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAyxB,CAAgB,yyBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;ACK7yB;AACA;AACA;AACA;AACA;AACA;AACA;AANA,eAOA;EACAA;EACAC;IACAC;MACAC;MACAC;IACA;IACAC;MACAF;MACAC;IACA;IACAE;MACAH;MACAC;IACA;EACA;EACAG;IACAC;MAQA;QAAA;QACAC;UACAC;QACA;MACA;QACAD;UACAE;QACA;QACAF;UACAG;UACAC;QACA;MACA;IAEA;EACA;AACA;AAAA,2B","file":"components/u-link/u-link.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./u-link.vue?vue&type=template&id=3d521004&\"\nvar renderjs\nimport script from \"./u-link.vue?vue&type=script&lang=js&\"\nexport * from \"./u-link.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"components/u-link/u-link.vue\"\nexport default component.exports","export * from \"-!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--17-0!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-link.vue?vue&type=template&id=3d521004&\"","var components\nvar render = function () {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--13-1!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-link.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--13-1!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./u-link.vue?vue&type=script&lang=js&\"","<template>\n\t<text style=\"text-decoration:underline\" :href=\"href\" @click=\"openURL\" :inWhiteList=\"inWhiteList\">{{text}}</text>\n</template>\n\n<script>\n\t/**\n\t * @description u-link是一个外部网页超链接组件,在小程序内打开内部web-view组件或复制url,在app内打开外部浏览器,在h5端打开新网页\n\t * @property {String} href 点击后打开的外部网页url,小程序中必须以https://开头\n\t * @property {String} text 显示的文字\n\t * @property {Boolean} inWhiteList 是否在小程序白名单中,如果在的话,在小程序端会直接打开内置web-view,否则会只会复制url,提示在外部打开\n\t * @example * <u-link href=\"https://ext.dcloud.net.cn\" text=\"https://ext.dcloud.net.cn\" :inWhiteList=\"true\"></u-link>\n\t */\n\texport default {\n\t\tname: 'u-link',\n\t\tprops: {\n\t\t\thref: {\n\t\t\t\ttype: String,\n\t\t\t\tdefault: ''\n\t\t\t},\n\t\t\ttext: {\n\t\t\t\ttype: String,\n\t\t\t\tdefault: ''\n\t\t\t},\n\t\t\tinWhiteList: {\n\t\t\t\ttype: Boolean,\n\t\t\t\tdefault: false\n\t\t\t}\n\t\t},\n\t\tmethods: {\n\t\t\topenURL() {\n\t\t\t\t// #ifdef APP-PLUS\n\t\t\t\tplus.runtime.openURL(this.href) //这里默认使用外部浏览器打开而不是内部web-view组件打开\n\t\t\t\t// #endif\n\t\t\t\t// #ifdef H5\n\t\t\t\twindow.open(this.href)\n\t\t\t\t// #endif\n\t\t\t\t// #ifdef MP\n\t\t\t\tif (this.inWhiteList) { //如果在小程序的网址白名单中,会走内置webview打开,否则会复制网址提示在外部浏览器打开\n\t\t\t\t\tuni.navigateTo({\n\t\t\t\t\t\turl: '/pages/component/web-view/web-view?url=' + this.href\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\tuni.setClipboardData({\n\t\t\t\t\t\tdata: this.href\n\t\t\t\t\t});\n\t\t\t\t\tuni.showModal({\n\t\t\t\t\t\tcontent: '本网址无法直接在小程序内打开。已自动复制网址,请在手机浏览器里粘贴该网址',\n\t\t\t\t\t\tshowCancel: false\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\t// #endif\n\t\t\t}\n\t\t}\n\t}\n</script>\n\n<style>\n\n</style>\n"],"sourceRoot":""}
\ No newline at end of file
{"version":3,"sources":["uni-app:///main.js","webpack:///E:/gitlabWorkspace/露天炮孔验收仪小程序/yanshouyi-minipro/pages/user/login.vue?c16b","webpack:///E:/gitlabWorkspace/露天炮孔验收仪小程序/yanshouyi-minipro/pages/user/login.vue?606c","webpack:///E:/gitlabWorkspace/露天炮孔验收仪小程序/yanshouyi-minipro/pages/user/login.vue?1397","webpack:///E:/gitlabWorkspace/露天炮孔验收仪小程序/yanshouyi-minipro/pages/user/login.vue?bdda","uni-app:///pages/user/login.vue"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page","onLoad","uni","provider","success","console","data","methods","getToken"],"mappings":";;;;;;;;;;;;;AAAA;AAE2D;AAC3D;AACA;AAHA;AACAA,EAAE,CAACC,iCAAiC,GAAGC,mBAAmB;AAG1DC,UAAU,CAACC,cAAI,CAAC,C;;;;;;;;;;;;;ACLhB;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;;;AAGpD;AAC0M;AAC1M,gBAAgB,kNAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACtBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAwxB,CAAgB,wyBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;ACoB5yB;;;;;;;;;;;;;;;;;;;;eACA;EACAC;IAAA;IACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;IAEAC;MACAC;MACAC;QACAC;QACA;QACAH;UACAC;UACAC;YACA;YACAC;UACA;QACA;MACA;IACA;EAEA;EACAC;IACA,QAEA;EACA;EACAC;IACAC;MAAA;QAAA;UAAA;YAAA;cAAA;cAAA;gBAAA;YAAA;UAAA;QAAA;MAAA;IAsBA,EArBA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;IAEA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;EAIA;AACA;AAAA,2B","file":"pages/user/login.js","sourcesContent":["import 'uni-pages';\n// @ts-ignore\nwx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;import '@dcloudio/uni-stat/dist/uni-cloud-stat.es.js';\nimport Vue from 'vue'\nimport Page from './pages/user/login.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./login.vue?vue&type=template&id=802e0a44&\"\nvar renderjs\nimport script from \"./login.vue?vue&type=script&lang=js&\"\nexport * from \"./login.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/user/login.vue\"\nexport default component.exports","export * from \"-!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--17-0!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=template&id=802e0a44&\"","var components\nvar render = function () {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--13-1!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--13-1!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!D:\\\\download\\\\HBuilderX.3.96.2023110403\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./login.vue?vue&type=script&lang=js&\"","<template>\n\t<view class=\"container\">\n\t\t<view class=\"authModal\">\n\t\t\t<view class='header'>\n\t\t\t\t<image src='https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1582442269885&di=244f11fe921a75d4be2b7f41bded8a48&imgtype=0&src=http%3A%2F%2Fimg.qqzhi.com%2Fuploads%2F2018-12-06%2F062323200.jpg'></image>\n\t\t\t</view>\n\t\t\t<view class='content'>\n\t\t\t\t<view>申请获取以下权限</view>\n\t\t\t\t<text>获得你的公开信息(昵称,头像、地区等)</text>\n\t\t\t</view>\n\n\t<!-- \t\t<button class='bottom' type='primary' open-type=\"getUserInfo\" withCredentials=\"true\" lang=\"zh_CN\" @getuserinfo=\"wxLogin\">\n\t\t\t\t授权登录\n\t\t\t</button> -->\n\t\t</view>\n\t</view>\n</template>\n\n\t\r\n<script>\r\n\timport {showCustomToast} from '../../common/util.js'\n\texport default {\r\n\t\tonLoad() {\r\n\t\t\t/**\r\n\t\t\t * {\n\t\t\t\t\t\"encryptedData\": \"z47dFJgWWcFlRiN38qzwykrxraYUj/caxt8nNJb/YonFtuGtMHCirL5G/GKWs/T7UDfmREUgyJ3z9nBiuCDE9XIbDslKTO3hpdM0Lw98gVZKOMtSjbmtAYTLbkUdDn4J6RdPYLIdCF8pUaqSZxkD+41tXW1JXKYrEuLWAZ5fmxn4rV0vCsnS+ciRdUWToq8s/KkMNHb0/1nlIyho5dz5GO1ac+BNvfk0YPrgkQdvMSCzB5NAQxUfFQERyErMW9dfQeQLXpelu0F00q778V1xAgmFWFh9IFIwVUyzSsCsMQHZpDPZT8nM3l/kNPRpK50L2msSxJ9H7lp2M8oUcQDPRttPakj1TyYb3iGDs6dx4lMBA38qbw5IYvWmrXw+A7avz/o+0u0RRrUR99u+ert6V1cg8ubDbMJGDqzAPlsTt6OdzIsGNZfddVZ/HR/9vJQc5OCgnMFRVDU9S+OTZbFLHQ==\", \n\t\t\t\t\t\"iv\": \"kdDnOvCrhjUS5J1vA5fK9A==\", \n\t\t\t\t\t\"signature\": \"7b9c21a62909b06fc1ba8291c808b4ec9fddde6d\", \n\t\t\t\t\t\"userInfo\": {\n\t\t\t\t\t\t\"nickName\": \"微信用户\", \n\t\t\t\t\t\t\"gender\": 0, \n\t\t\t\t\t\t\"language\": \"\", \n\t\t\t\t\t\t\"city\": \"\", \n\t\t\t\t\t\t\"province\": \"\", \n\t\t\t\t\t\t\"country\": \"\", \n\t\t\t\t\t\t\"avatarUrl\": \"https://thirdwx.qlogo.cn/mmopen/vi_32/POgEwh4mIHO4nibH0KlMECNjjGxQUq24ZEaGT4poC6icRiccVGKSyXwibcPq4BWmiaIGuG1icwxaQX6grC9VemZoJ8rg/132\"\n\t\t\t\t\t}, \n\t\t\t\t\t\"rawData\": \"{\\\"nickName\\\":\\\"微信用户\\\",\\\"gender\\\":0,\\\"language\\\":\\\"\\\",\\\"city\\\":\\\"\\\",\\\"province\\\":\\\"\\\",\\\"country\\\":\\\"\\\",\\\"avatarUrl\\\":\\\"https://thirdwx.qlogo.cn/mmopen/vi_32/POgEwh4mIHO4nibH0KlMECNjjGxQUq24ZEaGT4poC6icRiccVGKSyXwibcPq4BWmiaIGuG1icwxaQX6grC9VemZoJ8rg/132\\\"}\", \n\t\t\t\t\t\"errMsg\": \"getUserInfo:ok\"\n\t\t\t\t}\r\n\t\t\t */\r\n\t\t\t\r\n\t\t\tuni.login({\r\n\t\t\t provider: 'weixin',\r\n\t\t\t success: (loginRes)=> {\r\n\t\t\t console.log('loginRes: '+JSON.stringify(loginRes));\r\n\t\t\t // 获取用户信息\r\n\t\t\t uni.getUserInfo({\r\n\t\t\t provider: 'weixin',\r\n\t\t\t success: (infoRes) => {\r\n\t\t\t\t\t this.getToken()\r\n\t\t\t console.log('infoRes:' + JSON.stringify(infoRes));\r\n\t\t\t }\r\n\t\t\t });\r\n\t\t\t }\r\n\t\t\t});\r\n\r\n\t\t},\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\t\n\t\t\t}\n\t\t},\n\t\tmethods: {\r\n\t\t\tasync getToken(reqObj){\r\n\t\t\t\t// let [error, res] = await uni.request({\r\n\t\t\t\t// \turl: `${BASE_URI}/api/login/weChatLogin`,\r\n\t\t\t\t// \tdata: {\r\n\t\t\t\t// \t\t...reqObj\r\n\t\t\t\t// \t},\r\n\t\t\t\t// \tmethod,\r\n\t\t\t\t// \theader: {\r\n\t\t\t\t// \t\t'accessToken': uni.getStorageSync('accessToken'),\r\n\t\t\t\t// \t}\r\n\t\t\t\t// });\r\n\t\t\t\t\r\n\t\t\t\t// if (error) {\r\n\t\t\t\t// \tshowCustomToast({\r\n\t\t\t\t// \t\ttitle: '网络错误'\r\n\t\t\t\t// \t})\r\n\t\t\t\t// \treturn\r\n\t\t\t\t// }\r\n\t\t\t\t// if(res){\r\n\t\t\t\t// \tuni.setStorageSync('accessToken', res.accessToken)\r\n\t\t\t\t// }\r\n\t\t\t\t\r\n\t\t\t}\n\t\t\t\n\t\t}\n\t}\n</script>\n\n<style>\n\n</style>\n"],"sourceRoot":""}
\ No newline at end of file
require('./common/runtime.js')
require('./common/vendor.js')
require('./common/main.js')
\ No newline at end of file
{
"pages": [
"pages/home/home",
"pages/home/importFile",
"pages/home/importFileDataPreview",
"pages/home/blueTest",
"pages/home/blueSearch",
"pages/home/blueMeasure",
"pages/tabBar/component/component",
"pages/tabBar/template/template",
"pages/user/login"
],
"subPackages": [],
"window": {
"pageOrientation": "portrait",
"navigationStyle": "custom",
"navigationBarTitleText": "Hello uniapp",
"navigationBarTextStyle": "white",
"navigationBarBackgroundColor": "#007AFF",
"backgroundColor": "#F8F8F8",
"backgroundColorTop": "#F4F5F6",
"backgroundColorBottom": "#F4F5F6"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#007AFF",
"borderStyle": "black",
"backgroundColor": "#F8F8F8",
"list": [
{
"pagePath": "pages/home/home",
"iconPath": "static/component.png",
"selectedIconPath": "static/componentHL.png",
"text": "内置组件"
},
{
"pagePath": "pages/tabBar/template/template",
"iconPath": "static/template.png",
"selectedIconPath": "static/templateHL.png",
"text": "模板"
}
]
},
"permission": {},
"usingComponents": {}
}
\ No newline at end of file
@import './common/main.wxss';
[data-custom-hidden="true"],[bind-data-custom-hidden="true"]{display: none !important;}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
{
"usingComponents": {},
"component": true
}
\ No newline at end of file
<text style="text-decoration:underline;" href="{{href}}" inWhiteList="{{inWhiteList}}" data-event-opts="{{[['tap',[['openURL',['$event']]]]]}}" bindtap="__e">{{text}}</text>
\ No newline at end of file
{
"usingComponents": {},
"component": true
}
\ No newline at end of file
<view data-event-opts="{{[['longtap',[['displayLogs',['$event']]]]]}}" class="navbar" bindlongtap="__e"><view data-event-opts="{{[['tap',[['goBack',['$event']]]]]}}" hidden="{{!(showLeft)}}" class="left" bindtap="__e"><image style="width:16rpx;height:30rpx;" src="../../static/image/home/return.png" mode></image></view><view class="center"><text class="title">{{title}}</text></view><view class="right"><slot></slot></view></view>
\ No newline at end of file
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
height: 100rpx;
padding: 10rpx 40rpx;
/* background-color: #007AFF; */
/* background: linear-gradient(180deg, #007AFF 0%, #419AFF 20%); */
background-color: transparent;
/* border-bottom: 1px solid #eaeaea; */
}
.left, .center, .right {
display: flex;
align-items: center;
}
.title {
font-size: 36rpx;
color: #fff;
margin-left: 20rpx;
}
.back-button {
background: none;
border: none;
color: #007aff; /* iOS 风格蓝色 */
}
This diff is collapsed.
{
"navigationBarTitleText": "孔测量",
"usingComponents": {
"uni-row": "/uni_modules/uni-row/components/uni-row/uni-row",
"uni-col": "/uni_modules/uni-row/components/uni-col/uni-col",
"uni-data-select": "/uni_modules/uni-data-select/components/uni-data-select/uni-data-select",
"custom-navbar": "/pages/component/CustomNavbar"
}
}
\ No newline at end of file
<view class="pageWrapper"><custom-navbar vue-id="fe05a48e-1" title="{{navBarTitle}}" goBackUrl="/pages/home/home" data-event-opts="{{[['^gobackDeal',[['gobackDeal']]]]}}" bind:gobackDeal="__e" bind:__l="__l"></custom-navbar><view class="body-wrapper"><view class="sumary-title">手动填写数据</view><uni-row class="demo-uni-row mb-10" vue-id="fe05a48e-2" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('fe05a48e-3')+','+('fe05a48e-2')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>工程名称</view></uni-col><uni-col vue-id="{{('fe05a48e-4')+','+('fe05a48e-2')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><uni-data-select vue-id="{{('fe05a48e-5')+','+('fe05a48e-4')}}" localdata="{{selectListLv1}}" clear="{{false}}" value="{{form.engineeringName}}" data-event-opts="{{[['^change',[['changeLv1']]],['^input',[['__set_model',['$0','engineeringName','$event',[]],['form']]]]]}}" bind:change="__e" bind:input="__e" bind:__l="__l"></uni-data-select></uni-col></uni-row><uni-row class="demo-uni-row mb-10" vue-id="fe05a48e-6" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('fe05a48e-7')+','+('fe05a48e-6')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>中段名称</view></uni-col><uni-col vue-id="{{('fe05a48e-8')+','+('fe05a48e-6')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><uni-data-select vue-id="{{('fe05a48e-9')+','+('fe05a48e-8')}}" localdata="{{selectListLv2}}" clear="{{false}}" value="{{form.middleSectionName}}" data-event-opts="{{[['^change',[['changeLv2']]],['^input',[['__set_model',['$0','middleSectionName','$event',[]],['form']]]]]}}" bind:change="__e" bind:input="__e" bind:__l="__l"></uni-data-select></uni-col></uni-row><uni-row class="demo-uni-row mb-10" vue-id="fe05a48e-10" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('fe05a48e-11')+','+('fe05a48e-10')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>分段名称</view></uni-col><uni-col vue-id="{{('fe05a48e-12')+','+('fe05a48e-10')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><uni-data-select vue-id="{{('fe05a48e-13')+','+('fe05a48e-12')}}" localdata="{{selectListLv3}}" clear="{{false}}" value="{{form['segmentName']}}" data-event-opts="{{[['^change',[['changeLv3']]],['^input',[['__set_model',['$0','segmentName','$event',[]],['form']]]]]}}" bind:change="__e" bind:input="__e" bind:__l="__l"></uni-data-select></uni-col></uni-row><uni-row class="demo-uni-row mb-10" vue-id="fe05a48e-14" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('fe05a48e-15')+','+('fe05a48e-14')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>排位线名称</view></uni-col><uni-col vue-id="{{('fe05a48e-16')+','+('fe05a48e-14')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><uni-data-select vue-id="{{('fe05a48e-17')+','+('fe05a48e-16')}}" localdata="{{selectListLv4}}" clear="{{false}}" value="{{form['alignmentLineName']}}" data-event-opts="{{[['^change',[['changeLv4']]],['^input',[['__set_model',['$0','alignmentLineName','$event',[]],['form']]]]]}}" bind:change="__e" bind:input="__e" bind:__l="__l"></uni-data-select></uni-col></uni-row><uni-row class="demo-uni-row mb-10" vue-id="fe05a48e-18" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('fe05a48e-19')+','+('fe05a48e-18')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>炮孔编号</view></uni-col><uni-col vue-id="{{('fe05a48e-20')+','+('fe05a48e-18')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><uni-data-select vue-id="{{('fe05a48e-21')+','+('fe05a48e-20')}}" localdata="{{selectListLv5}}" clear="{{false}}" value="{{form['boreholeNumber']}}" data-event-opts="{{[['^change',[['changeLv5']]],['^input',[['__set_model',['$0','boreholeNumber','$event',[]],['form']]]]]}}" bind:change="__e" bind:input="__e" bind:__l="__l"></uni-data-select></uni-col></uni-row><uni-row class="demo-uni-row mb-10" vue-id="fe05a48e-22" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('fe05a48e-23')+','+('fe05a48e-22')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>透孔</view></uni-col><uni-col vue-id="{{('fe05a48e-24')+','+('fe05a48e-22')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><view class="_content unaffix">{{''+(form['throughHole']||'-')+''}}</view></uni-col></uni-row><uni-row class="demo-uni-row mb-10" vue-id="fe05a48e-25" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('fe05a48e-26')+','+('fe05a48e-25')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>设计孔深</view></uni-col><uni-col vue-id="{{('fe05a48e-27')+','+('fe05a48e-25')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><view class="_content">{{''+(form['designHoleDepth']||'-')+''}}</view></uni-col></uni-row><uni-row class="demo-uni-row mb-10" vue-id="fe05a48e-28" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('fe05a48e-29')+','+('fe05a48e-28')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>设计倾角</view></uni-col><uni-col vue-id="{{('fe05a48e-30')+','+('fe05a48e-28')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><view class="_content angle"><view>{{form['designInclination']||'-'}}</view></view></uni-col></uni-row></view><view class="body-wrapper auto"><view class="sumary-title">自动更新数据</view><uni-row class="demo-uni-row mb-10" vue-id="fe05a48e-31" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('fe05a48e-32')+','+('fe05a48e-31')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>实测孔深</view></uni-col><uni-col vue-id="{{('fe05a48e-33')+','+('fe05a48e-31')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><view class="_content">{{''+(form['realTestHoleDepth']||'-')+''}}</view></uni-col></uni-row><uni-row class="demo-uni-row mb-10 demo-uni-row-unborder" vue-id="fe05a48e-34" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('fe05a48e-35')+','+('fe05a48e-34')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>实测倾角</view></uni-col><uni-col vue-id="{{('fe05a48e-36')+','+('fe05a48e-34')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><view class="_content angle"><view>{{form['realTestInclination']||'-'}}</view></view></uni-col></uni-row></view><view hidden="{{!(connected)}}" class="footer-wrapper"><view data-event-opts="{{[['tap',[['gosend',['START']]]]]}}" class="{{['funcBtn',(btnLoading)?'loading':'']}}" bindtap="__e">{{''+(btnLoading?'测量中':'开始测量')+''}}</view><view data-event-opts="{{[['tap',[['gosend',['STOP']]]]]}}" class="funcBtn end" bindtap="__e">结束测量</view></view><view hidden="{{!(!connected)}}" style="text-align:center;color:darkgray;margin-top:20rpx;">{{''+pageLoadText+''}}</view></view>
\ No newline at end of file
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.uni-row::after {
clear: both;
width: 608rpx;
border-bottom: 1rpx solid #E3E6EC;
-webkit-transform: translateX(28rpx);
transform: translateX(28rpx);
}
.pageWrapper {
width: 100vw;
height: calc(100vh-44rpx);
padding-top: 44rpx;
background: linear-gradient(180deg, #007AFF 0%, #419AFF 16%, #EFF1F4 43%);
}
.body-wrapper {
margin: 0 auto;
width: 690rpx;
padding-top: 20rpx;
padding-left: 15rpx;
padding-right: 15rpx;
background: #FFFFFF;
border-radius: 10rpx;
}
.body-wrapper.auto {
margin-top: 30rpx;
background-color: #D1E5FB;
}
.body-wrapper.auto .demo-uni-row {
padding-top: 10rpx;
padding-bottom: 10rpx;
}
.body-wrapper.auto .uni-row::after {
border-bottom-color: #FFFFFF;
}
.body-wrapper.auto .demo-uni-row-unborder::after {
border-bottom-color: transparent;
}
.body-wrapper .sumary-title {
position: relative;
padding-left: 50rpx;
font-size: 32rpx;
color: #007AFF;
margin-top: 20rpx;
margin-bottom: 20rpx;
}
.body-wrapper .sumary-title:before {
content: '';
width: 16rpx;
height: 16rpx;
background: #007AFF;
border-radius: 50%;
position: absolute;
left: 20rpx;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.logo-wrapper {
display: flex;
justify-content: center;
}
.logo-wrapper image {
width: 366rpx;
height: 432rpx;
margin: 0 auto;
}
.mb-10 {
margin-bottom: 10rpx;
}
._title {
height: 70rpx;
text-align: center;
line-height: 70rpx;
margin-right: 10rpx;
font-size: 29rpx;
font-weight: bold;
color: #000000;
}
._content {
height: 70rpx;
line-height: 70rpx;
padding-left: 20rpx;
position: relative;
}
._content:after {
content: 'm';
width: 70rpx;
height: 70rpx;
position: absolute;
right: -12rpx;
top: 0;
text-align: center;
line-height: 70rpx;
font-size: 29rpx;
color: #000000;
}
.funcBtn {
width: 280rpx;
height: 70rpx;
line-height: 70rpx;
background: #007AFF;
border-radius: 35rpx;
text-align: center;
font-size: 29rpx;
color: #FFFFFF;
border: 2px solid #007AFF;
}
.funcBtn.end {
background: #FFFFFF;
color: #007AFF;
}
.funcBtn.loading {
opacity: 0.5;
}
.footer-wrapper {
display: flex;
justify-content: space-around;
margin-top: 50rpx;
}
.angle:after {
content: '°';
}
.unaffix:after {
display: none;
}
/**
* 蓝牙连接互动相关
*/
page {
color: #333;
}
/*划线 */
.line {
background-color: blue;
height: 5px;
width: 100%;
}
.div {
background-color: white;
height: 10px;
width: 10px;
}
.blank {
height: 150rpx;
}
This diff is collapsed.
{
"navigationBarTitleText": "蓝牙扫描",
"usingComponents": {
"custom-navbar": "/pages/component/CustomNavbar"
}
}
\ No newline at end of file
<view class="wrapper"><custom-navbar vue-id="6e85fcbd-1" title="蓝牙扫描" data-event-opts="{{[['^gobackDeal',[['gobackDeal',['blueSearch']]]]]}}" bind:gobackDeal="__e" bind:__l="__l"></custom-navbar><view class="body-wrapper"><view class="devices_summary found">{{"已发现 "+$root.g0+" 个BLE设备:"}}</view><scroll-view class="device_list" scroll-y="{{true}}" scroll-with-animation="{{true}}"><block wx:for="{{devices}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="device_item" data-device-id="{{item.deviceId}}" data-device-name="{{item.name||item.localName}}" hover-class="device_item_hover" data-event-opts="{{[['tap',[['goto_Comm',['$event']]]]]}}" bindtap="__e"><view style="font-size:32rpx;color:#000;">{{item.name}}</view><view style="font-size:27rpx;color:#676767;">{{"RSSI: "+item.RSSI+"dBm"}}</view><view style="font-size:27rpx;color:#676767;">{{item.deviceId}}</view></view></block></scroll-view></view><button class="button_sp" loading="{{misScanding}}" hover-class="button_sp2" data-event-opts="{{[['tap',[['openBluetoothAdapter',['$event']]]]]}}" bindtap="__e">{{scandbutName}}</button></view>
\ No newline at end of file
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.wrapper {
width: 100vw;
height: calc(100vh-44rpx);
padding-top: 44rpx;
background: linear-gradient(180deg, #007AFF 0%, #419AFF 16%, #EFF1F4 43%);
}
.body-wrapper {
margin: 0 auto;
/* display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 20rpx; */
width: 690rpx;
height: 70vh;
padding-top: 20rpx;
background: #FFFFFF;
border-radius: 10rpx;
}
.body-wrapper .found {
width: 642rpx;
height: 60rpx;
margin: 20rpx auto;
background: #D5D7DB;
border-radius: 30rpx;
font-size: 29rpx;
color: #000000;
line-height: 60rpx;
text-align: center;
}
page {
color: #333;
}
/* .devices_summary {
padding: 10px;
font-size: 16px;
background-color: hsl(216, 5%, 22%);
color: #fff;
align-items: center;
justify-content: center;
display: flex;
} */
.device_list {
max-height: 60vh;
margin: 50px 5px;
margin-top: 5px;
border-radius: 5px;
width: auto;
}
.device_item {
border-bottom: 1px solid #E3E6EC;
padding: 10px;
color: #666;
}
.device_item_hover {
background-color: rgba(0, 0, 0, 0.1);
}
.connected_info {
position: fixed;
bottom: 0;
width: 100%;
background-color: #f0f0f0;
padding: 10px;
padding-bottom: 20px;
margin-bottom: env(safe-area-inset-bottom);
font-size: 14px;
min-height: 100px;
box-shadow: 0px 0px 3px 0px;
}
.connected_info .operation {
position: absolute;
display: inline-block;
right: 30px;
}
.button_sp {
width: 686rpx;
height: 70rpx;
background: #007AFF;
border-radius: 35px;
font-size: 29rpx;
color: #FFFFFF;
margin-top: 20rpx;
position: fixed;
bottom: 50rpx;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.button_sp2 {
margin-left: 10px;
margin-right: 10px;
margin-top: 5px;
background-color: #757575;
color: #fff;
}
.flex-wrp {
height: auto;
display: flex;
background-color: #ffffff;
}
/*横向布局 */
.layout_horizontal {
display: flex;
/*row 横向 column 列表 */
flex-direction: row;
}
/*纵向布局 */
.layout_vertical {
height: 100rpx;
display: flex;
/*row 横向 column 列表 */
flex-direction: column;
}
/*划线 */
.line {
background-color: blue;
height: 5px;
width: 100%;
}
.div {
background-color: white;
height: 10px;
width: 10px;
}
This diff is collapsed.
{
"navigationBarTitleText": "设备测试",
"usingComponents": {
"uni-row": "/uni_modules/uni-row/components/uni-row/uni-row",
"uni-col": "/uni_modules/uni-row/components/uni-col/uni-col",
"custom-navbar": "/pages/component/CustomNavbar"
}
}
\ No newline at end of file
<view class="pageWrapper"><custom-navbar vue-id="23ce71d3-1" title="{{navBarTitle}}" goBackUrl="/pages/home/home" data-event-opts="{{[['^gobackDeal',[['gobackDeal']]]]}}" bind:gobackDeal="__e" bind:__l="__l"></custom-navbar><view class="body-wrapper"><view class="logo-wrapper"><image src="/static/image/home/product.png" alt></image></view><uni-row class="demo-uni-row mb-10" vue-id="23ce71d3-2" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('23ce71d3-3')+','+('23ce71d3-2')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>实测孔深</view></uni-col><uni-col vue-id="{{('23ce71d3-4')+','+('23ce71d3-2')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><view class="_content">{{''+(form['realTestHoleDepth']||'-')+''}}</view></uni-col></uni-row><uni-row class="demo-uni-row mb-10" vue-id="23ce71d3-5" bind:__l="__l" vue-slots="{{['default']}}"><uni-col class="_title" vue-id="{{('23ce71d3-6')+','+('23ce71d3-5')}}" span="{{6}}" bind:__l="__l" vue-slots="{{['default']}}"><view>实测倾角</view></uni-col><uni-col vue-id="{{('23ce71d3-7')+','+('23ce71d3-5')}}" span="{{16}}" bind:__l="__l" vue-slots="{{['default']}}"><view class="_content angle"><view>{{form['realTestInclination']||'-'}}</view></view></uni-col></uni-row></view><view hidden="{{!(connected)}}" class="footer-wrapper"><view data-event-opts="{{[['tap',[['gosend',['START']]]]]}}" class="{{['funcBtn',(btnLoading)?'loading':'']}}" bindtap="__e">{{''+(btnLoading?'测量中':'开始测量')+''}}</view><view data-event-opts="{{[['tap',[['gosend',['STOP']]]]]}}" class="funcBtn end" bindtap="__e">结束测量</view></view><view hidden="{{!(!connected)}}" style="text-align:center;color:darkgray;margin-top:20rpx;">{{''+pageLoadText+''}}</view></view>
\ No newline at end of file
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.pageWrapper {
width: 100vw;
height: calc(100vh-44rpx);
padding-top: 44rpx;
background: linear-gradient(180deg, #007AFF 0%, #419AFF 16%, #EFF1F4 43%);
}
.body-wrapper {
margin: 0 auto;
width: 690rpx;
height: 70vh;
padding-top: 20rpx;
padding-left: 15rpx;
padding-right: 15rpx;
background: #FFFFFF;
border-radius: 10rpx;
}
.logo-wrapper {
display: flex;
justify-content: center;
}
.logo-wrapper image {
width: 366rpx;
height: 432rpx;
margin: 0 auto;
}
.mb-10 {
margin-bottom: 10rpx;
}
._title {
height: 70rpx;
text-align: center;
line-height: 70rpx;
margin-right: 10rpx;
font-size: 29rpx;
color: #000000;
font-weight: bold;
}
._content {
height: 70rpx;
line-height: 70rpx;
padding-left: 20rpx;
}
._content:after {
content: 'm';
width: 70rpx;
height: 70rpx;
position: absolute;
right: 0;
top: 0;
text-align: center;
line-height: 70rpx;
font-size: 29rpx;
color: #000000;
}
.funcBtn {
width: 280rpx;
height: 70rpx;
line-height: 70rpx;
background: #007AFF;
border-radius: 35rpx;
text-align: center;
font-size: 29rpx;
color: #FFFFFF;
border: 2px solid #007AFF;
}
.funcBtn.end {
background: #FFFFFF;
color: #007AFF;
}
.funcBtn.loading {
opacity: 0.5;
}
.footer-wrapper {
display: flex;
justify-content: space-around;
margin-top: 50rpx;
}
.angle:after {
content: '°';
}
.unaffix:after {
display: none;
}
/**
* 蓝牙连接互动相关
*/
page {
color: #333;
}
.button_sp {
margin-left: 5px;
margin-right: 5px;
margin-top: 5px;
background-color: #10b7ff;
color: #fff;
font-size: 15px;
}
.button_sp2 {
margin-left: 5px;
margin-right: 5px;
margin-top: 5px;
background-color: #757575;
color: #fff;
}
.flex-wrp {
height: auto;
display: flex;
background-color: #ffffff;
}
.flex-wrp2 {
margin-left: 5px;
margin-right: 5px;
margin-top: 8px;
font-size: 12px;
}
/*横向布局 */
.layout_horizontal {
display: flex;
/*row 横向 column 列表 */
flex-direction: row;
}
/*纵向布局 */
.layout_vertical {
height: 100rpx;
display: flex;
/*row 横向 column 列表 */
flex-direction: column;
}
/*划线 */
.line {
background-color: blue;
height: 5px;
width: 100%;
}
.div {
background-color: white;
height: 10px;
width: 10px;
}
.flex-view-item {
color: #eee;
margin-left: 5px;
margin-top: 1px;
margin-bottom: 1px;
font-size: 13px;
display: flex;
align-items: center;
justify-content: center;
}
.container {
background-color: #fff;
background-size: cover;
width: 98%;
margin-left: 0.7%;
justify-content: center;
border-radius: 3px;
border: 1px solid #111;
white-space: normal;
}
.txt-light {
color: #0b0d0d;
font-size: 13px;
margin-left: 3px;
white-space: pre-line;
display: block;
width: 100%;
}
.note_itemtext {
display: -webkit-box;
font-size: 26rpx;
color: #000000;
line-height: 40rpx;
word-break: break-all;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.blank {
height: 150rpx;
}
.devices_summary {
margin-top: 5px;
font-size: 16px;
color: #222;
align-items: center;
justify-content: center;
display: flex;
}
.show-btn {
margin-top: 100rpx;
color: #22cc22;
}
This diff is collapsed.
{
"navigationBarTitleText": "",
"usingComponents": {
"custom-navbar": "/pages/component/CustomNavbar"
}
}
\ No newline at end of file
<view class="wrapper"><custom-navbar vue-id="1da55560-1" title showLeft="{{false}}" bind:__l="__l" vue-slots="{{['default']}}"><image class="langImg" style="width:55rpx;height:44rpx;" src="../../static/image/home/change.png" mode></image></custom-navbar><view class="body-wrapper"><view class="logo-wrapper"><image class="logoImg" src="/static/image/home/logo.png" alt></image><view class="_h3">露天炮孔验收仪</view></view><view class="list-item _p"><image src="/static/image/home/icon1.png" alt></image><label class="_span">登录</label><button class="funcBtn" size="mini" type="primary" data-event-opts="{{[['tap',[['navTo',['login']]]]]}}" bindtap="__e">登录</button></view><view class="list-item _p"><image src="/static/image/home/icon1.png" alt></image><label class="_span">登录</label><button class="funcBtn" size="mini" type="primary" data-event-opts="{{[['tap',[['navTo',['import']]]]]}}" bindtap="__e">导入导出</button></view><view class="list-item _p"><image src="/static/image/home/icon2.png" alt></image><label class="_span">连接中深孔验收仪</label><button class="funcBtn" size="mini" type="primary" data-event-opts="{{[['tap',[['navTo',['link']]]]]}}" bindtap="__e">连接</button></view><view class="list-item _p"><image src="/static/image/home/icon3.png" alt></image><label class="_span">设备测试</label><button class="funcBtn" size="mini" type="primary" data-event-opts="{{[['tap',[['navTo',['measureTest']]]]]}}" bindtap="__e">测量</button></view><view class="list-item _p"><image src="/static/image/home/icon4.png" alt></image><label class="_span">炮孔测量</label><button class="funcBtn" size="mini" type="primary" data-event-opts="{{[['tap',[['navTo',['measure']]]]]}}" bindtap="__e">测量</button></view><view class="list-item _p"><image src="/static/image/home/icon1.png" alt></image><label class="_span">钻孔测量数据列表</label><button class="funcBtn" size="mini" type="primary" data-event-opts="{{[['tap',[['navTo',['export']]]]]}}" bindtap="__e">导出</button></view><view class="footer"><label class="_span">威海晶合数字矿山技术有限公司</label></view></view></view>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
{
"navigationBarTitleText": "导入文件",
"usingComponents": {}
}
\ No newline at end of file
<view class="content"><view data-event-opts="{{[['tap',[['uploadExcel',['$event']]]]]}}" class="jisuanqi" style="margin-top:100rpx;" bindtap="__e">导入</view><view data-event-opts="{{[['tap',[['exportExcel',['$event']]]]]}}" class="jisuanqi" style="margin-top:100rpx;" bindtap="__e">导出</view></view>
\ No newline at end of file
{
"navigationBarTitleText": "导入文件数据预览",
"usingComponents": {}
}
\ No newline at end of file
<view class="pageWrapper"><view class="_table"><view class="_caption">导入数据预览</view><view class="_tr"><view class="_th">工程名称</view><view class="_th">中段名称</view><view class="_th">分段名称</view><view class="_th">排位线名称</view><view class="_th">炮孔编号</view><view class="_th">透孔</view><view class="_th">设计孔深</view><view class="_th">设计倾角</view><view class="_th">实测孔深</view><view class="_th">实测倾角</view><view class="_th">实测时间</view></view><block wx:for="{{dataList}}" wx:for-item="item" wx:for-index="__i0__"><view class="_tr"><view class="_td">{{item['engineeringName']}}</view><view class="_td">{{item['middleSectionName']}}</view><view class="_td">{{item['segmentName']}}</view><view class="_td">{{item['alignmentLineName']}}</view><view class="_td">{{item['boreholeNumber']}}</view><view class="_td">{{item['throughHole']}}</view><view class="_td">{{item['designHoleDepth']}}</view><view class="_td">{{item['designInclination']}}</view><view class="_td">{{item['realTestHoleDepth']}}</view><view class="_td">{{item['realTestInclination']}}</view><view class="_td">{{item['realTestTime']}}</view></view></block></view></view>
\ No newline at end of file
{
"usingComponents": {}
}
\ No newline at end of file
<view class="uni-container"><button data-event-opts="{{[['tap',[['test',['$event']]]]]}}" bindtap="__e">导出excel文件测试</button><button data-event-opts="{{[['tap',[['go2test',['$event']]]]]}}" bindtap="__e">跳转导出excel文件测试</button><button data-event-opts="{{[['tap',[['go2test1',['$event']]]]]}}" bindtap="__e">跳转导出excel文件测试Local 非xlsx</button></view>
\ No newline at end of file
{
"usingComponents": {
"u-link": "/components/u-link/u-link"
}
}
\ No newline at end of file
This diff is collapsed.
{
"navigationBarTitleText": "",
"usingComponents": {}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment