Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
W
WX_h5
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
godwithdh
WX_h5
Commits
b56690ba
Commit
b56690ba
authored
Apr 09, 2020
by
godwithdh
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://47.110.145.204:8085/godwithdh/wx_h5
parents
8a3c4fa1
adf613ab
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
29 additions
and
11 deletions
+29
-11
search.vue
src/components/search.vue
+1
-1
track.vue
src/view/tiip/profitAnalysis/track.vue
+0
-2
index.vue
src/view/tiip/searchOrder/index.vue
+3
-2
track.vue
src/view/tiip/searchOrder/track.vue
+0
-2
index.vue
src/view/tiip/specimen/index.vue
+0
-1
temp.vue
src/view/tiip/specimen/temp.vue
+0
-1
index.vue
src/view/tiip/uploadImg/index.vue
+25
-2
No files found.
src/components/search.vue
View file @
b56690ba
...
...
@@ -4,7 +4,7 @@
<div
class=
"Content gradient"
v-if=
"typeList.input || typeList.select"
>
<div
class=
"selector"
v-if=
"typeList.select"
>
<select
:multiple=
"multiple"
v-model=
"selectValue"
@
change=
"changeSelect($event)"
>
<option
v-for=
"(item,index) in status"
:key=
"index"
:value=
"item.sStatus"
>
{{
item
.
sStatus
||
'全部'
}}
</option>
<option
v-for=
"(item,index) in status"
:key=
"index"
:value=
"item.sStatus"
>
{{
item
.
sStatus
}}
</option>
</select>
</div>
<div
class=
"_input"
v-if=
"typeList.input"
>
...
...
src/view/tiip/profitAnalysis/track.vue
View file @
b56690ba
...
...
@@ -163,8 +163,6 @@ export default {
name
:
'profitAnalysisTrack'
,
data
()
{
return
{
host
:
'https://weixin.huansi.net/apiproxy/huansi/service/proxy/'
,
// host:'http://192.168.4.40:5001',
columns
:[
{
width
:
'20vw'
,
...
...
src/view/tiip/searchOrder/index.vue
View file @
b56690ba
...
...
@@ -175,9 +175,10 @@ export default {
async
getStatus
(){
let
res
=
await
this
.
apiGet
(
`
${
urlFun
(
'default'
)}
/fabricorder/status/`
,{},
true
);
this
.
status
=
res
;
this
.
status
.
map
(
x
=>
{
x
.
sStatus
=
x
.
sStatus
||
'全部'
;
this
.
status
.
unshift
(
{
sStatus
:
'全部'
})
console
.
log
(
this
.
status
)
},
async
getHdr
(
flag
){
if
(
this
.
search
.
per_page
<
30
){
...
...
src/view/tiip/searchOrder/track.vue
View file @
b56690ba
...
...
@@ -162,8 +162,6 @@ export default {
name
:
'searchOrderTrack'
,
data
()
{
return
{
host
:
'https://weixin.huansi.net/apiproxy/huansi/service/proxy/'
,
// host:'http://192.168.4.40:5001',
columns
:[
{
width
:
'20vw'
,
...
...
src/view/tiip/specimen/index.vue
View file @
b56690ba
...
...
@@ -84,7 +84,6 @@ export default {
uGuid
:
''
,
hdr
:{},
dtl
:[],
host
:
'https://weixin.huansi.net/apiproxy/huansi/service/proxy/'
,
options
:
{
getThumbBoundsFn
(
index
)
{
// find thumbnail element
...
...
src/view/tiip/specimen/temp.vue
View file @
b56690ba
...
...
@@ -182,7 +182,6 @@ export default {
hdr
:{},
dtl
:[],
uGuid
:
''
,
host
:
'https://weixin.huansi.net/apiproxy/huansi/service/proxy/'
}
},
async
mounted
(){
...
...
src/view/tiip/uploadImg/index.vue
View file @
b56690ba
...
...
@@ -141,6 +141,19 @@ export default {
var
str
=
''
;
var
reader
=
new
FileReader
();
reader
.
onload
=
function
(
e
){
e
.
preventDefault
();
var
file
=
that
.
$refs
[
'upload'
];
var
filePath
=
file
.
value
;
//js中无法获取文件的真是路径
var
fileName
=
filePath
.
substring
(
filePath
.
lastIndexOf
(
'
\
\'
)+1); //文件名
var extName = fileName.substring(fileName.lastIndexOf('
.
')+1); //后缀名
if(extName != '
png
' && extName != '
jpg
' && extName != '
jpeg
'){
that.$vux.confirm.show({
title:"提示",
content:`不允许上传${extName}格式图片!`,
showCancelButton:false,
})
return false;
}
that.upload(reader.result); //或者 e.target.result都是一样的,都是base64码
}
reader.readAsDataURL(this.files[0]);
...
...
@@ -154,7 +167,17 @@ export default {
},
upload(base64,callback){
var
datacopy
=
`<?xml version="1.0" encoding="utf-8"?><soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"><soap12:Body><SavePic xmlns="http://tempuri.org/"><sToken>F563EBDF-0FC1-4777-96B8-033C3E89D6F8</sToken><sProjectNo>
${
this
.
query
.
sProjectNo
}
</sProjectNo><sGuid>
${
this
.
query
.
uGUID
}
</sGuid><sBase64>
${
base64
.
split
(
'data:image/png;base64,'
)[
1
]}
</sBase64></SavePic></soap12:Body></soap12:Envelope>`
let _base64 = Util.deepClone(base64);
if(_base64.indexOf('
data
:
image
/
png
;
base64
,
') != -1){
_base64 = _base64.split('
data
:
image
/
png
;
base64
,
')
}else if(_base64.indexOf('
data
:
image
/
jpg
;
base64
,
') != -1){
_base64 = _base64.split('
data
:
image
/
jpg
;
base64
,
')
}else if(_base64.indexOf('
data
:
image
/
jpeg
;
base64
,
') != -1){
_base64 = _base64.split('
data
:
image
/
jpeg
;
base64
,
')
}
var datacopy = `<?xml version="1.0" encoding="utf-8"?><soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"><soap12:Body><SavePic xmlns="http://tempuri.org/"><sToken>F563EBDF-0FC1-4777-96B8-033C3E89D6F8</sToken><sProjectNo>${this.query.sProjectNo}</sProjectNo><sGuid>${this.query.uGUID}</sGuid><sBase64>${_base64}</sBase64></SavePic></soap12:Body></soap12:Envelope>`
var xhr = new XMLHttpRequest();
//打开连接
...
...
@@ -235,7 +258,7 @@ export default {
},
deactivated
(){
// 移除监听
this
.
$refs
[
'upload'
].
removeEventListener
(
"change"
)
//
this.$refs['upload'].removeEventListener("change")
}
}
</
script
>
\ 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