define({
name: "shareholderProfit",
template: `
`,
style: `
.help-block{
font-size:12px;
margin-bottom:0px;
}
.location{
display:flex;
justify-content:flex-end;
}
`,
props: {
form: {
type: Object,
default() {
return {}
}
}
},
data(){
return {
is_no_count: 1, // 1否 0是
}
},
mounted () {
if (this.form.item && !Array.isArray(this.form.item)) {
this.is_no_count = this.form.item.is_no_count;
}
},
methods: {
validate () {
return {
is_no_count: this.is_no_count,
}
},
},
})