Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
frontend
/
qqxb-self-service
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
4806a0be
authored
Jun 18, 2020
by
cocomilk2012
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
update
parent
b94db16f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
27 deletions
src/views/FlexEmployee.vue
src/views/FlexEmployeeDetial.vue
src/views/FlexEmployee.vue
View file @
4806a0be
<
template
>
<
template
>
<!-- 1、已接单 进行中 #077AEC 2、已拒回 #FF9100 3、已完成 #95989E-->
<!-- 1、已接单 进行中 #077AEC 2、已拒回 #FF9100 3、已完成 #95989E-->
<div
class=
"fe-bigbox"
>
<div
class=
"fe-bigbox"
>
<div
v-if=
"taskRecordList
!=
null"
>
<div
v-if=
"taskRecordList
!=
null"
>
<div
class=
"person-information"
>
<div
class=
"person-information"
>
<div
class=
"person-information-top"
>
<div
class=
"person-information-top"
>
<div
class=
"person-information-left"
>
<div
class=
"person-information-left"
>
<h3>
{{
name
}}
</h3>
<h3>
{{
name
}}
</h3>
<p>
{{
birthday
}}
</p>
<p>
{{
birthday
}}
</p>
</div>
</div>
</div>
</div>
<div
class=
"person-information-bottom"
>
<div
class=
"person-information-bottom"
>
<div
class=
"person-information-bottom-child"
id=
"person-information-yjrw"
>
<div
<h3>
{{
accept_work
|
isEmpty
}}
</h3>
class=
"person-information-bottom-child"
id=
"person-information-yjrw"
>
<h3>
{{
accept_work
|
isEmpty
}}
</h3>
<p>
已接任务
</p>
<p>
已接任务
</p>
</div>
</div>
<div
class=
"person-information-bottom-child"
id=
"person-information-wcrw"
>
<div
<h3>
{{
perform_work
|
isEmpty
}}
</h3>
class=
"person-information-bottom-child"
id=
"person-information-wcrw"
>
<h3>
{{
perform_work
|
isEmpty
}}
</h3>
<p>
完成任务
</p>
<p>
完成任务
</p>
</div>
</div>
<div
class=
"person-information-bottom-child"
id=
"person-information-ysbc"
>
<div
<h3>
{{
Payment_receivable
|
money
(
true
,
false
)
|
isEmpty
}}
</h3>
class=
"person-information-bottom-child"
id=
"person-information-ysbc"
>
<h3>
{{
Payment_receivable
|
money
(
true
,
false
)
|
isEmpty
}}
</h3>
<p>
应收报酬
</p>
<p>
应收报酬
</p>
</div>
</div>
<div
class=
"person-information-bottom-child"
id=
"person-information-yysbc"
>
<div
<h3>
{{
receive_receivable
|
isEmpty
}}
</h3>
class=
"person-information-bottom-child"
id=
"person-information-yysbc"
>
<h3>
{{
receive_receivable
|
isEmpty
}}
</h3>
<p>
已收报酬
</p>
<p>
已收报酬
</p>
</div>
</div>
</div>
</div>
...
@@ -42,13 +53,15 @@
...
@@ -42,13 +53,15 @@
@
click=
"toDetail(item.id)"
@
click=
"toDetail(item.id)"
>
>
<div
class=
"fe-list-child-left"
>
<div
class=
"fe-list-child-left"
>
<h3>
{{
item
.
description
}}
</h3>
<h3>
{{
item
.
title
}}
</h3>
<p>
{{
item
.
createTime
|
format
}}
</p>
<p>
{{
item
.
createTime
|
format
}}
</p>
</div>
</div>
<div
class=
"fe-list-child-right"
>
<div
class=
"fe-list-child-right"
>
<div
class=
"fe-list-child-right-desc"
>
<div
class=
"fe-list-child-right-desc"
>
<h3>
{{
item
.
paidSalary
|
money
(
true
,
true
)
}}
</h3>
<h3>
{{
item
.
paidSalary
|
money
(
true
,
true
)
}}
</h3>
<p
:style=
"matchColor(item.billStatus)"
>
{{
item
.
billStatus
}}
</p>
<p
:style=
"matchColor(item.billStatus)"
>
{{
item
.
billStatus
}}
</p>
</div>
</div>
<img
src=
"../assets/images/agent/next_gray.png"
alt
/>
<img
src=
"../assets/images/agent/next_gray.png"
alt
/>
</div>
</div>
...
@@ -80,8 +93,8 @@ import { Component, Vue } from "vue-property-decorator";
...
@@ -80,8 +93,8 @@ import { Component, Vue } from "vue-property-decorator";
// }
// }
})
})
export
default
class
FlexEmployee
extends
Vue
{
export
default
class
FlexEmployee
extends
Vue
{
private
name
:
string
=
"迪丽热巴"
;
//入参
private
name
:
string
=
"迪丽热巴"
;
//入参
private
birthday
:
string
=
"1987-10-16"
;
//入参
private
birthday
:
string
=
"1987-10-16"
;
//入参
private
accept_work
:
string
=
""
;
private
accept_work
:
string
=
""
;
private
perform_work
:
string
=
""
;
private
perform_work
:
string
=
""
;
...
@@ -109,7 +122,6 @@ export default class FlexEmployee extends Vue {
...
@@ -109,7 +122,6 @@ export default class FlexEmployee extends Vue {
}
}
mounted
()
{
mounted
()
{
let
params
=
{
let
params
=
{
idNo
:
this
.
$route
.
query
.
id_no
//371327198511175134
idNo
:
this
.
$route
.
query
.
id_no
//371327198511175134
};
};
...
...
src/views/FlexEmployeeDetial.vue
View file @
4806a0be
...
@@ -2,21 +2,23 @@
...
@@ -2,21 +2,23 @@
<div
class=
"fe-detial-box"
>
<div
class=
"fe-detial-box"
>
<div
class=
"fe-detial-top"
>
<div
class=
"fe-detial-top"
>
<h4>
任务报酬
</h4>
<h4>
任务报酬
</h4>
<h3>
+
{{
item
.
paidSalary
|
money
}}
</h3>
<h3>
+
{{
item
.
paidSalary
|
money
}}
</h3>
<p
:style=
"matchColor(item.status)"
>
{{
item
.
status
}}
</p>
<p
:style=
"matchColor(item.status)"
>
{{
item
.
status
}}
</p>
</div>
</div>
<div
class=
"fe-detial-bottom"
>
<div
class=
"fe-detial-bottom"
>
<div
class=
"fe-detial-bottom-title"
>
<div
class=
"fe-detial-bottom-title"
>
<p>
发包企业
</p>
<p>
发包企业
</p>
<p>
任务内容
</p>
<p>
订单标题
</p>
<p>
服务类别
</p>
<p>
发放时间
</p>
<p>
发放时间
</p>
<p>
收款账户
</p>
<p>
收款账户
</p>
</div>
</div>
<div
class=
"fe-detial-bottom-detial"
>
<div
class=
"fe-detial-bottom-detial"
>
<p>
{{
item
.
fullName
}}
</p>
<p>
{{
item
.
fullName
}}
</p>
<p>
{{
item
.
description
}}
</p>
<p>
{{
item
.
description
}}
</p>
<p>
{{
item
.
payTime
}}
</p>
<p>
{{
item
.
description
}}
</p>
<p>
{{
item
.
banko
}}
</p>
<p>
{{
item
.
payTime
}}
</p>
<p>
{{
item
.
banko
}}
</p>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -32,7 +34,6 @@ import { toMoney } from "@/utils/public";
...
@@ -32,7 +34,6 @@ import { toMoney } from "@/utils/public";
}
}
})
})
export
default
class
FlexEmployee
extends
Vue
{
export
default
class
FlexEmployee
extends
Vue
{
private
item
:
any
;
private
item
:
any
;
get
matchColor
()
{
get
matchColor
()
{
...
...
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