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
c4e4f0b5
Commit
c4e4f0b5
authored
Aug 11, 2020
by
庄冰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aaa
parent
988a8dc9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
3 deletions
+23
-3
gsb-marketplat/app/base/service/impl/configmag/formsubmitrecordSve.js
+2
-2
gsb-marketplat/app/base/service/impl/template/templatelinkSve.js
+21
-1
No files found.
gsb-marketplat/app/base/service/impl/configmag/formsubmitrecordSve.js
View file @
c4e4f0b5
...
...
@@ -7,8 +7,8 @@ class ForminfoService extends ServiceBase {
super
(
"configmag"
,
ServiceBase
.
getDaoName
(
ForminfoService
));
this
.
templateinfoDao
=
system
.
getObject
(
"db.template.templateinfoDao"
);
this
.
templatelinkDao
=
system
.
getObject
(
"db.template.templatelinkDao"
);
this
.
forminfoDao
=
system
.
getObject
(
"db.
form
.forminfoDao"
);
this
.
formitemDao
=
system
.
getObject
(
"db.
form
.formitemDao"
);
this
.
forminfoDao
=
system
.
getObject
(
"db.
configmag
.forminfoDao"
);
this
.
formitemDao
=
system
.
getObject
(
"db.
configmag
.formitemDao"
);
}
/**
...
...
gsb-marketplat/app/base/service/impl/template/templatelinkSve.js
View file @
c4e4f0b5
...
...
@@ -8,7 +8,27 @@ class TemplatelinkService extends ServiceBase {
this
.
templateinfoDao
=
system
.
getObject
(
"db.template.templateinfoDao"
);
this
.
browsingrecordsDao
=
system
.
getObject
(
"db.template.browsingrecordsDao"
);
}
/**
* 获取模板链接配置参数
* @param {*} pobj
*/
async
getLinkConfigParams
(
pobj
){
var
ab
=
pobj
.
actionBody
;
var
xctx
=
pobj
.
xctx
;
var
res
=
{};
if
(
!
ab
){
return
system
.
getResultFail
(
-
100
,
"参数错误"
);
}
//渠道主体
//业务参数
//投放方式
//营销主体
return
system
.
getResultSuccess
(
res
);
}
/**
* 链接列表
* @param {*} obj
*/
async
findAndCountAll
(
obj
){
var
res
=
await
this
.
dao
.
findAndCountAll
(
obj
);
return
system
.
getResultSuccess
(
res
);
...
...
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