Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
techbook
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
front-end-dev
techbook
Commits
260b5c70
Commit
260b5c70
authored
Aug 27, 2020
by
zhangyanni
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
daff1c02
0835f581
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
PageLeft.vue
src/components/index/PageLeft.vue
+1
-1
index.vue
src/views/index/pages/index.vue
+1
-1
guesslist.vue
src/views/integralpage/guesslist.vue
+1
-1
integralconfig.vue
src/views/integralpage/integralconfig.vue
+3
-1
No files found.
src/components/index/PageLeft.vue
View file @
260b5c70
...
...
@@ -42,7 +42,7 @@
<span>
{{
item
.
functionName
}}
</span>
</
template
>
<el-menu-item-group
v-for=
"(son,ind) in item.systemFunctionlist"
:key=
"ind"
>
<el-menu-item
:index=
"son.functionUrl"
><span
class=
"circle5px"
:style=
"{backgroundColor:currentIndex==son.functionUrl?'#5D78FF':''}"
></span>
{{son.functionName}}
<el-menu-item
v-if=
"$i18n.locale=='zh-CN'?son.functionUrl!=null:son.functionUrl!='/userintegral'&&son.functionUrl!='/empguesslist'"
:index=
"son.functionUrl"
><span
class=
"circle5px"
:style=
"{backgroundColor:currentIndex==son.functionUrl?'#5D78FF':''}"
></span>
{{son.functionName}}
</el-menu-item>
</el-menu-item-group>
</el-submenu>
...
...
src/views/index/pages/index.vue
View file @
260b5c70
<
template
>
<div
class=
"contentWrapper"
style=
"max-width: 1440px;margin: 0 auto;"
>
<div
style=
"position: fixed;right: 5px;top: 70%;z-index:500;cursor: pointer;"
>
<div
v-if=
"$i18n.locale=='zh-CN'"
style=
"position: fixed;right: 5px;top: 70%;z-index:500;cursor: pointer;"
>
<p
v-if=
"!isHasSign"
@
click=
"getintegralCode"
style=
"margin-bottom: 20px;"
><img
src=
"../../../assets/img/indexSignin.png"
style=
"width: 50px;height: 50px;"
alt=
""
></p>
<p
@
click=
"toguesslist"
><img
src=
"../../../assets/img/indexguess.png"
style=
"width: 90px;height: 80px;"
alt=
""
></p>
</div>
...
...
src/views/integralpage/guesslist.vue
View file @
260b5c70
...
...
@@ -66,7 +66,7 @@
</el-table-column>
<el-table-column
label=
"操作"
width=
"200"
align=
'center'
>
<
template
slot-scope=
"scope"
>
<el-button
v-if=
"scope.row.guessStatus != 2"
type=
"text"
@
click=
"$router.push(
{path:'/guessDetail',query:{id:scope.row.guessId}})">预览
</el-button>
<el-button
v-if=
"scope.row.guessStatus != 2
&&scope.row.guessStatus != 0
"
type=
"text"
@
click=
"$router.push(
{path:'/guessDetail',query:{id:scope.row.guessId}})">预览
</el-button>
<el-button
v-if=
"scope.row.guessStatus == 3"
type=
"text"
@
click=
"settledguess(scope.row)"
>
结算
</el-button>
<el-button
type=
"text"
@
click=
"viewShow(scope.row)"
>
查看
</el-button>
<el-button
v-if=
"scope.row.guessStatus != 2"
type=
"text"
@
click=
"pullGuess(scope.row)"
>
下架
</el-button>
...
...
src/views/integralpage/integralconfig.vue
View file @
260b5c70
...
...
@@ -92,7 +92,9 @@
mounted
()
{
api
.
getIntegrationSetting
().
then
(
response
=>
{
if
(
response
.
code
==
0
)
{
this
.
infoData
=
response
.
result
;
if
(
response
.
result
){
this
.
infoData
=
response
.
result
;
}
}
else
{
this
.
$message
.
error
(
response
.
msg
);
}
...
...
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