This commit is contained in:
parent
da6c6dd539
commit
e3e58d395d
|
@ -2753,6 +2753,86 @@ export default {
|
||||||
// growth:1
|
// growth:1
|
||||||
// },
|
// },
|
||||||
],
|
],
|
||||||
|
isProportionList: [
|
||||||
|
{
|
||||||
|
value: "0.80",
|
||||||
|
label: "0.80",
|
||||||
|
coupon: 0.1,
|
||||||
|
growth: 0.3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.75",
|
||||||
|
label: "0.75",
|
||||||
|
coupon: 0.15,
|
||||||
|
growth: 0.35
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.70",
|
||||||
|
label: "0.70",
|
||||||
|
coupon: 0.2,
|
||||||
|
growth: 0.4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.65",
|
||||||
|
label: "0.65",
|
||||||
|
coupon: 0.25,
|
||||||
|
growth: 0.45
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.60",
|
||||||
|
label: "0.60",
|
||||||
|
coupon: 0.3,
|
||||||
|
growth: 0.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.55",
|
||||||
|
label: "0.55",
|
||||||
|
coupon: 0.35,
|
||||||
|
growth: 0.55
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.50",
|
||||||
|
label: "0.50",
|
||||||
|
coupon: 0.4,
|
||||||
|
growth: 0.6
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.45",
|
||||||
|
label: "0.45",
|
||||||
|
coupon: 0.45,
|
||||||
|
growth: 0.65
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.40",
|
||||||
|
label: "0.40",
|
||||||
|
coupon: 0.5,
|
||||||
|
growth: 0.7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.35",
|
||||||
|
label: "0.35",
|
||||||
|
coupon: 0.55,
|
||||||
|
growth: 0.75
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.30",
|
||||||
|
label: "0.30",
|
||||||
|
coupon: 0.6,
|
||||||
|
growth: 0.8
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.25",
|
||||||
|
label: "0.25",
|
||||||
|
coupon: 0.65,
|
||||||
|
growth: 0.85
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "0.20",
|
||||||
|
label: "0.20",
|
||||||
|
coupon: 0.7,
|
||||||
|
growth: 0.9
|
||||||
|
}
|
||||||
|
],
|
||||||
businessList: [],
|
businessList: [],
|
||||||
fileList: [],
|
fileList: [],
|
||||||
roterPre: roterPre,
|
roterPre: roterPre,
|
||||||
|
@ -4092,7 +4172,7 @@ export default {
|
||||||
growth: 0.9
|
growth: 0.9
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
this.proportionList = val ? proportionList : this.proportionList;
|
this.proportionList = val ? proportionList : this.isProportionList;
|
||||||
this.OneattrValue.map(item => {
|
this.OneattrValue.map(item => {
|
||||||
let obj = this.proportionList.find(
|
let obj = this.proportionList.find(
|
||||||
items => items.value == item.proportion
|
items => items.value == item.proportion
|
||||||
|
@ -4539,7 +4619,7 @@ export default {
|
||||||
];
|
];
|
||||||
this.proportionList = this.formValidate.is_benefit
|
this.proportionList = this.formValidate.is_benefit
|
||||||
? proportionList
|
? proportionList
|
||||||
: this.proportionList;
|
: this.isProportionList;
|
||||||
console.log(info.qualification);
|
console.log(info.qualification);
|
||||||
if (info.svip_price_type != 0 && info.mer_svip_status)
|
if (info.svip_price_type != 0 && info.mer_svip_status)
|
||||||
this.attrVal = {
|
this.attrVal = {
|
||||||
|
|
Loading…
Reference in New Issue