Commit 50a7d03c by yuzhenWang

Merge branch 'wyz' into 'test'

修改薪资发放字段

See merge request !166
parents 5635b62f 0d08f5df
......@@ -46,14 +46,19 @@
<!-- <el-table-column prop="fortuneAccountBizId" label="业务ID" min-width="120" sortable /> -->
<el-table-column prop="broker" label="转介人" min-width="120" sortable />
<el-table-column prop="team" label="所属团队" min-width="120" sortable />
<el-table-column prop="hkdAmount" label="出账金额" width="120" sortable>
<el-table-column prop="hkdAmount" label="港币金额" width="120" sortable>
<template #default="scope">
{{ formatCurrency(scope.row.hkdAmount, '', 4) }}
</template>
</el-table-column>
<el-table-column prop="currency" label="出账币种" width="120" sortable>
<el-table-column prop="payoutCurrency" label="发放币种" width="120" sortable>
<template #default="scope">
<dict-tag :options="currencyTypeOptions" :value="scope.row.currency" />
<dict-tag :options="currencyTypeOptions" :value="scope.row.payoutCurrency" />
</template>
</el-table-column>
<el-table-column prop="payoutAmount" label="发放金额" width="120" sortable>
<template #default="scope">
{{ formatCurrency(scope.row.payoutAmount, '', 4) }}
</template>
</el-table-column>
<el-table-column prop="status" label="出账状态" width="150" sortable>
......@@ -255,7 +260,6 @@
v-model="scope.row.toAmount"
placeholder="请输入"
clearable
:disabled="true"
@input="val => (scope.row.toAmount = amountInput.filterInput(val, 4))"
:formatter="value => inputThousands(value)"
:parser="value => value.replace(/\$\s?|(,*)/g, '')"
......
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