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
40bb7d66
Commit
40bb7d66
authored
May 19, 2020
by
王勇飞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pp
parent
cc31f79b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
5 deletions
+16
-5
fqboss/app/base/db/metadata/apps/platform.js
+1
-1
fqboss/app/front/vues/pages/automatictmsubmitedit/automatictmsubmitedit.html
+1
-1
fqboss/app/front/vues/pages/automatictmsubmitedit/automatictmsubmitedit.js
+7
-1
fqboss/app/front/vues/pages/automatictmsubmitinside/automatictmsubmitinside.html
+1
-1
fqboss/app/front/vues/pages/automatictmsubmitinside/automatictmsubmitinside.js
+6
-1
No files found.
fqboss/app/base/db/metadata/apps/platform.js
View file @
40bb7d66
...
...
@@ -2073,7 +2073,7 @@ module.exports = {
"order_status"
:
{
"1"
:
"未付款"
,
"2"
:
"订单取消"
,
"4"
:
"付款成功"
,
"8"
:
"退款处理中"
,
"16"
:
"已退款"
,
"32"
:
"已提报"
,
"64"
:
"审核中"
},
"msg_notice_type"
:
{
"friend"
:
"朋友"
,
"boss"
:
"老板"
},
"tm_apply_type"
:
{
"ent"
:
"企业"
,
"person"
:
"个人"
},
"tm_principal"
:
{
"
ht"
:
"汉唐信通(北京)咨询有限公司"
,
"zy"
:
"知域互联科技有限公司"
,
"ali
"
:
"阿里巴巴科技(北京)有限公司"
},
"tm_principal"
:
{
"
汉唐信通(北京)咨询有限公司"
:
"汉唐信通(北京)咨询有限公司"
,
"知域互联科技有限公司"
:
"知域互联科技有限公司"
,
"阿里巴巴科技(北京)有限公司
"
:
"阿里巴巴科技(北京)有限公司"
},
"tm_apply_types"
:
{
"ent"
:
"企业"
},
"op_type"
:
{
"applying"
:
"申请中"
,
"issued"
:
"已发放"
,
"issueError"
:
"发放异常"
},
"tmFirstOrder"
:
{
0
:
"否"
,
1
:
"是"
},
...
...
fqboss/app/front/vues/pages/automatictmsubmitedit/automatictmsubmitedit.html
View file @
40bb7d66
...
...
@@ -280,7 +280,7 @@
<el-form-item
label-width=
"140px"
label=
"电子邮箱"
style=
"width:950px;float:left;padding-right:50px;"
>
<el-input
v-model=
"apply.email"
>
</el-input>
</el-form-item>
<el-form-item
label-width=
"140px"
label=
"提报主体"
style=
"width:950px;float:left;padding-right:50px;"
>
<el-form-item
label-width=
"140px"
label=
"提报主体"
style=
"width:950px;float:left;padding-right:50px;"
prop=
"principal"
>
<gsb-select
v-model=
"apply.principal"
dicKey=
"tm_principal"
labelField=
"label"
valueField=
"value"
>
</gsb-select>
</el-form-item>
...
...
fqboss/app/front/vues/pages/automatictmsubmitedit/automatictmsubmitedit.js
View file @
40bb7d66
...
...
@@ -359,7 +359,10 @@
}
else
if
(
!
this
.
apply
.
applyAddr
)
{
that
.
$message
.
warning
(
"请填写执照详细地址"
);
return
;
}
}
else
if
(
!
this
.
apply
.
principal
)
{
that
.
$message
.
warning
(
"请选择提报类型"
);
return
;
}
that
.
$root
.
showMask
();
var
params
=
this
.
apply
.
type
+
";"
+
this
.
apply
.
applyName
+
";"
+
this
.
apply
.
identityCard
+
";"
+
this
.
form
.
tmFormType
+
";"
+
this
.
form
.
colorizedPicUrl
+
";"
+
this
.
form
.
picUrl
+
";"
+
this
.
apply
.
applyAddr
;
...
...
@@ -401,6 +404,9 @@
colorizedPicUrl
:
d_tm
.
colorizedPicUrl
,
remark
:
d_order
.
remark
};
console
.
log
(
'前端打印接收后端的数据: '
,
JSON
.
stringify
(
d_apply
));
var
apply
=
{
type
:
d_apply
?
d_apply
.
type
:
""
,
applyName
:
d_apply
?
d_apply
.
applyName
:
""
,
...
...
fqboss/app/front/vues/pages/automatictmsubmitinside/automatictmsubmitinside.html
View file @
40bb7d66
...
...
@@ -273,7 +273,7 @@
<el-form-item
label-width=
"140px"
label=
"电子邮箱"
style=
"width:950px;float:left;padding-right:50px;"
>
<el-input
v-model=
"apply.email"
>
</el-input>
</el-form-item>
<el-form-item
label-width=
"140px"
label=
"提报主体"
style=
"width:950px;float:left;padding-right:50px;"
>
<el-form-item
label-width=
"140px"
label=
"提报主体"
style=
"width:950px;float:left;padding-right:50px;"
prop=
"principal"
>
<gsb-select
v-model=
"apply.principal"
dicKey=
"tm_principal"
labelField=
"label"
valueField=
"value"
>
</gsb-select>
</el-form-item>
...
...
fqboss/app/front/vues/pages/automatictmsubmitinside/automatictmsubmitinside.js
View file @
40bb7d66
...
...
@@ -960,8 +960,11 @@
if
(
this
.
apply
.
applyName
)
{
this
.
$root
.
showMask
();
this
.
$root
.
getReq
(
"/web/orderCtl/getCustomerInfoByCompanyName"
,
{
companyName
:
this
.
apply
.
applyName
}).
then
(
d
=>
{
console
.
log
(
d
);
console
.
log
(
'---------------'
,
d
);
if
(
d
&&
d
.
code
==
1
&&
d
.
data
)
{
console
.
log
(
'==========='
,
d
.
data
.
principal
);
var
data
=
d
.
data
;
if
(
data
.
applyAddr
)
{
this
.
apply
.
applyAddr
=
data
.
applyAddr
;
...
...
@@ -1039,6 +1042,8 @@
}
else
if
(
!
this
.
apply
.
applyAddr
)
{
that
.
$message
.
warning
(
"请填写执照详细地址"
);
return
;
}
else
if
(
!
this
.
apply
.
principal
)
{
that
.
$message
.
warning
(
"请选择提报主体"
);
}
that
.
$root
.
showMask
();
var
params
=
this
.
apply
.
type
+
";"
+
this
.
apply
.
applyName
+
";"
+
this
.
apply
.
identityCard
+
";"
+
this
.
form
.
tmFormType
...
...
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