Commit 9b7f3f24 authored by youjie's avatar youjie

no message

parent 79a2ed03
<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: "确定",
......
...@@ -678,7 +678,6 @@ ...@@ -678,7 +678,6 @@
], ],
}; };
this.$refs[formName].resetFields(); this.$refs[formName].resetFields();
this.getList()
}, },
} }
} }
......
...@@ -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',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment