Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
A
admin-base
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
new-sing
admin-base
Commits
c5ddeeea
Commit
c5ddeeea
authored
Mar 08, 2019
by
chenyishuai@singsingenglish.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
3.8后台修改
parent
d707cca2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
3 deletions
+20
-3
index.vue
src/components/achievement/index.vue
+5
-0
dayOrderCount.vue
src/components/orderCount/dayOrderCount.vue
+5
-1
index.vue
src/components/orderCount/index.vue
+5
-1
monthOrderCount.vue
src/components/orderCount/monthOrderCount.vue
+5
-1
No files found.
src/components/achievement/index.vue
View file @
c5ddeeea
...
...
@@ -55,6 +55,11 @@
label=
"2年课"
sortable
>
</el-table-column>
<el-table-column
prop=
"one_to_two"
label=
"续课"
sortable
>
</el-table-column>
</el-table>
</el-tab-pane>
<el-tab-pane
label=
"业绩按天排行"
name=
"second"
>
...
...
src/components/orderCount/dayOrderCount.vue
View file @
c5ddeeea
...
...
@@ -13,7 +13,7 @@
<el-option
v-for=
"item in goodsList"
:key=
"item.id"
:label=
"item
.name
"
:label=
"item
| filterGoods
"
:value=
"item.id"
>
</el-option>
</el-select>
...
...
@@ -66,6 +66,7 @@
<
script
>
import
{
getGoodsListApi
,
orderCountApi
}
from
"../../service/api"
;
import
{
GOODSTYPE
}
from
"../../util/wordbook"
;
export
default
{
name
:
"dayOrderCount"
,
data
(){
...
...
@@ -122,6 +123,9 @@
}
else
{
return
value
}
},
filterGoods
(
val
){
return
'['
+
val
.
id
+
']'
+
'['
+
GOODSTYPE
[
val
.
goods_type
]
+
']'
+
'['
+
val
.
current_price
/
100
+
'元]'
+
val
.
name
}
},
methods
:{
...
...
src/components/orderCount/index.vue
View file @
c5ddeeea
...
...
@@ -13,7 +13,7 @@
<el-option
v-for=
"item in goodsList"
:key=
"item.id"
:label=
"item
.name
"
:label=
"item
| filterGoods
"
:value=
"item.id"
>
</el-option>
</el-select>
...
...
@@ -65,6 +65,7 @@
<
script
>
import
{
getGoodsListApi
,
orderCountApi
}
from
"../../service/api"
;
import
{
GOODSTYPE
}
from
"../../util/wordbook"
;
export
default
{
name
:
"index"
,
data
(){
...
...
@@ -94,6 +95,9 @@
}
else
{
return
value
}
},
filterGoods
(
val
){
return
'['
+
val
.
id
+
']'
+
'['
+
GOODSTYPE
[
val
.
goods_type
]
+
']'
+
'['
+
val
.
current_price
/
100
+
'元]'
+
val
.
name
}
},
methods
:{
...
...
src/components/orderCount/monthOrderCount.vue
View file @
c5ddeeea
...
...
@@ -13,7 +13,7 @@
<el-option
v-for=
"item in goodsList"
:key=
"item.id"
:label=
"item
.name
"
:label=
"item
| filterGoods
"
:value=
"item.id"
>
</el-option>
</el-select>
...
...
@@ -66,6 +66,7 @@
<
script
>
import
{
getGoodsListApi
,
orderCountApi
}
from
"../../service/api"
;
import
{
GOODSTYPE
}
from
"../../util/wordbook"
;
export
default
{
name
:
"monthOrderCount"
,
data
(){
...
...
@@ -122,6 +123,9 @@
}
else
{
return
value
}
},
filterGoods
(
val
){
return
'['
+
val
.
id
+
']'
+
'['
+
GOODSTYPE
[
val
.
goods_type
]
+
']'
+
'['
+
val
.
current_price
/
100
+
'元]'
+
val
.
name
}
},
methods
:{
...
...
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