4 changed files with 166 additions and 67 deletions
@ -0,0 +1,40 @@ |
|||
<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> |
Loading…
Reference in new issue