Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
6ac55c90
Commit
6ac55c90
authored
Nov 20, 2019
by
刘泽奇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
24cefba6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
22 deletions
+28
-22
igirl-channel-web/app/front/vues/pages/jdindentdetail/jdindentdetail.html
+0
-0
igirl-channel-web/app/front/vues/pages/jdindentdetail/jdindentdetail.js
+10
-10
igirl-channel-web/app/front/vues/pages/selftmreg/selftmreg.js
+18
-12
No files found.
igirl-channel-web/app/front/vues/pages/jdindentdetail/jdindentdetail.html
View file @
6ac55c90
This diff is collapsed.
Click to expand it.
igirl-channel-web/app/front/vues/pages/jdindentdetail/jdindentdetail.js
View file @
6ac55c90
...
...
@@ -329,7 +329,7 @@
/*修改验证 对应表单的值 */
popupValue
:
""
,
/**订单付款信息 */
receiptVoucher
:
""
,
receiptVoucher
:
""
,
}
},
mounted
:
function
()
{
...
...
@@ -699,7 +699,6 @@
}
if
(
obj
.
flag
==
"yyzz"
)
{
console
.
log
(
obj
,
"oooooooooooooooooooooooooooooooo"
);
that
.
apply
.
businessLicensePic
=
obj
.
result
;
that
.
editApply
=
JSON
.
parse
(
JSON
.
stringify
(
that
.
apply
));
var
pic2pdf
=
{
"key"
:
obj
.
result
};
var
pic2pdf
=
this
.
$root
.
copyParams
(
pic2pdf
,
"pic2pdf"
,
"/action/tmTools/springBoard"
);
...
...
@@ -709,6 +708,7 @@
that
.
loading3
=
false
;
that
.
loading
=
false
;
if
(
d
.
status
==
0
)
{
that
.
apply
.
businessLicensePic
=
obj
.
result
;
that
.
apply
[
"businessLicensePdf"
]
=
d
.
data
.
url
;
return
}
else
{
...
...
@@ -728,7 +728,6 @@
}
if
(
obj
.
flag
==
"sfz"
)
{
var
sfz
=
{
"key"
:
obj
.
result
};
that
.
apply
.
identityCardPic
=
obj
.
result
;
that
.
editApply
=
JSON
.
parse
(
JSON
.
stringify
(
that
.
apply
));
var
sfz
=
this
.
$root
.
copyParams
(
sfz
,
"pic2pdf"
,
"/action/tmTools/springBoard"
);
this
.
$root
.
postReq
(
"/web/trademark/tmqueryCtl/doPost"
,
sfz
).
then
(
function
(
d
)
{
...
...
@@ -737,6 +736,7 @@
that
.
loading3
=
false
;
that
.
loading
=
false
;
if
(
d
.
status
==
0
)
{
that
.
apply
.
identityCardPic
=
obj
.
result
;
that
.
apply
[
"identityCardPdf"
]
=
d
.
data
.
url
;
return
;
}
else
{
...
...
@@ -756,7 +756,6 @@
}
if
(
obj
.
flag
==
"wts"
)
{
var
adjustWTSSize
=
{
"key"
:
obj
.
result
};
that
.
deliveryOrderNo
.
gzwtsUrl
=
obj
.
result
;
that
.
editDeliveryOrderNo
=
JSON
.
parse
(
JSON
.
stringify
(
that
.
apply
));
var
adjustWTSSize
=
this
.
$root
.
copyParams
(
adjustWTSSize
,
"adjustWTSSize"
,
"/action/tmTools/springBoard"
);
this
.
$root
.
postReq
(
"/web/trademark/tmqueryCtl/doPost"
,
adjustWTSSize
).
then
(
function
(
d
)
{
...
...
@@ -765,6 +764,7 @@
that
.
loading3
=
false
;
that
.
loading
=
false
;
if
(
d
.
status
==
0
)
{
that
.
deliveryOrderNo
.
gzwtsUrl
=
obj
.
result
;
that
.
apply
[
"gzwtsUrl"
]
=
d
.
data
.
url
;
return
;
}
else
{
...
...
@@ -1428,8 +1428,8 @@
message
:
'修改成功!'
});
this
.
$root
.
loading
=
false
;
this
.
$router
.
go
(
0
);
this
.
$router
.
go
(
0
);
}
else
{
this
.
$message
(
res
.
msg
);
}
...
...
@@ -1472,8 +1472,8 @@
message
:
'提交成功!'
});
this
.
$root
.
loading
=
false
;
this
.
$router
.
go
(
0
);
this
.
$router
.
go
(
0
);
}
else
{
this
.
$message
(
res
.
msg
);
}
...
...
@@ -1507,7 +1507,7 @@
default
:
break
;
}
}
else
{
console
.
log
(
'error submit!!'
);
this
.
$message
.
warning
(
"请核对您的信息"
);
...
...
@@ -1515,7 +1515,7 @@
}
});
});
},
closeConfrim
(){
this
.
showConfrim
=
false
;
...
...
igirl-channel-web/app/front/vues/pages/selftmreg/selftmreg.js
View file @
6ac55c90
...
...
@@ -411,6 +411,7 @@
},
methods
:
{
pointsRuleColor
(
i
)
{
if
(
i
<
parseInt
(
this
.
step
))
{
return
'color: #FFFFFF;'
...
...
@@ -580,7 +581,9 @@
that
.
loading3
=
false
;
that
.
loading
=
false
;
if
(
d
.
status
==
0
)
{
that
.
apply
[
"businessLicensePic"
]
=
d
.
data
.
url
;
that
.
apply
[
"businessLicensePic"
]
=
obj
.
result
;
that
.
apply
[
"businessLicensePdf"
]
=
d
.
data
.
url
;
return
}
else
{
that
.
apply
.
businessLicensePic
=
""
;
...
...
@@ -606,7 +609,8 @@
that
.
loading3
=
false
;
that
.
loading
=
false
;
if
(
d
.
status
==
0
)
{
that
.
apply
[
"identityCardPic"
]
=
d
.
data
.
url
;
that
.
apply
[
"identityCardPic"
]
=
obj
.
result
;
that
.
apply
[
"identityCardPdf"
]
=
d
.
data
.
url
;
return
;
}
else
{
that
.
apply
.
identityCardPic
=
""
;
...
...
@@ -774,13 +778,14 @@
}
},*/
historyapplierchange
(
d
){
console
.
log
(
d
,
this
.
apply
,
'~~~~~~~~~~~~~~~~~~~~~~`'
);
if
(
d
)
{
this
.
editA
pply
.
name
=
d
.
entName
||
""
;
this
.
editA
pply
.
applyAddr
=
d
.
regLocation
||
""
;
this
.
editA
pply
.
code
=
d
.
creditCode
||
""
;
this
.
editA
pply
.
businessLicensePic
=
d
.
businessLicensePic
||
""
;
this
.
editA
pply
.
identityCardNo
=
d
.
identityCardNo
||
""
;
this
.
editA
pply
.
identityCardPic
=
d
.
identityCardPic
||
""
;
this
.
a
pply
.
name
=
d
.
entName
||
""
;
this
.
a
pply
.
applyAddr
=
d
.
regLocation
||
""
;
this
.
a
pply
.
code
=
d
.
creditCode
||
""
;
this
.
a
pply
.
businessLicensePic
=
d
.
businessLicensePic
||
""
;
this
.
a
pply
.
identityCardNo
=
d
.
identityCardNo
||
""
;
this
.
a
pply
.
identityCardPic
=
d
.
identityCardPic
||
""
;
}
},
...
...
@@ -1213,8 +1218,8 @@
nclones
:
that
.
nclOne
,
itemCode
:
that
.
itemCode
,
};
th
is
.
$root
.
loading
=
true
;
var
channelOrderNo
=
th
is
.
$root
.
copyParams
({
channelOrderNo
:
this
.
$route
.
query
.
channelOrderNo
},
"get1688ChannelOrderInfo"
,
"/action/tmOrder/springBoard"
,
"yes"
,
"yes"
);
th
at
.
$root
.
loading
=
true
;
var
channelOrderNo
=
th
at
.
$root
.
copyParams
({
channelOrderNo
:
that
.
$route
.
query
.
channelOrderNo
},
"get1688ChannelOrderInfo"
,
"/action/tmOrder/springBoard"
,
"yes"
,
"yes"
);
that
.
$root
.
postReq
(
"/web/trademark/tmqueryCtl/doPost"
,
channelOrderNo
).
then
((
d
)
=>
{
console
.
log
(
d
);
that
.
orderSubInfo
.
channelOrder
=
d
.
data
.
channelOrder
;
...
...
@@ -1223,7 +1228,6 @@
console
.
log
(
that
.
orderSubInfo
,
'............................................'
);
var
subInfo
=
that
.
$root
.
copyParams
(
that
.
orderSubInfo
,
"subExistTmOrder"
,
"/action/tmOrder/springBoard"
,
"yes"
,
"yes"
);
that
.
$root
.
postReq
(
"/web/trademark/tmqueryCtl/doPost"
,
subInfo
).
then
(
function
(
d
)
{
this
.
$root
.
loading
=
false
;
console
.
log
(
'nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn0'
,
d
);
if
(
d
.
status
==
0
)
{
var
order
=
d
.
data
;
...
...
@@ -1241,9 +1245,11 @@
that
.
$message
.
warning
(
d
.
msg
);
}
}).
then
(()
=>
{
that
.
$root
.
loading
=
false
;
}).
catch
(
function
(
e
)
{
that
.
$message
.
warning
(
"操作失败"
,
e
);
th
is
.
$root
.
loading
=
false
;
th
at
.
$root
.
loading
=
false
;
console
.
log
(
e
);
});
})
...
...
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