Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
uniapp_scan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
android
uniapp_scan
Commits
79a2f50d
Commit
79a2f50d
authored
May 23, 2024
by
mengcuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new pro
parent
96a3cde0
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
579 additions
and
579 deletions
+579
-579
App.vue
scan/App.vue
+1
-1
index.vue
scan/components/index/index.vue
+199
-199
manifest.json
scan/manifest.json
+3
-3
result.vue
scan/pagesC/result/result.vue
+94
-94
superresult.vue
scan/pagesC/superresult/superresult.vue
+99
-99
transresult.vue
scan/pagesC/transresult/transresult.vue
+84
-84
about.vue
scan/pagesD/about/about.vue
+57
-57
setting.vue
scan/pagesD/setting/setting.vue
+42
-42
logo-about.png
scan/static/logo-about.png
+0
-0
No files found.
scan/App.vue
View file @
79a2f50d
...
...
@@ -127,7 +127,7 @@
auth
:
false
,
// 三要素实名认证
userInfo
:
null
,
cardInfo
:
null
,
pkgName
:
'com.mingshu.scan
demon
'
pkgName
:
'com.mingshu.scan
lxds
'
}
};
</
script
>
...
...
scan/components/index/index.vue
View file @
79a2f50d
This diff is collapsed.
Click to expand it.
scan/manifest.json
View file @
79a2f50d
{
"name"
:
"
智能扫描精灵
"
,
"appid"
:
"__UNI__
49410
01"
,
"name"
:
"
灵犀扫描大师
"
,
"appid"
:
"__UNI__
7C581
01"
,
"description"
:
""
,
"versionName"
:
"1.0.0"
,
"versionCode"
:
1000
,
...
...
@@ -165,7 +165,7 @@
"uniStatistics"
:
{
"enable"
:
false
},
"appid"
:
"tt
21e1575cbed7b453
01"
"appid"
:
"tt
d1eba7564edd445e
01"
},
"uniStatistics"
:
{
"enable"
:
false
,
...
...
scan/pagesC/result/result.vue
View file @
79a2f50d
<
template
>
<view
class=
"body"
>
<!--
<status-title
:showBack=
"true"
iconColor=
"black"
>
识别结果
</status-title>
-->
<view
style=
"display: flex;flex-direction: column;height: 100%;"
>
<view
style=
"height: 40%; display: flex;justify-content: center;align-items: center;"
>
<image
mode=
"heightFix"
:src=
"imgUrl"
/>
</view>
<view
style=
"background: white;height: 50%;display: flex;flex-direction: column;padding: 30rpx 20rpx;"
>
<view
style=
"font-weight: bold;padding-left: 10rpx;font-size: 40rpx;"
>
识别结果
</view>
<scroll-view
:scroll-y=
"true"
style=
"overflow: hidden;white-space: nowrap;flex:1;"
>
<view
v-if=
"type==3 || type == 1 || type == 4"
>
<block
v-for=
"(item, index) in dataList"
:key=
"index"
>
<view>
<view
style=
"margin: 10rpx;font-size: 30rpx;"
>
{{
item
}}
</view>
<view
style=
"height: 1rpx;width: 100%;background: darkgray;"
v-if=
"index
<dataList
.
length-1
"
></view>
</view>
</block>
</view>
</scroll-view>
</view>
<view
style=
"height: 10%;display: flex;flex-direction: row;background: white;"
>
<view
@
click=
"copy"
style=
"display: flex;flex-direction: column;flex: 1;align-items: center;padding-top: 20rpx;"
>
<image
style=
"width: 30rpx;height: 30rpx;"
src=
"../../static/ic_copy.png"
>
</image>
<view
style=
"font-size: 30rpx;"
>
复制
</view>
</view>
<button
open-type=
"share"
style=
"display: flex;flex-direction: column;flex: 1;align-items: center;padding-top: 20rpx;"
>
<image
style=
"width: 30rpx;height: 30rpx;"
src=
"../../static/ic_copy.png"
>
</image>
<view
style=
"font-size: 30rpx;"
>
导出
</view>
</button>
</view>
</view>
</view>
</
template
>
<
script
>
import
common
from
'@/mixins/common'
;
const
app
=
getApp
();
export
default
{
name
:
'result'
,
mixins
:
[
common
],
data
()
{
return
{
result
:
''
,
imgUrl
:
''
,
dataList
:
[],
type
:
0
};
},
onLoad
(
option
)
{
this
.
type
=
option
.
type
this
.
result
=
decodeURIComponent
(
option
.
result
)
this
.
imgUrl
=
decodeURIComponent
(
option
.
imgUrl
)
this
.
dataList
=
this
.
result
.
split
(
'
\
n'
)
},
onShareAppMessage
()
{
return
{
title
:
'
智能扫描精灵'
,
summary
:
this
.
result
,
success
()
{
console
.
log
(
'分享成功'
);
},
fail
(
err
)
{
console
.
error
(
'分享失败'
,
err
);
}
};
},
methods
:
{
copy
()
{
uni
.
setClipboardData
({
data
:
this
.
result
,
complete
()
{
uni
.
showToast
({
title
:
"已复制到剪贴板"
})
}
})
}
},
}
</
script
>
<
style
lang=
"scss"
>
<
template
>
<view
class=
"body"
>
<!--
<status-title
:showBack=
"true"
iconColor=
"black"
>
识别结果
</status-title>
-->
<view
style=
"display: flex;flex-direction: column;height: 100%;"
>
<view
style=
"height: 40%; display: flex;justify-content: center;align-items: center;"
>
<image
mode=
"heightFix"
:src=
"imgUrl"
/>
</view>
<view
style=
"background: white;height: 50%;display: flex;flex-direction: column;padding: 30rpx 20rpx;"
>
<view
style=
"font-weight: bold;padding-left: 10rpx;font-size: 40rpx;"
>
识别结果
</view>
<scroll-view
:scroll-y=
"true"
style=
"overflow: hidden;white-space: nowrap;flex:1;"
>
<view
v-if=
"type==3 || type == 1 || type == 4"
>
<block
v-for=
"(item, index) in dataList"
:key=
"index"
>
<view>
<view
style=
"margin: 10rpx;font-size: 30rpx;"
>
{{
item
}}
</view>
<view
style=
"height: 1rpx;width: 100%;background: darkgray;"
v-if=
"index
<dataList
.
length-1
"
></view>
</view>
</block>
</view>
</scroll-view>
</view>
<view
style=
"height: 10%;display: flex;flex-direction: row;background: white;"
>
<view
@
click=
"copy"
style=
"display: flex;flex-direction: column;flex: 1;align-items: center;padding-top: 20rpx;"
>
<image
style=
"width: 30rpx;height: 30rpx;"
src=
"../../static/ic_copy.png"
>
</image>
<view
style=
"font-size: 30rpx;"
>
复制
</view>
</view>
<button
open-type=
"share"
style=
"display: flex;flex-direction: column;flex: 1;align-items: center;padding-top: 20rpx;"
>
<image
style=
"width: 30rpx;height: 30rpx;"
src=
"../../static/ic_copy.png"
>
</image>
<view
style=
"font-size: 30rpx;"
>
导出
</view>
</button>
</view>
</view>
</view>
</
template
>
<
script
>
import
common
from
'@/mixins/common'
;
const
app
=
getApp
();
export
default
{
name
:
'result'
,
mixins
:
[
common
],
data
()
{
return
{
result
:
''
,
imgUrl
:
''
,
dataList
:
[],
type
:
0
};
},
onLoad
(
option
)
{
this
.
type
=
option
.
type
this
.
result
=
decodeURIComponent
(
option
.
result
)
this
.
imgUrl
=
decodeURIComponent
(
option
.
imgUrl
)
this
.
dataList
=
this
.
result
.
split
(
'
\
n'
)
},
onShareAppMessage
()
{
return
{
title
:
'
灵犀扫描大师'
,
summary
:
this
.
result
,
success
()
{
console
.
log
(
'分享成功'
);
},
fail
(
err
)
{
console
.
error
(
'分享失败'
,
err
);
}
};
},
methods
:
{
copy
()
{
uni
.
setClipboardData
({
data
:
this
.
result
,
complete
()
{
uni
.
showToast
({
title
:
"已复制到剪贴板"
})
}
})
}
},
}
</
script
>
<
style
lang=
"scss"
>
</
style
>
\ No newline at end of file
scan/pagesC/superresult/superresult.vue
View file @
79a2f50d
<
template
>
<view
class=
"body"
>
<view
class=
"content flex-v"
>
<view
class=
"flex"
>
<image
style=
"height: 200rpx;margin-left: 30rpx;"
mode=
"heightFix"
:src=
"imgUrl"
></image>
<view
class=
"flex-v"
style=
"margin-left: 30rpx;"
>
<text
style=
"color: gray;font-size: 36rpx;"
>
图中可能是
</text>
<text
style=
"color: black;font-size: 40rpx;max-width: 400rpx;margin-top: 20rpx;"
>
{{
result
}}
</text>
</view>
</view>
<view
class=
"flex-v"
style=
"margin-top: 80rpx;"
>
<view
class=
"flex"
>
<text
style=
"color: black;font-size: 40rpx;"
>
百科
</text>
<text
style=
"color: gray;font-size: 30rpx;margin-left: 20rpx;"
>
WIKIPEDIA
</text>
</view>
<view
style=
"height: 1rpx;background-color: gray;margin-top: 10rpx;"
></view>
<text
style=
"color: black;font-size: 36rpx;;margin-top: 30rpx;"
>
{{
wiki
?
wiki
:
'暂无百科介绍'
}}
</text>
</view>
</view>
<image
class=
"img"
src=
"https://mints-pkg.oss-cn-beijing.aliyuncs.com/pkg/img/ic_ai_result.png"
mode=
"widthFix"
></image>
</view>
</
template
>
<
script
>
import
common
from
'@/mixins/common'
;
const
app
=
getApp
();
export
default
{
name
:
'百科结果'
,
mixins
:
[
common
],
data
()
{
return
{
result
:
''
,
wiki
:
''
,
imgUrl
:
''
,
};
},
onLoad
(
option
)
{
this
.
result
=
decodeURIComponent
(
option
.
result
)
this
.
wiki
=
decodeURIComponent
(
option
.
wiki
)
this
.
imgUrl
=
decodeURIComponent
(
option
.
imgUrl
)
},
onShareAppMessage
()
{
return
{
title
:
'
智能扫描精灵'
,
summary
:
this
.
result
,
success
()
{
console
.
log
(
'分享成功'
);
},
fail
(
err
)
{
console
.
error
(
'分享失败'
,
err
);
}
};
},
methods
:
{
copy
()
{
uni
.
setClipboardData
({
data
:
this
.
result
,
complete
()
{
uni
.
showToast
({
title
:
"已复制到剪贴板"
})
}
})
}
},
}
</
script
>
<
style
lang=
"scss"
>
.body
{
position
:
relative
;
}
.content
{
position
:
absolute
;
width
:
90%
;
height
:
80%
;
top
:
100rpx
;
left
:
5%
;
background-color
:
white
;
border-radius
:
20rpx
;
box-shadow
:
0
0
4px
darkgray
;
padding
:
80rpx
30rpx
0
30rpx
;
}
.img
{
position
:
absolute
;
width
:
294rpx
;
height
:
62rpx
;
left
:
50%
;
margin-left
:
-146rpx
;
top
:
69rpx
;
}
<
template
>
<view
class=
"body"
>
<view
class=
"content flex-v"
>
<view
class=
"flex"
>
<image
style=
"height: 200rpx;margin-left: 30rpx;"
mode=
"heightFix"
:src=
"imgUrl"
></image>
<view
class=
"flex-v"
style=
"margin-left: 30rpx;"
>
<text
style=
"color: gray;font-size: 36rpx;"
>
图中可能是
</text>
<text
style=
"color: black;font-size: 40rpx;max-width: 400rpx;margin-top: 20rpx;"
>
{{
result
}}
</text>
</view>
</view>
<view
class=
"flex-v"
style=
"margin-top: 80rpx;"
>
<view
class=
"flex"
>
<text
style=
"color: black;font-size: 40rpx;"
>
百科
</text>
<text
style=
"color: gray;font-size: 30rpx;margin-left: 20rpx;"
>
WIKIPEDIA
</text>
</view>
<view
style=
"height: 1rpx;background-color: gray;margin-top: 10rpx;"
></view>
<text
style=
"color: black;font-size: 36rpx;;margin-top: 30rpx;"
>
{{
wiki
?
wiki
:
'暂无百科介绍'
}}
</text>
</view>
</view>
<image
class=
"img"
src=
"https://mints-pkg.oss-cn-beijing.aliyuncs.com/pkg/img/ic_ai_result.png"
mode=
"widthFix"
></image>
</view>
</
template
>
<
script
>
import
common
from
'@/mixins/common'
;
const
app
=
getApp
();
export
default
{
name
:
'百科结果'
,
mixins
:
[
common
],
data
()
{
return
{
result
:
''
,
wiki
:
''
,
imgUrl
:
''
,
};
},
onLoad
(
option
)
{
this
.
result
=
decodeURIComponent
(
option
.
result
)
this
.
wiki
=
decodeURIComponent
(
option
.
wiki
)
this
.
imgUrl
=
decodeURIComponent
(
option
.
imgUrl
)
},
onShareAppMessage
()
{
return
{
title
:
'
灵犀扫描大师'
,
summary
:
this
.
result
,
success
()
{
console
.
log
(
'分享成功'
);
},
fail
(
err
)
{
console
.
error
(
'分享失败'
,
err
);
}
};
},
methods
:
{
copy
()
{
uni
.
setClipboardData
({
data
:
this
.
result
,
complete
()
{
uni
.
showToast
({
title
:
"已复制到剪贴板"
})
}
})
}
},
}
</
script
>
<
style
lang=
"scss"
>
.body
{
position
:
relative
;
}
.content
{
position
:
absolute
;
width
:
90%
;
height
:
80%
;
top
:
100rpx
;
left
:
5%
;
background-color
:
white
;
border-radius
:
20rpx
;
box-shadow
:
0
0
4px
darkgray
;
padding
:
80rpx
30rpx
0
30rpx
;
}
.img
{
position
:
absolute
;
width
:
294rpx
;
height
:
62rpx
;
left
:
50%
;
margin-left
:
-146rpx
;
top
:
69rpx
;
}
</
style
>
\ No newline at end of file
scan/pagesC/transresult/transresult.vue
View file @
79a2f50d
<
template
>
<view
class=
"body"
>
<!--
<status-title
:showBack=
"true"
iconColor=
"black"
>
识别结果
</status-title>
-->
<view
style=
"display: flex;flex-direction: column;height: 100%;"
>
<view
style=
"height: 40%; display: flex;justify-content: center;align-items: center;"
>
<image
mode=
"heightFix"
:src=
"imgUrl"
></image>
</view>
<view
style=
"background: white;height: 50%;display: flex;flex-direction: column;padding: 30rpx 20rpx;"
>
<view
style=
"font-weight: bold;padding-left: 10rpx;font-size: 40rpx;"
>
识别结果
</view>
<scroll-view
:scroll-x=
"true"
style=
"overflow: hidden;white-space: nowrap;flex:1;width: 100%;"
>
<view
style=
"padding: 10rpx;"
>
{{
from
}}
</view>
<view
style=
"padding: 10rpx;"
>
{{
to
}}
</view>
</scroll-view>
</view>
<view
style=
"height: 10%;display: flex;flex-direction: row;background: white;"
>
<view
@
click=
"copy"
style=
"display: flex;flex-direction: column;flex: 1;align-items: center;padding-top: 20rpx;"
>
<image
style=
"width: 30rpx;height: 30rpx;"
src=
"../../static/ic_copy.png"
>
</image>
<view
style=
"font-size: 30rpx;"
>
复制
</view>
</view>
<button
open-type=
"share"
style=
"display: flex;flex-direction: column;flex: 1;align-items: center;padding-top: 20rpx;"
>
<image
style=
"width: 30rpx;height: 30rpx;"
src=
"../../static/ic_copy.png"
>
</image>
<view
style=
"font-size: 30rpx;"
>
导出
</view>
</button>
</view>
</view>
</view>
</
template
>
<
script
>
import
common
from
'@/mixins/common'
;
const
app
=
getApp
();
export
default
{
name
:
'transresult'
,
mixins
:
[
common
],
data
()
{
return
{
imgUrl
:
''
,
from
:
''
,
to
:
''
,
};
},
onLoad
(
option
)
{
this
.
from
=
decodeURIComponent
(
option
.
from
)
this
.
to
=
decodeURIComponent
(
option
.
to
)
this
.
imgUrl
=
decodeURIComponent
(
option
.
imgUrl
)
},
onShareAppMessage
()
{
return
{
title
:
'
智能扫描精灵'
,
summary
:
this
.
result
,
success
()
{
console
.
log
(
'分享成功'
);
},
fail
(
err
)
{
console
.
error
(
'分享失败'
,
err
);
}
};
},
methods
:
{
copy
()
{
uni
.
setClipboardData
({
data
:
this
.
to
,
complete
()
{
uni
.
showToast
({
title
:
"已复制到剪贴板"
})
}
})
}
},
}
</
script
>
<
style
lang=
"scss"
>
<
template
>
<view
class=
"body"
>
<!--
<status-title
:showBack=
"true"
iconColor=
"black"
>
识别结果
</status-title>
-->
<view
style=
"display: flex;flex-direction: column;height: 100%;"
>
<view
style=
"height: 40%; display: flex;justify-content: center;align-items: center;"
>
<image
mode=
"heightFix"
:src=
"imgUrl"
></image>
</view>
<view
style=
"background: white;height: 50%;display: flex;flex-direction: column;padding: 30rpx 20rpx;"
>
<view
style=
"font-weight: bold;padding-left: 10rpx;font-size: 40rpx;"
>
识别结果
</view>
<scroll-view
:scroll-x=
"true"
style=
"overflow: hidden;white-space: nowrap;flex:1;width: 100%;"
>
<view
style=
"padding: 10rpx;"
>
{{
from
}}
</view>
<view
style=
"padding: 10rpx;"
>
{{
to
}}
</view>
</scroll-view>
</view>
<view
style=
"height: 10%;display: flex;flex-direction: row;background: white;"
>
<view
@
click=
"copy"
style=
"display: flex;flex-direction: column;flex: 1;align-items: center;padding-top: 20rpx;"
>
<image
style=
"width: 30rpx;height: 30rpx;"
src=
"../../static/ic_copy.png"
>
</image>
<view
style=
"font-size: 30rpx;"
>
复制
</view>
</view>
<button
open-type=
"share"
style=
"display: flex;flex-direction: column;flex: 1;align-items: center;padding-top: 20rpx;"
>
<image
style=
"width: 30rpx;height: 30rpx;"
src=
"../../static/ic_copy.png"
>
</image>
<view
style=
"font-size: 30rpx;"
>
导出
</view>
</button>
</view>
</view>
</view>
</
template
>
<
script
>
import
common
from
'@/mixins/common'
;
const
app
=
getApp
();
export
default
{
name
:
'transresult'
,
mixins
:
[
common
],
data
()
{
return
{
imgUrl
:
''
,
from
:
''
,
to
:
''
,
};
},
onLoad
(
option
)
{
this
.
from
=
decodeURIComponent
(
option
.
from
)
this
.
to
=
decodeURIComponent
(
option
.
to
)
this
.
imgUrl
=
decodeURIComponent
(
option
.
imgUrl
)
},
onShareAppMessage
()
{
return
{
title
:
'
灵犀扫描大师'
,
summary
:
this
.
result
,
success
()
{
console
.
log
(
'分享成功'
);
},
fail
(
err
)
{
console
.
error
(
'分享失败'
,
err
);
}
};
},
methods
:
{
copy
()
{
uni
.
setClipboardData
({
data
:
this
.
to
,
complete
()
{
uni
.
showToast
({
title
:
"已复制到剪贴板"
})
}
})
}
},
}
</
script
>
<
style
lang=
"scss"
>
</
style
>
\ No newline at end of file
scan/pagesD/about/about.vue
View file @
79a2f50d
<!-- <template>
<!-- <template>
<view class="body">
<view >
<image src="@/static/logo-about.png" mode="widthFix" style="border-radius: 20rpx;margin-bottom: 200rpx;" />
<view style="display: flex;justify-content: center;margin-top: 50rpx;font-size: 26rpx;color: gray;">
智能扫描精灵
v{{ versionName }}
灵犀扫描大师
v{{ versionName }}
</view>
</view>
<view >
<view style="color: black;margin-top: 40rpx;font-size: 40rpx;">Copyright 2024 Inc.</view>
</view>
</view>
</template>
</view>
<view >
<view style="color: black;margin-top: 40rpx;font-size: 40rpx;">Copyright 2024 Inc.</view>
</view>
</view>
</template>
<script>
const app = getApp();
export default {
...
...
@@ -25,68 +25,68 @@
methods: {
}
};
</script>
<style lang="scss">
.body {
background-color: white;
}
};
</script>
<style lang="scss">
.body {
background-color: white;
}
</style> -->
<
template
>
<
template
>
<view
class=
"body"
>
<view
style=
"display: flex;flex-direction: column;width: 100%;height: 90%;align-items: center;"
>
<image
src=
"@/static/logo-about.png"
mode=
"widthFix"
style=
"width: 120rpx;height: 120rpx;margin-top: 100rpx;"
/>
<view
style=
"margin-top: 50rpx;font-size: 26rpx;color: gray;"
>
智能扫描精灵
{{
versionName
}}
灵犀扫描大师
{{
versionName
}}
</view>
</view>
<view
style=
"display: flex;justify-content: center;"
>
<view
style=
"color: black;font-size: 40rpx;"
>
Copyright 2024 Inc.
</view>
</view>
</view>
</
template
>
<
script
>
import
common
from
'@/mixins/common'
;
import
{
getToLocal
}
from
"@/utils/utils.js"
import
{
</view>
</
template
>
<
script
>
import
common
from
'@/mixins/common'
;
import
{
getToLocal
}
from
"@/utils/utils.js"
import
{
navigateTo
,
message
,
alert
,
loading
}
from
'@/utils/fun.js'
;
import
{
openUrl
}
from
'@/utils/app+.js'
;
const
app
=
getApp
();
export
default
{
name
:
'index'
,
mixins
:
[
common
],
data
()
{
message
,
alert
,
loading
}
from
'@/utils/fun.js'
;
import
{
openUrl
}
from
'@/utils/app+.js'
;
const
app
=
getApp
();
export
default
{
name
:
'index'
,
mixins
:
[
common
],
data
()
{
return
{
userBean
:
{},
versionName
:
app
.
globalData
.
versionName
};
},
methods
:
{
versionName
:
app
.
globalData
.
versionName
};
},
methods
:
{
onShow
()
{
},
}
};
</
script
>
<
style
lang=
"scss"
>
@import
'@/scss/uni.scss'
;
.body
{
background-color
:
whitesmoke
;
}
},
}
};
</
script
>
<
style
lang=
"scss"
>
@import
'@/scss/uni.scss'
;
.body
{
background-color
:
whitesmoke
;
}
</
style
>
\ No newline at end of file
scan/pagesD/setting/setting.vue
View file @
79a2f50d
<
template
>
<
template
>
<view
class=
"body"
>
<view
v-if=
"showMask"
class=
"show-mask flex-v"
@
click=
"showMask=false"
>
<view
class=
"mt-30"
style=
"width: 90%;text-align: right;"
>
...
...
@@ -6,7 +6,7 @@
border-radius: 40rpx;border: 2px solid darkgray;"
src=
"@/static/index/ic_quit_white.png"
/>
</view>
<text
class=
"mt-10"
style=
"font-size: 46rpx;"
>
如何继续使用?
</text>
<text
class=
"m-10"
>
找到“
智能扫描精灵
”小程序
</text>
<text
class=
"m-10"
>
找到“
灵犀扫描大师
”小程序
</text>
<image
class=
"mt-30"
mode=
"widthFix"
:src=
"maskImage1"
></image>
<image
:src=
"maskImage2"
mode=
"widthFix"
></image>
...
...
@@ -24,41 +24,41 @@
</view>
<view
v-if=
"false"
style=
"display: flex;justify-content: center;margin-top: 50rpx;font-size: 26rpx;color: gray;"
>
当前版本:
{{
versionName
}}
</view>
</view>
</
template
>
<
script
>
import
common
from
'@/mixins/common'
;
import
{
getToLocal
}
from
"@/utils/utils.js"
import
{
</view>
</view>
</
template
>
<
script
>
import
common
from
'@/mixins/common'
;
import
{
getToLocal
}
from
"@/utils/utils.js"
import
{
navigateTo
,
message
,
alert
,
loading
}
from
'@/utils/fun.js'
;
import
{
openUrl
}
from
'@/utils/app+.js'
;
const
app
=
getApp
();
export
default
{
name
:
'index'
,
mixins
:
[
common
],
data
()
{
message
,
alert
,
loading
}
from
'@/utils/fun.js'
;
import
{
openUrl
}
from
'@/utils/app+.js'
;
const
app
=
getApp
();
export
default
{
name
:
'index'
,
mixins
:
[
common
],
data
()
{
return
{
userBean
:
{},
showMask
:
false
,
maskImage1
:
'https://mints-web.oss-cn-beijing.aliyuncs.com/images/bg_find1.png'
,
maskImage2
:
'https://mints-web.oss-cn-beijing.aliyuncs.com/images/bg_find2.png'
,
versionName
:
app
.
globalData
.
versionName
};
},
methods
:
{
versionName
:
app
.
globalData
.
versionName
};
},
methods
:
{
onShow
()
{
this
.
post
({
url
:
'/user/baseMsg'
,
...
...
@@ -72,17 +72,17 @@
},
handleFind
(){
this
.
showMask
=
true
}
}
};
</
script
>
<
style
lang=
"scss"
>
@import
'@/scss/uni.scss'
;
.body
{
}
}
};
</
script
>
<
style
lang=
"scss"
>
@import
'@/scss/uni.scss'
;
.body
{
background-color
:
whitesmoke
;
position
:
relative
;
position
:
relative
;
}
.show-mask
{
...
...
@@ -97,5 +97,5 @@
image
{
width
:
90%
;
}
}
}
</
style
>
\ No newline at end of file
scan/static/logo-about.png
View replaced file @
96a3cde0
View file @
79a2f50d
9.88 KB
|
W:
|
H:
11.2 KB
|
W:
|
H:
2-up
Swipe
Onion skin
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment