Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
techbook
Project
Project
Details
Activity
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
front-end-dev
techbook
Commits
03897c6b
Commit
03897c6b
authored
Dec 02, 2019
by
anxixi
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
800fc12c
4e7ed523
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
104 additions
and
17 deletions
+104
-17
addAuth.vue
src/views/mobile/auth/addAuth.vue
+101
-17
emPwdCmpt.vue
src/views/mobile/loginregister/emPwdCmpt.vue
+1
-0
phonePwdCmpt.vue
src/views/mobile/loginregister/phonePwdCmpt.vue
+2
-0
No files found.
src/views/mobile/auth/addAuth.vue
View file @
03897c6b
<
template
>
<div
style=
"height: 100%;overflow: auto;padding-top: 1.3rem"
>
<breadTop
:title=
"title"
:isSearch=
"false"
:isColor=
"false"
:isReturn=
"
tru
e"
:isTranslate=
"false"
></breadTop>
<breadTop
:title=
"title"
:isSearch=
"false"
:isColor=
"false"
:isReturn=
"
fals
e"
:isTranslate=
"false"
></breadTop>
<div
style=
"padding:0 .4rem;"
>
<el-tag
type=
"danger"
style=
"width: 100%;white-space: unset;height: auto;margin-bottom:.3rem;"
v-if=
"detailInfo.auditState=='AS04'"
:title=
"$t('commonTitle.errAuth')+':'+detailInfo.content"
>
{{
$t
(
'commonTitle.errAuth'
)
}}
:
{{
detailInfo
.
content
}}
。
</el-tag>
...
...
@@ -60,6 +60,7 @@
<div
class=
"uploadImg"
>
<el-upload
ref=
"upload"
name=
"fileUpload"
:limit=
"1"
:on-exceed=
"handleExceed"
...
...
@@ -70,7 +71,7 @@
:file-list=
"fileList"
:on-preview=
"handlePictureCardPreview"
:on-success=
"uploadComplete"
:before-upload=
"handleBeforeFile"
:before-upload=
"handleBeforeFile
1
"
:on-remove=
"handleRemove"
:disabled=
"detailInfo.auditState!='AS01'&&detailInfo.auditState==null"
>
...
...
@@ -124,7 +125,7 @@
import
'babel-polyfill'
;
// es6 shim
import
imageCrop
from
'../../../components/mobile/imgCrop'
;
import
lrz
from
'lrz'
import
imageConversion
from
'image-conversion'
import
'image-conversion'
// import Exif from '../../../../public/js/exif';
export
default
{
name
:
"addAuth"
,
...
...
@@ -375,8 +376,90 @@
},
//附件上传之前判断文件格式
handleBeforeFile
(
file
)
{
var
nameArr
=
file
.
name
.
split
(
'.'
);
// handleBeforeFile(file) {
// var nameArr = file.name.split('.');
// const isPng = nameArr[nameArr.length - 1] === 'png';
// const isJpg = nameArr[nameArr.length - 1] === 'jpg';
// // const isJpeg = nameArr[nameArr.length - 1] === 'jpeg';
// const isPNG = nameArr[nameArr.length - 1] === 'PNG';
// const isJPG = nameArr[nameArr.length - 1] === 'JPG';
// // const isJPEG = nameArr[nameArr.length - 1] === 'JPEG';
// const isLt2M = file.size / 1024 / 1024
<=
2
;
// if (!isPNG && !isJPG && !isPng && !isJpg) {
// this.isShowErrorText1 = false;
// this.isShowErrorText2 = true;
// this.isShowErrorText3 = false;
// this.isShowErrorText4 = false;
// this.isShowErrorText5 = false;
// // this.$toast('上传图片只能是 png,jpg 格式!');
// return false;
// }
// if (!isLt2M) {
// // this.isShowErrorText1 = false;
// // this.isShowErrorText2 = false;
// // this.isShowErrorText3 = true;
// // this.isShowErrorText4 = false;
// // this.isShowErrorText5 = false;
// // this.$toast('上传图片大小不能超过 2MB!');
// // return false;
// console.log(file)
// imageConversion.compressAccurately(file, 400).then(res => { // console.log(res)
// console.log(res)
// })
// // return new Promise((resolve, reject) => {
// //
// // });
// } else {
// console.log(1)
// this.flag = 1;
// this.isShowErrorText1 = false;
// this.isShowErrorText2 = false;
// this.isShowErrorText3 = false;
// this.isShowErrorText4 = false;
// this.isShowErrorText5 = false;
// }
// // return isPNG || isJPG || isPng || isJpg || isLt2M;
// },
/* 图片压缩方法-canvas压缩 */
compressUpload
(
image
)
{
let
canvas
=
document
.
createElement
(
'canvas'
)
let
ctx
=
canvas
.
getContext
(
'2d'
)
let
initSize
=
image
.
src
.
length
let
{
width
}
=
image
,
{
height
}
=
image
canvas
.
width
=
width
canvas
.
height
=
height
ctx
.
fillRect
(
0
,
0
,
canvas
.
width
,
canvas
.
height
)
ctx
.
drawImage
(
image
,
0
,
0
,
width
,
height
)
// 进行最小压缩0.1
let
compressData
=
canvas
.
toDataURL
(
'image/jpeg'
,
0.1
)
// 压缩后调用方法进行base64转Blob,方法写在下边
let
blobImg
=
this
.
dataURItoBlob
(
compressData
)
return
blobImg
},
/* base64转Blob对象 */
dataURItoBlob
(
data
)
{
let
byteString
;
if
(
data
.
split
(
','
)[
0
].
indexOf
(
'base64'
)
>=
0
)
{
byteString
=
atob
(
data
.
split
(
','
)[
1
])
}
else
{
byteString
=
unescape
(
data
.
split
(
','
)[
1
])
}
let
mimeString
=
data
.
split
(
','
)[
0
]
.
split
(
':'
)[
1
]
.
split
(
';'
)[
0
];
let
ia
=
new
Uint8Array
(
byteString
.
length
)
for
(
let
i
=
0
;
i
<
byteString
.
length
;
i
+=
1
)
{
ia
[
i
]
=
byteString
.
charCodeAt
(
i
)
}
return
new
Blob
([
ia
],
{
type
:
mimeString
})
},
handleBeforeFile1
(
file
)
{
var
nameArr
=
file
.
name
.
split
(
'.'
),
that
=
this
;
const
isPng
=
nameArr
[
nameArr
.
length
-
1
]
===
'png'
;
const
isJpg
=
nameArr
[
nameArr
.
length
-
1
]
===
'jpg'
;
// const isJpeg = nameArr[nameArr.length - 1] === 'jpeg';
...
...
@@ -394,18 +477,18 @@
return
false
;
}
if
(
!
isLt2M
)
{
// this.isShowErrorText1 = false;
// this.isShowErrorText2 = false
;
// this.isShowErrorText3 = true
;
// this.isShowErrorText4 = false;
// this.isShowErrorText5 = false;
// this.$toast('上传图片大小不能超过 2MB!'
);
// return false;
return
new
Promise
((
resolve
,
reject
)
=>
{
imageConversion
.
compressAccurately
(
file
,
400
).
then
(
res
=>
{
// console.log(res)
resolve
(
res
);
})
})
;
return
new
Promise
((
resolve
,
reject
)
=>
{
let
image
=
new
Image
(),
resultBlob
=
''
;
image
.
src
=
URL
.
createObjectURL
(
file
)
;
image
.
onload
=
()
=>
{
// 调用方法获取blob格式,方法写在下边
resultBlob
=
that
.
compressUpload
(
image
);
resolve
(
resultBlob
)
}
image
.
onerror
=
()
=>
{
reject
()
}
})
}
else
{
this
.
flag
=
1
;
this
.
isShowErrorText1
=
false
;
...
...
@@ -414,6 +497,7 @@
this
.
isShowErrorText4
=
false
;
this
.
isShowErrorText5
=
false
;
}
// return isPNG || isJPG || isPng || isJpg || isLt2M;
},
...
...
src/views/mobile/loginregister/emPwdCmpt.vue
View file @
03897c6b
...
...
@@ -211,6 +211,7 @@
.loginButton
{
width
:
100%
;
height
:
1rem
;
margin-top
:
.56rem
;
background
:
#5D78FF
;
}
.loginButton
:hover
{
...
...
src/views/mobile/loginregister/phonePwdCmpt.vue
View file @
03897c6b
...
...
@@ -202,6 +202,7 @@
.loginButton
{
width
:
100%
;
height
:
1rem
;
margin-top
:
.5rem
;
background
:
#5D78FF
;
}
</
style
>
\ No newline at end of file
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