Commit 735a614e authored by 黄奎's avatar 黄奎
parents 1f52388c 5fd55cbf
...@@ -135,6 +135,18 @@ ...@@ -135,6 +135,18 @@
</div> </div>
</div> </div>
</template> </template>
<div class="row wrap">
<div class="col-12">
<q-input filled stack-label maxlength="20" :dense="false" v-model="objOption.RebateRate" ref="RebateRate"
class="col-12 q-pb-lg" label="返佣比例%" />
</div>
</div>
<div class="row wrap">
<div class="col-12">
<q-input filled stack-label maxlength="20" :dense="false" v-model="objOption.RebateMoney" ref="RebateMoney"
class="col-12 q-pb-lg" label="返佣固定金额" />
</div>
</div>
</q-card-section> </q-card-section>
<q-separator /> <q-separator />
<q-card-actions align="right" class="bg-white"> <q-card-actions align="right" class="bg-white">
...@@ -172,6 +184,8 @@ ...@@ -172,6 +184,8 @@
CategoryId: 0, CategoryId: 0,
linkMan: "", linkMan: "",
linkTel: "", linkTel: "",
RebateRate : 0,
RebateMoney : 0,
IsContract: 0, //是否签约 IsContract: 0, //是否签约
ContractUrl: "", //合同信息 ContractUrl: "", //合同信息
}, },
...@@ -207,6 +221,8 @@ ...@@ -207,6 +221,8 @@
this.objOption.CategoryId = tempData.CategoryId; this.objOption.CategoryId = tempData.CategoryId;
this.objOption.IsContract = tempData.IsContract; this.objOption.IsContract = tempData.IsContract;
this.objOption.ContractUrl = tempData.ContractUrl; this.objOption.ContractUrl = tempData.ContractUrl;
this.objOption.RebateRate = tempData.RebateRate;
this.objOption.RebateMoney = tempData.RebateMoney;
} }
}) })
this.optionTitle = "修改客户信息" this.optionTitle = "修改客户信息"
...@@ -216,6 +232,8 @@ ...@@ -216,6 +232,8 @@
this.objOption.CategoryId = 0; this.objOption.CategoryId = 0;
this.objOption.linkMan = ''; this.objOption.linkMan = '';
this.objOption.linkTel = ''; this.objOption.linkTel = '';
this.objOption.RebateRate = 0;
this.objOption.RebateMoney = 0;
this.objOption.IsContract = 0; this.objOption.IsContract = 0;
this.objOption.ContractUrl = ''; this.objOption.ContractUrl = '';
this.optionTitle = "新增客户信息" this.optionTitle = "新增客户信息"
......
...@@ -132,6 +132,18 @@ ...@@ -132,6 +132,18 @@
field: "OrderCount", field: "OrderCount",
align: "left" align: "left"
}, },
{
name: "RebateRate",
label: "返佣比例%",
field: "RebateRate",
align: "left"
},
{
name: "RebateMoney",
label: "返佣固定金额",
field: "RebateMoney",
align: "left"
},
{ {
name: "CreateByName", name: "CreateByName",
label: "创建人", label: "创建人",
......
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