Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
W
WX_h5
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
godwithdh
WX_h5
Commits
beb8ffec
Commit
beb8ffec
authored
Dec 13, 2019
by
godwithdh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
boss
parent
24ac5105
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
296 additions
and
65 deletions
+296
-65
host.js
src/libs/host.js
+2
-2
index.js
src/router/index.js
+1
-1
Finance.vue
src/view/kanban/Finance.vue
+98
-20
abnormal.vue
src/view/kanban/abnormal.vue
+101
-4
capital.vue
src/view/kanban/capital.vue
+65
-8
index.vue
src/view/kanban/index.vue
+6
-3
operate.vue
src/view/kanban/operate.vue
+17
-22
inventory.vue
src/view/tiip/chart/inventory.vue
+6
-5
No files found.
src/libs/host.js
View file @
beb8ffec
...
...
@@ -12,8 +12,8 @@ function urlFun(name){
/**
* 默认公司
*/
// default:`http://192.168.4.37
:5001`,
default
:
`https://weixin.huansi.net/apiproxy/huansi/service/proxy/
${
userID
}
`
,
default
:
`http://192.168.4.39
:5001`
,
//
default:`https://weixin.huansi.net/apiproxy/huansi/service/proxy/${userID}`,
/**
* 基本地址
...
...
src/router/index.js
View file @
beb8ffec
...
...
@@ -107,7 +107,7 @@ let routes = [
path
:
"/main"
,
children
:[
{
path
:
"/kanban"
,
path
:
"/kanban
/:userId
"
,
name
:
"kanban"
,
component
:()
=>
import
(
"@/view/kanban/index.vue"
),
meta
:{
...
...
src/view/kanban/Finance.vue
View file @
beb8ffec
<
style
lang=
"less"
>
.Finance{
padding:10px;
display:flex;
>div{
width:50%;
background:rgb(94,154,254);
box-shadow: 2px 2px 3px rgba(94,154,254,0.4);
color:#fff;
padding:10px;
box-sizing: border-box;
border-radius: 6px;
>.number{
min-height: 35px;
padding: 5px 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 25px;
>.title_{
display: inline-block;
background: #5E9AFE;
color: #fff;
border-bottom-right-radius: 50px;
border-top-right-radius: 50px;
padding: 6px 15px;
font-size: 16px;
}
>.card{
background: #fff;
border-radius: 7px;
box-shadow: 1px 1px 3px #aaa;
padding: 10px;
margin: 10px;
>div{
border-left: 3px solid #5E9AFE;
padding-left: 8px;
display: flex;
>div.num{
flex-grow:1;
>div{
&:not(:last-child){padding-bottom:4px;}
>span:first-child{
color:#777;
padding-right:10px;
}
}
}
}
}
}
}
</
style
>
<
template
>
<div
class=
"Finance"
>
<div>
<div
style=
"font-size:15px;"
>
应收数量
</div>
<div
class=
"number"
>
324,523.45
</div>
<div
v-for=
"(v,k) in list"
:key=
'k'
>
<div
class=
"title_"
>
{{
v
.
sName
}}
</div>
<div
class=
"card"
>
<div>
<div
class=
"num"
>
<div><span>
数量
</span><span>
{{
v
.
nQty
||
0
}}
</span></div>
<div><span>
金额
</span><span
style=
"color:#5E9AFE;"
>
{{
v
.
nAmount
||
0
}}
</span></div>
<div><span>
余额
</span><span
style=
"color:#FF6633;"
>
{{
v
.
nCloseAmount
||
0
}}
</span></div>
</div>
<XCircle
style=
"width: 60px;height: 60px;"
:percent=
"Number(v.nPercent)||70"
:stroke-width=
"7"
:stroke-color=
"color[k%4]"
:trail-width=
"5"
trail-color=
"#ececec"
>
<span
style=
"color:#36D1DC;"
>
{{
Number
(
v
.
nPercent
)
||
0
}}
%
</span>
</XCircle>
</div>
</div>
</div>
</div>
</
template
>
<
script
>
import
{
XCircle
}
from
'vux'
import
util
from
"@/libs/util.js"
export
default
{
name
:
"Finance"
name
:
"Finance"
,
components
:{
XCircle
},
props
:{
start
:
Date
,
end
:
Date
,
},
data
(){
return
{
list
:{},
color
:[
'#FF6633'
,
'#5E9AFE'
,
'#9966CC'
,
'#46FC43'
],
}
},
watch
:{
start
(
n
){
this
.
search
()
},
end
(
n
){
this
.
search
()
},
},
created
(){
this
.
$nextTick
(()
=>
{
this
.
search
()
})
},
methods
:{
async
search
(){
var
value
=
await
this
.
request
(
"getBoss"
,{
data
:[{
key
:
"url"
,
value
:
"Financial Summary"
}],
params
:{
begin_date
:
util
.
dateFormat
(
this
.
start
,
"yyyy-MM-dd"
),
end_date
:(
this
.
end
?
util
.
dateFormat
(
this
.
end
,
"yyyy-MM-dd"
):
util
.
dateFormat
(
new
Date
,
"yyyy-MM-dd"
))
+
' 23:59'
,
},
},
true
,{})
if
(
typeof
value
==
'object'
&&
value
.
length
>
0
){
this
.
list
=
value
}
else
{
this
.
$vux
.
confirm
.
show
({
title
:
"提示"
,
content
:
"未获取到数据"
,
showConfirmButton
:
false
,
})
}
}
},
}
</
script
>
src/view/kanban/abnormal.vue
View file @
beb8ffec
...
...
@@ -35,25 +35,122 @@
<div>
销售退货
</div>
</td>
<td>
<div>
1000
</div>
<div>
{{
value
[
'销售退货'
]
}}
</div>
</td>
<td>
<div>
采购退货
</div>
</td>
<td>
<div>
346
</div>
<div>
{{
value
[
'采购退货'
]
}}
</div>
</td>
</tr>
<tr>
<td>
<div>
加工回修
</div>
</td>
<td>
<div>
{{
value
[
'加工回修'
]
}}
</div>
</td>
<td>
<div>
疵品数量
</div>
</td>
<td>
<div>
{{
value
[
'疵品汇总'
]
}}
</div>
</td>
</tr>
<tr>
<td
colspan=
'4'
style=
"text-align:left;padding:0 0 0 10px;color:#68A0FE;"
>
拖期订单:
{{
value
[
'拖期订单数量'
]
}}
</td>
</tr>
<tr>
<td>
<div>
数量
</div>
</td>
<td>
<div>
{{
value
[
'拖期订单总数量'
]
}}
</div>
</td>
<td>
<div>
金额
</div>
</td>
<td>
<div>
{{
value
[
'拖期订单总金额'
]
}}
</div>
</td>
</tr>
<tr>
<td>
<div>
供应商赔款
</div>
</td>
<td>
<div>
{{
value
[
'供应商索赔'
]
}}
</div>
</td>
<td>
<div>
客户赔款
</div>
</td>
<td>
<div>
{{
value
[
'客户索赔'
]
}}
</div>
</td>
</tr>
<tr>
<td>
<div>
超期应收额
</div>
</td>
<td>
<div>
{{
value
[
'超期应收'
]
}}
</div>
</td>
<td>
<div>
超期应付额
</div>
</td>
<td>
<div>
{{
value
[
'超期应付'
]
}}
</div>
</td>
</tr>
</table>
</div>
</
template
>
<
script
>
import
util
from
"@/libs/util.js"
export
default
{
name
:
"abnormal"
,
props
:{
start
:
Date
,
end
:
Date
,
},
data
(){
return
{
value
:{},
}
}
},
watch
:{
start
(
n
){
this
.
search
()
},
end
(
n
){
this
.
search
()
},
},
created
(){
this
.
$nextTick
(()
=>
{
this
.
search
()
})
},
methods
:{
async
search
(){
var
value
=
await
this
.
request
(
'getBoss'
,{
data
:[{
key
:
"url"
,
value
:
"Abnormal early warning"
}],
params
:{
begin_date
:
util
.
dateFormat
(
this
.
start
,
"yyyy-MM-dd"
),
end_date
:(
this
.
end
?
util
.
dateFormat
(
this
.
end
,
"yyyy-MM-dd"
):
util
.
dateFormat
(
new
Date
,
"yyyy-MM-dd"
))
+
' 23:59'
,
},
},
true
,{})
if
(
typeof
value
==
"object"
&&
value
.
length
>
0
){
this
.
value
=
value
[
0
]
}
else
{
this
.
$vux
.
confirm
.
show
({
title
:
"提示"
,
content
:
"未获取到数据"
,
showConfirmButton
:
false
,
})
}
},
},
}
</
script
>
src/view/kanban/capital.vue
View file @
beb8ffec
...
...
@@ -17,25 +17,82 @@
</
style
>
<
template
>
<div
class=
"capital"
>
<div
class=
"card"
>
<div
class=
"card"
v-for=
"(v,i) in list"
:key=
"i"
>
<div>
<div
style=
"font-size:13px;margin-bottom:14px;"
>
银行收入 (单位:万元)
</div>
<div
style=
"font-size: 28px;font-weight: 600;"
>
234,452.42
</div>
<div
style=
"font-size:13px;margin-bottom:14px;"
>
{{
v
.
sName
}}
</div>
<div
style=
"font-size: 28px;font-weight: 600;"
>
{{
Number
(
v
.
sValue
)
||
0
}}
</div>
</div>
<div
style=
"align-self: flex-end;"
>
<div>
↑
89.30%
</div>
<div>
比
昨日
下降
</div>
<div
style=
"align-self: flex-end;"
>
<div>
↑
{{
v
.
rate
}}
</div>
<div>
比
{{
dateModeName
}}
下降
</div>
</div>
</div>
</div>
</
template
>
<
script
>
import
util
from
"@/libs/util.js"
export
default
{
name
:
"capital"
,
props
:{
start
:
Date
,
end
:
Date
,
dateMode
:
Number
,
},
data
(){
return
{
list
:[],
}
}
},
watch
:{
start
(
n
){
this
.
search
()
},
end
(
n
){
this
.
search
()
},
},
created
(){
window
.
aaa
=
this
this
.
$nextTick
(()
=>
{
this
.
search
()
})
},
methods
:{
async
search
(){
var
value
=
await
this
.
request
(
"getBoss"
,{
data
:[{
key
:
"url"
,
value
:
"Summary of funds"
}],
params
:{
begin_date
:
util
.
dateFormat
(
this
.
start
,
"yyyy-MM-dd"
),
end_date
:(
this
.
end
?
util
.
dateFormat
(
this
.
end
,
"yyyy-MM-dd"
):
util
.
dateFormat
(
new
Date
,
"yyyy-MM-dd"
))
+
' 23:59'
,
}
},
true
,{})
if
(
typeof
value
==
'object'
&&
value
.
length
>
0
){
this
.
list
=
value
.
map
(
v
=>
{
if
(
v
.
sValued
==
0
){
v
.
rate
=
100
}
else
{
v
.
rate
=
Math
.
round
((
v
.
sValue
-
v
.
sValued
)
/
v
.
sValued
*
100
)
/
100
}
return
v
;
})
}
else
{
this
.
$vux
.
confirm
.
show
({
title
:
"提示"
,
content
:
"未获取到数据"
,
showConfirmButton
:
false
,
})
}
}
},
computed
:{
dateModeName
(){
switch
(
this
.
dateMode
){
case
1
:
return
"昨日"
;
case
2
:
return
"上周"
;
case
3
:
return
"上个月"
;
case
4
:
return
"去年"
;
}
}
},
}
</
script
>
src/view/kanban/index.vue
View file @
beb8ffec
...
...
@@ -99,10 +99,10 @@
<span
:class=
"
{active:situation=='capital'}" @click="situation='capital'">资金概况
</span>
<span
:class=
"
{active:situation=='Finance'}" @click="situation='Finance'">财务概况
</span>
<span
:class=
"
{active:situation=='abnormal'}" @click="situation='abnormal'">异常预警
</span>
<span
:class=
"
{active:situation==
4}" @click="situation=4
">库存情况
</span>
<span
:class=
"
{active:situation==
'tiipChartInventory'}" @click="situation='tiipChartInventory'
">库存情况
</span>
</div>
<div
class=
"content"
>
<component
:is=
"situation"
:start=
"DateValue[0]"
:end=
"DateValue[1]"
/>
<component
:is=
"situation"
:dateMode=
"dateMode"
:start=
"DateValue[0]"
:end=
"DateValue[1]"
/>
</div>
<calendar
:show
.
sync=
"calendarShow"
...
...
@@ -117,10 +117,11 @@ import operate from "./operate"
import
capital
from
"./capital"
import
Finance
from
"./Finance"
import
abnormal
from
"./abnormal"
import
tiipChartInventory
from
"@/view/tiip/chart/inventory"
export
default
{
name
:
"kanban"
,
components
:{
operate
,
capital
,
Finance
,
abnormal
},
components
:{
operate
,
capital
,
Finance
,
abnormal
,
tiipChartInventory
},
data
(){
return
{
calendarShow
:
false
,
...
...
@@ -132,6 +133,8 @@ export default {
},
mounted
(){
window
.
kanban
=
this
this
.
$store
.
dispatch
(
'saveUserId'
,
this
.
$route
.
params
.
userId
);
console
.
log
()
},
methods
:{
preDate
(){
...
...
src/view/kanban/operate.vue
View file @
beb8ffec
...
...
@@ -39,35 +39,21 @@
<tr>
<td></td>
<td>
米数
</td>
<td>
重量
</td>
<td>
匹数
</td>
<td>
金额
</td>
</tr>
<tr>
<td>
<div>
接单
</div>
</td>
<td>
<div>
1
</div>
</td>
<td>
<div>
2
</div>
</td>
<td>
<div>
3
</div>
</td>
</tr>
<tr>
<tr
v-for=
"(v,i) in list"
:key=
"i"
>
<td>
<div>
接单
</div>
<div>
{{
v
.
sType
}}
</div>
</td>
<td>
<div>
13
</div>
<div>
{{
v
.
nQty
||
0
}}
</div>
</td>
<td>
<div>
14
</div>
<div>
{{
v
.
nPieces
||
0
}}
</div>
</td>
<td>
<div>
52
</div>
<div>
{{
v
.
nAmount
||
0
}}
</div>
</td>
</tr>
</table>
...
...
@@ -83,7 +69,7 @@ export default {
},
data
(){
return
{
list
:[],
}
},
watch
:{
...
...
@@ -105,9 +91,18 @@ export default {
data
:[{
key
:
"url"
,
value
:
"Operation gai"
}],
params
:{
begin_date
:
util
.
dateFormat
(
this
.
start
,
"yyyy-MM-dd"
),
end_date
:
this
.
end
?
util
.
dateFormat
(
this
.
end
,
"yyyy-MM-dd"
):
util
.
dateFormat
(
new
Date
,
"yyyy-MM-dd"
)
,
end_date
:
(
this
.
end
?
util
.
dateFormat
(
this
.
end
,
"yyyy-MM-dd"
):
util
.
dateFormat
(
new
Date
,
"yyyy-MM-dd"
))
+
' 23:59'
,
},
},
true
,{})
if
(
typeof
value
==
'object'
&&
value
.
length
>
0
){
this
.
list
=
value
}
else
{
this
.
$vux
.
confirm
.
show
({
title
:
"提示"
,
content
:
"未获取到数据"
,
showConfirmButton
:
false
,
})
}
},
},
}
...
...
src/view/tiip/chart/inventory.vue
View file @
beb8ffec
...
...
@@ -159,11 +159,12 @@ export default {
this
.
renderChart
();
})
});
},
async
activated
(){
this
.
renderResize
();
await
this
.
getDetail
();
await
this
.
renderChart
();
this
.
$nextTick
(
async
()
=>
{
this
.
renderResize
();
await
this
.
getDetail
();
await
this
.
renderChart
();
})
},
methods
:{
renderResize
()
{
...
...
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