记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
董敬伟
liquidnet-bus-v1
Commits
ef3df53b
Commit
ef3df53b
authored
Feb 21, 2022
by
zhengfuxin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_goblin' of gitlab.zhengzai.tv:dongjingwei/liquidnet-bus-v1 into dev_goblin
parents
c633c7cb
a5a03f2f
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
419 additions
and
2 deletions
+419
-2
LocalAdminController.java
...t/admin/web/controller/zhengzai/LocalAdminController.java
+5
-0
RubikArea.html
...resources/templates/zhengzai/store/homeSet/RubikArea.html
+4
-2
index.html
...ain/resources/templates/zhengzai/store/homeSet/index.html
+3
-0
newRecommended.html
...rces/templates/zhengzai/store/homeSet/newRecommended.html
+396
-0
topBanner.html
...resources/templates/zhengzai/store/homeSet/topBanner.html
+11
-0
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/java/com/liquidnet/client/admin/web/controller/zhengzai/LocalAdminController.java
View file @
ef3df53b
...
...
@@ -148,5 +148,10 @@ public class LocalAdminController extends BaseController
{
return
prefix2
+
"/goodsIntersection/index"
;
}
@GetMapping
(
"/newRecommended"
)
public
String
newRecommended
()
{
return
prefix2
+
"/homeSet/newRecommended"
;
}
}
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/store/homeSet/RubikArea.html
View file @
ef3df53b
...
...
@@ -187,7 +187,7 @@
}
})
})
promiseMethods
(
'/goblin-front-cube/list'
,
'post'
).
then
(
res
=>
{
promiseMethods
(
'/goblin-front-cube/list'
,
'post'
,
{
type
:
1
}
).
then
(
res
=>
{
let
{
data
}
=
res
;
if
(
data
&&
data
.
length
>
0
)
{
let
arr
=
data
[
0
].
spuId
.
split
(
','
);
...
...
@@ -201,6 +201,7 @@
$
(
"#optionsRadios4"
).
attr
(
'checked'
,
true
).
parent
().
siblings
().
children
().
removeAttr
(
'checked'
);
}
mid
=
data
[
0
].
mid
;
cubeId
=
data
[
0
].
cubeId
;
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
let
str
=
''
;
str
+=
`<div class="items" data-id="
${
data
[
i
].
mid
}
">
...
...
@@ -261,7 +262,7 @@
$
(
"input[name=optionsRadios]"
).
change
(
function
(
e
){
$
(
"#bannerList"
).
empty
();
count
=
e
.
target
.
value
;
promiseMethods
(
'/goblin-front-cube/list'
,
'post'
).
then
(
res
=>
{
promiseMethods
(
'/goblin-front-cube/list'
,
'post'
,
{
type
:
1
}
).
then
(
res
=>
{
let
{
data
}
=
res
;
if
(
data
&&
data
.
length
>
0
)
{
let
arr
=
data
[
0
].
spuId
.
split
(
','
);
...
...
@@ -390,6 +391,7 @@
rowType
:
$
(
'input[name="optionsRadios"]:checked'
).
val
(),
spuId
:
[],
spuName
:
''
,
type
:
1
,
updateTime
:
updateTime
||
''
}];
let
domData
=
$
(
'.items'
);
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/store/homeSet/index.html
View file @
ef3df53b
...
...
@@ -155,6 +155,7 @@
<button
type=
"button"
class=
"btn btn-warning"
onclick=
"goArea(2)"
>
活动banner
</button>
<button
type=
"button"
class=
"btn btn-success"
onclick=
"goArea(4)"
>
魔方
</button>
<button
type=
"button"
class=
"btn btn-info"
onclick=
"goArea(7)"
>
精选商品
</button>
<button
type=
"button"
class=
"btn btn-info"
onclick=
"goArea(8)"
>
新品推荐
</button>
<!-- <button type="button" class="btn" disabled onclick="goArea(3)">限时秒杀</button> -->
</div>
<button
type=
"button"
class=
"btn btn-danger gitHot"
onclick=
"git()"
>
上线
</button>
...
...
@@ -235,6 +236,8 @@
$
.
modal
.
open
(
'精选商品'
,
prefix2
+
"/carefullyGoods?id="
+
num
,
900
,
800
,
cancel
)
// $.modal.openTab('精选商品', prefix2 + "/carefullyGoods?id=" + num)
break
;
case
8
:
$
.
modal
.
open
(
'新品推荐'
,
prefix2
+
"/newRecommended?id="
+
num
,
900
,
800
,
cancel
)
}
}
function
delSp
(
num
)
{
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/store/homeSet/newRecommended.html
0 → 100644
View file @
ef3df53b
This diff is collapsed.
Click to expand it.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/store/homeSet/topBanner.html
View file @
ef3df53b
...
...
@@ -544,9 +544,20 @@
showCancel
:
false
,
showClose
:
false
,
autoReplace
:
true
,
minImageWidth
:
'764'
,
maxImageWidth
:
'764'
,
minImageHeight
:
'1018'
,
maxImageHeight
:
'1018'
,
previewSettings
:
{
image
:
{
width
:
'764px'
,
height
:
'1018px'
}
},
dropZoneTitle
:
"请上传文件"
,
maxFileCount
:
1
}).
on
(
"filebatchselected"
,
function
(
event
,
files
)
{
//默认上传
console
.
log
(
files
,
$
(
this
))
$
(
this
).
fileinput
(
"upload"
);
})
.
on
(
"fileuploaded"
,
function
(
event
,
data
)
{
//上传回调事件
...
...
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