Commit 637c146e by 李宁

1

1 parent 4bfad21c
......@@ -90,12 +90,12 @@
>
编辑
</button>
<button
<!-- <button
@click="handleDeleteConfirm(row.id)"
class="text-brand-primary hover:text-brand-primary-hover bg-transparent border-none cursor-pointer text-sm font-normal p-0"
>
删除
</button>
</button> -->
</div>
</template>
</el-table-column>
......@@ -125,6 +125,7 @@
</label>
<el-input
v-model="formData.businessCode"
:disabled="editingRule"
placeholder="请输入业务代码,如:B5G001"
/>
</div>
......@@ -134,6 +135,7 @@
</label>
<el-input
v-model="formData.businessName"
:disabled="editingRule"
placeholder="请输入业务名称,如:5G套餐办理"
/>
</div>
......
......@@ -452,16 +452,13 @@
<el-table :data="batchPreviewRows" height="260" border stripe>
<el-table-column prop="id" label="订单ID" min-width="160" />
<el-table-column prop="currentReward" label="当前酬金" width="100" align="right">
<template #default="{ row }">
<span class="font-mono">¥{{ '--' }}</span>
</template>
</el-table-column>
<el-table-column prop="realMoney" label="新酬金" width="100" align="right">
<el-table-column prop="realMoney" label="实际酬金" width="100" align="right">
<template #default="{ row }">
<span class="font-mono">¥{{ Number(row.realMoney).toFixed(2) }}</span>
</template>
</el-table-column>
<el-table-column prop="id" label="业务代码" min-width="160" />
<el-table-column prop="id" label="业务名称" min-width="160" />
<el-table-column prop="status" label="校验" width="80">
<template #default="{ row }">
<el-tag v-if="!row.memo" type="success" size="small">有效</el-tag>
......
......@@ -248,8 +248,8 @@
</div>
<el-switch
v-model="formData.isActive"
active-text=""
inactive-text="按年付费"
active-text="开启"
inactive-text="关闭"
/>
</div>
</div>
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!