Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
9b7f3f24
Commit
9b7f3f24
authored
May 12, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
79a2ed03
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
667 additions
and
29 deletions
+667
-29
CommissionRule.vue
...mponents/FinancialModule/OPExtraReward/CommissionRule.vue
+619
-0
OPRules.vue
src/components/FinancialModule/OPRules.vue
+40
-28
CommissionRule.vue
...onents/FinancialModule/TradeCommission/CommissionRule.vue
+0
-1
config.js
src/router/config.js
+8
-0
No files found.
src/components/FinancialModule/OPExtraReward/CommissionRule.vue
0 → 100644
View file @
9b7f3f24
This diff is collapsed.
Click to expand it.
src/components/FinancialModule/OPRules.vue
View file @
9b7f3f24
<
template
>
<
template
>
<div
class=
"Feedback OPRules"
>
<div
class=
"red-theme Feedback OPRules"
>
<ul
style=
"overflow: initial!important"
>
<div
class=
"query-box HotelWorkInput"
style=
"border-bottom: none;"
>
<li>
<ul>
<span>
<li>
<em>
公司
</em>
<span>
</span>
<em>
公司
</em>
<el-select
filterable
v-model=
"obj.BranchId"
>
</span>
<el-option
label=
"不限"
:value=
'-1'
></el-option>
<el-select
filterable
v-model=
"obj.BranchId"
>
<el-option
v-for=
"item in companyList"
:label=
'item.BName'
:value=
'item.Id'
:key=
'item.Id'
>
<el-option
label=
"不限"
:value=
'-1'
></el-option>
</el-option>
<el-option
v-for=
"item in companyList"
:label=
'item.BName'
:value=
'item.Id'
:key=
'item.Id'
>
</el-select>
</el-option>
</li>
</el-select>
<li>
</li>
<span>
<li>
<em>
线路
</em>
<span>
</span>
<em>
线路
</em>
<el-select
filterable
v-model=
"obj.LineId"
>
</span>
<el-option
label=
"不限"
:value=
'0'
></el-option>
<el-select
filterable
v-model=
"obj.LineId"
>
<el-option
v-for=
"item in LineList"
:label=
'item.LineName'
:value=
'item.LineID'
:key=
'item.LineID'
>
<el-option
label=
"不限"
:value=
'0'
></el-option>
</el-option>
<el-option
v-for=
"item in LineList"
:label=
'item.LineName'
:value=
'item.LineID'
:key=
'item.LineID'
>
</el-select>
</el-option>
</li>
</el-select>
<li>
</li>
<input
type=
"button"
class=
"hollowFixedBtn"
value=
"查询"
@
click=
"getList()"
>
<li
style=
"float:right;color:red;font-weight:700;line-height: 30px;"
>
{{
tips
}}
</li>
<input
type=
"button"
class=
"hollowFixedBtn"
value=
"新增"
@
click=
"addRule"
>
<li>
</li>
<input
type=
"button"
class=
"hollowFixedBtn"
value=
"查询"
@
click=
"getList()"
>
<li
style=
"float:right;color:red;font-weight:700"
>
{{
tips
}}
</li>
<input
type=
"button"
class=
"hollowFixedBtn"
value=
"新增"
@
click=
"addRule"
>
</ul>
<input
type=
"button"
class=
"normalBtn"
value=
"额外奖励配置"
@
click=
"goExtraReward"
/>
</li>
</ul>
</div>
<table
style=
"margin-bottom:30px"
class=
"singeRowTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
<table
style=
"margin-bottom:30px"
class=
"singeRowTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
"loading"
>
v-loading=
"loading"
>
<tr>
<tr>
...
@@ -255,6 +259,14 @@
...
@@ -255,6 +259,14 @@
this
.
getDepartment
();
this
.
getDepartment
();
},
},
methods
:
{
methods
:
{
goExtraReward
(){
this
.
$router
.
push
({
name
:
'OPExtraRewardRule'
,
query
:
{
blank
:
'y'
}
});
},
Delete
(
item
)
{
Delete
(
item
)
{
this
.
$confirm
(
"是否删除? 删除后不可恢复"
,
"提示"
,
{
this
.
$confirm
(
"是否删除? 删除后不可恢复"
,
"提示"
,
{
confirmButtonText
:
"确定"
,
confirmButtonText
:
"确定"
,
...
...
src/components/FinancialModule/TradeCommission/CommissionRule.vue
View file @
9b7f3f24
...
@@ -678,7 +678,6 @@
...
@@ -678,7 +678,6 @@
],
],
};
};
this
.
$refs
[
formName
].
resetFields
();
this
.
$refs
[
formName
].
resetFields
();
this
.
getList
()
},
},
}
}
}
}
...
...
src/router/config.js
View file @
9b7f3f24
...
@@ -4976,6 +4976,14 @@ export default {
...
@@ -4976,6 +4976,14 @@ export default {
title
:
'同业提成详情'
title
:
'同业提成详情'
}
}
},
},
{
path
:
'/OPExtraRewardRule'
,
name
:
'OPExtraRewardRule'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/OPExtraReward/CommissionRule'
],
resolve
),
meta
:
{
title
:
'额外提成规则'
}
},
{
{
path
:
'/ServiceTheRules'
,
path
:
'/ServiceTheRules'
,
name
:
'ServiceTheRules'
,
name
:
'ServiceTheRules'
,
...
...
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