Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
memberTag-web
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
memberTag
memberTag-web
Commits
a753f990
Commit
a753f990
authored
Nov 14, 2018
by
xiaohai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
小细节修改
parent
1098fcad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
groupTransfer.vue
src/components/groupTransfer.vue
+2
-1
memberGroupList.vue
src/view/memberGroup/memberGroupList.vue
+1
-6
No files found.
src/components/groupTransfer.vue
View file @
a753f990
...
...
@@ -57,7 +57,7 @@
width=
"150px"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
updateType
==
1
?
'每天一次'
:
scope
.
row
.
updateType
==
2
?
'每周一次'
:
'每月一次'
}}
{{
scope
.
row
.
updateType
==
1
?
'每天一次'
:
scope
.
row
.
updateType
==
2
?
(
scope
.
row
.
updateDay
?
'每周'
+
weekArr
[
scope
.
row
.
updateDay
-
1
]
:
'每周一次'
)
:
(
scope
.
row
.
updateDay
?
'每月'
+
scope
.
row
.
updateDay
+
'号'
:
'每月一次'
)
}}
</
template
>
</el-table-column>
<el-table-column
...
...
@@ -160,6 +160,7 @@
return
{
tableData
:
[],
pageSize
:
20
,
weekArr
:
[
'一'
,
'二'
,
'三'
,
'四'
,
'五'
,
'六'
,
'日'
],
currentPage
:
1
,
dataSearch
:
""
,
baseUrl
:
""
,
...
...
src/view/memberGroup/memberGroupList.vue
View file @
a753f990
<
template
>
<div
class=
"memberGroupList-wrap common-wrap"
>
<nav-crumb
:navpath=
"navpath"
></nav-crumb>
<div
class=
"p-20"
>
<group-transfer></group-transfer>
</div>
<div
class=
"right-content"
>
<div
class=
"right-box"
>
<div
class=
"common-wrap__opt"
>
...
...
@@ -158,7 +155,6 @@
import
timeFormat
from
'@/common/js/timeFormat'
;
import
{
_debounce
}
from
"@/common/js/public"
;
import
{
getRequest
,
postRequest
,
postJson
,
postForm
}
from
'@/api/api'
;
import
groupTransfer
from
'@/components/groupTransfer'
;
export
default
{
name
:
'memberGroupList'
,
data
()
{
...
...
@@ -430,8 +426,7 @@
that
.
getGroupList
()
},
components
:
{
navCrumb
,
groupTransfer
navCrumb
}
}
</
script
>
...
...
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