Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
e1c9673a
Commit
e1c9673a
authored
Mar 22, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
7bc27dae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
141 additions
and
24 deletions
+141
-24
employment.vue
src/pages/studyAbroad/employment.vue
+23
-17
studyabroad.vue
src/pages/studyAbroad/studyabroad.vue
+118
-7
No files found.
src/pages/studyAbroad/employment.vue
View file @
e1c9673a
...
...
@@ -15,8 +15,9 @@
</div>
</div>
<div
class=
"page-content"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-column-table"
separator=
"none"
:data=
"dataList"
:columns=
"columns"
row-key=
"name"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-column-table sticky-right-column-table"
separator=
"none"
:data=
"dataList"
:columns=
"columns"
row-key=
"name"
>
<template
v-slot:top=
"props"
>
<div
class=
"col-2 q-table__title"
>
就业信息
</div>
<q-space
/>
...
...
@@ -26,9 +27,8 @@
</
template
>
<
template
v-slot:body=
"props"
>
<q-tr
:props=
"props"
>
<template
v-for=
"col in props.cols"
>
<q-td
v-if=
"col.name == 'Name'"
>
<q-td
v-if=
"col.name == 'Name'"
style=
"width:200px;"
>
{{
col
.
value
}}
</q-td>
<q-td
v-else-if=
"col.name == 'SupplierName'"
>
...
...
@@ -40,6 +40,12 @@
</a>
</div>
</q-td>
<q-td
v-if=
"col.name=='SuggestPrice'"
>
{{
col
.
value
}}
</q-td>
<q-td
v-if=
"col.name=='SellPrice'"
>
{{
col
.
value
}}
</q-td>
<q-td
v-if=
"col.name == 'PreferentialList'"
style=
"padding-right:0px"
>
<div
v-for=
"x in col.value"
>
<div
class=
"border-bottom"
v-if=
"x.PriceDiscountType == 1"
>
...
...
@@ -58,13 +64,12 @@
暂无优惠政策
</div>
</div>
<div
v-if=
"!
props.value || props
.value.length == 0"
>
<div
v-if=
"!
col.value || col
.value.length == 0"
>
<div
class=
"remark-font"
>
暂无优惠政策
</div>
</div>
</q-td>
<q-td
v-else-if=
"col.name == 'PreferentialListSellCommission'"
style=
"padding-right:0px;padding-left:0px"
>
<div
v-for=
"x in
props
.value"
>
<div
v-for=
"x in
col
.value"
>
<div
class=
"border-bottom"
style=
"padding-left: 16px;padding-right: 16px"
:class=
"
{ 'text-red': x.SaleCommissionType == 1 }" v-if="x.PriceDiscountType != 0">
{{
x
.
SaleCommissionType
==
1
?
"¥"
:
""
...
...
@@ -75,13 +80,12 @@
<div
class=
"remark-font"
>
暂无佣金信息
</div>
</div>
</div>
<div
v-if=
"!
props.value || props
.value.length == 0"
>
<div
v-if=
"!
col.value || col
.value.length == 0"
>
<div
class=
"remark-font"
>
暂无佣金信息
</div>
</div>
</q-td>
<q-td
v-else-if=
"col.name == 'PreferentialListB2BCommission'"
style=
"padding-left:0px"
>
<div
v-for=
"x in
props
.value"
>
<div
v-for=
"x in
col
.value"
>
<div
class=
"border-bottom"
style=
"padding-left: 16px"
:class=
"
{ 'text-red': x.B2BCommissionType == 1 }" v-if="x.PriceDiscountType != 0">
{{
x
.
B2BCommissionType
==
1
?
"¥"
:
""
...
...
@@ -92,11 +96,14 @@
<div
class=
"remark-font"
>
暂无佣金信息
</div>
</div>
</div>
<div
v-if=
"!
props.value || props
.value.length == 0"
>
<div
v-if=
"!
col.value || col
.value.length == 0"
>
<div
class=
"remark-font"
>
暂无佣金信息
</div>
</div>
</q-td>
<q-td
v-else-if=
"col.name == 'Id'"
>
<q-td
v-if=
"col.name=='SaleStateName'"
>
{{
col
.
value
}}
</q-td>
<q-td
v-else-if=
"col.name == 'Id'"
style=
"width:200px;"
>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"编辑"
@
click=
"EditStudy(props.row)"
/>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"价格设置"
...
...
@@ -108,11 +115,10 @@
</q-tr>
<q-tr
:props=
"props"
>
<q-td
colspan=
"100%"
class=
"bg-grey-2"
>
<div
class=
"flex row items-start"
>
<q-badge
color=
"negative"
class=
"q-mr-md"
>
备注:
</q-badge>
<div>
{{props.row.Remark}}}
</div>
<div
style=
"display:flex;"
>
<div
style=
"flex-shrink:0"
>
备注:
</div>
<div
style=
"width:100%;word-break:break-all;word-wrap:break-word;white-space:normal"
>
{{props.row.Remark}}
</div>
</div>
</q-td>
</q-tr>
...
...
src/pages/studyAbroad/studyabroad.vue
View file @
e1c9673a
...
...
@@ -15,6 +15,123 @@
</div>
</div>
<div
class=
"page-content"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
class=
"sticky-column-table sticky-right-column-table"
separator=
"none"
:data=
"dataList"
:columns=
"columns"
row-key=
"name"
>
<template
v-slot:top=
"props"
>
<div
class=
"col-2 q-table__title"
>
留学信息
</div>
<q-space
/>
<div
class=
"page-option"
>
<q-btn
color=
"accent"
size=
"sm"
class=
"q-mr-md"
icon=
"add"
label=
"新增留学"
@
click=
"EditStudy(null)"
/>
</div>
</
template
>
<
template
v-slot:body=
"props"
>
<q-tr
:props=
"props"
>
<template
v-for=
"col in props.cols"
>
<q-td
v-if=
"col.name == 'Name'"
style=
"width:200px;"
>
{{
col
.
value
}}
</q-td>
<q-td
v-else-if=
"col.name == 'SupplierName'"
>
<div>
{{
col
.
value
}}
</div>
<div>
<a
:href=
"props.row.SupplierContract"
style=
"color:#2961FE;text-decoration:none;"
v-if=
"props.row.SupplierContract"
target=
"_blank"
>
查看合同
</a>
</div>
</q-td>
<q-td
v-if=
"col.name=='SuggestPrice'"
>
{{
col
.
value
}}
</q-td>
<q-td
v-if=
"col.name=='SellPrice'"
>
{{
col
.
value
}}
</q-td>
<q-td
v-if=
"col.name == 'PreferentialList'"
style=
"padding-right:0px"
>
<div
v-for=
"x in col.value"
>
<div
class=
"border-bottom"
v-if=
"x.PriceDiscountType == 1"
>
买
{{
x
.
BuyNum
}}
送
{{
x
.
SendNum
}}
</div>
<div
class=
"border-bottom"
v-if=
"x.PriceDiscountType == 2"
>
单人报名享
{{
100
-
x
.
PriceMoney
}}
折优惠
</div>
<div
class=
"border-bottom"
v-if=
"x.PriceDiscountType == 3"
>
双人报名享
{{
100
-
x
.
PriceMoney
}}
折优惠
</div>
<div
class=
"border-bottom"
v-if=
"x.PriceDiscountType == 4"
>
续费享
{{
100
-
x
.
PriceMoney
}}
折优惠
</div>
<div
class=
"remark-font"
v-if=
"x.PriceDiscountType == 0"
>
暂无优惠政策
</div>
</div>
<div
v-if=
"!col.value || col.value.length == 0"
>
<div
class=
"remark-font"
>
暂无优惠政策
</div>
</div>
</q-td>
<q-td
v-else-if=
"col.name == 'PreferentialListSellCommission'"
style=
"padding-right:0px;padding-left:0px"
>
<div
v-for=
"x in col.value"
>
<div
class=
"border-bottom"
style=
"padding-left: 16px;padding-right: 16px"
:class=
"
{ 'text-red': x.SaleCommissionType == 1 }" v-if="x.PriceDiscountType != 0">
{{
x
.
SaleCommissionType
==
1
?
"¥"
:
""
}}{{
x
.
SaleCommissionMoney
}}{{
x
.
SaleCommissionType
==
0
?
"%"
:
""
}}
</div>
<div
v-if=
"x.PriceDiscountType == 0"
>
<div
class=
"remark-font"
>
暂无佣金信息
</div>
</div>
</div>
<div
v-if=
"!col.value || col.value.length == 0"
>
<div
class=
"remark-font"
>
暂无佣金信息
</div>
</div>
</q-td>
<q-td
v-else-if=
"col.name == 'PreferentialListB2BCommission'"
style=
"padding-left:0px"
>
<div
v-for=
"x in col.value"
>
<div
class=
"border-bottom"
style=
"padding-left: 16px"
:class=
"
{ 'text-red': x.B2BCommissionType == 1 }" v-if="x.PriceDiscountType != 0">
{{
x
.
B2BCommissionType
==
1
?
"¥"
:
""
}}{{
x
.
B2BCommissionMoney
}}{{
x
.
B2BCommissionType
==
0
?
"%"
:
""
}}
</div>
<div
v-if=
"x.PriceDiscountType == 0"
>
<div
class=
"remark-font"
>
暂无佣金信息
</div>
</div>
</div>
<div
v-if=
"!col.value || col.value.length == 0"
>
<div
class=
"remark-font"
>
暂无佣金信息
</div>
</div>
</q-td>
<q-td
v-if=
"col.name=='SaleStateName'"
>
{{
col
.
value
}}
</q-td>
<q-td
v-else-if=
"col.name == 'Id'"
style=
"width:200px;"
>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"编辑"
@
click=
"EditStudy(props.row)"
/>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"价格设置"
@
click=
"EditStudyPrice(props.row)"
/>
<q-btn
v-if=
"props.row.SaleState==1||props.row.SaleState==4"
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"申请审核"
@
click=
"applyApply(props.row)"
/>
</q-td>
</
template
>
</q-tr>
<q-tr
:props=
"props"
>
<q-td
colspan=
"100%"
class=
"bg-grey-2"
>
<div
style=
"display:flex;"
>
<div
style=
"flex-shrink:0"
>
备注:
</div>
<div
style=
"width:100%;word-break:break-all;word-wrap:break-word;white-space:normal"
>
{{props.row.Remark}}
</div>
</div>
</q-td>
</q-tr>
</template>
<
template
v-slot:bottom
>
<q-pagination
class=
"full-width justify-end"
v-model=
"msg.pageIndex"
color=
"primary"
:max=
"PageCount"
:input=
"true"
@
input=
"changePage"
/>
</
template
>
</q-table>
<!--
<q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat class="sticky-column-table"
separator="none" :data="dataList" :columns="columns" row-key="name">
<template v-slot:top="props">
...
...
@@ -109,7 +226,7 @@
<q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="PageCount"
:input="true" @input="changePage" />
</template>
</q-table>
</q-table>
-->
<studyAbroad-form
v-if=
"isShowStudy"
:save-obj=
"studyObj"
:Type=
"1"
@
close=
"closeStudyForm"
@
success=
"refreshPage"
>
</studyAbroad-form>
...
...
@@ -197,12 +314,6 @@
align
:
"left"
,
field
:
row
=>
row
.
PreferentialList
},
{
name
:
'Remark'
,
label
:
'备注'
,
field
:
'Remark'
,
align
:
'left'
},
{
name
:
'SaleStateName'
,
label
:
'销售状态'
,
...
...
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