You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<base-input
|
|
|
|
label="现有资金"
|
|
|
|
placeholder="现有资金"
|
|
|
|
v-model="form.NowCapital"
|
|
|
|
></base-input>
|
|
|
|
<base-input
|
|
|
|
label="原始资金"
|
|
|
|
placeholder="原始资金"
|
|
|
|
v-model="form.OriginalCapital"
|
|
|
|
></base-input>
|
|
|
|
<base-input
|
|
|
|
label="冻结利润比(%)"
|
|
|
|
placeholder="冻结利润比"
|
|
|
|
v-model="form.FrozenProfit"
|
|
|
|
></base-input>
|
|
|
|
<base-input
|
|
|
|
label="下单金额比(%)"
|
|
|
|
placeholder="下单金额比(%)"
|
|
|
|
v-model="form.TradeAmountRatio"
|
|
|
|
></base-input>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
model: { prop: "form", event: "formChange" },
|
|
|
|
props: {
|
|
|
|
form: {
|
|
|
|
type: Object,
|
|
|
|
default: () => {}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
form() {
|
|
|
|
this.$emit("formChange", this.form);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|