Skip to content

Commit

Permalink
fix: 更新用户创建模板文件
Browse files Browse the repository at this point in the history
  • Loading branch information
zoujingli committed Aug 3, 2024
1 parent ffe6dcd commit a23b8df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/think-plugs-wemall/src/view/user/create/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@
<div class="flex">
<label class="layui-form-item block relative flex-1">
<span class="help-label label-required-prev"><b>累计佣金</b>Rebate Total</span>
<input class="layui-input" type="number" lay-affix="number" min="0" step="0.01" lay-precision="2" name="rebate_total" placeholder="请输入累计佣金" required value="{$vo.rebate_total|default='0.00'}">
<input class="layui-input" type="number" min="0" step="0.01" lay-affix="number" lay-precision="2" name="rebate_total" placeholder="请输入累计佣金" required value="{$vo.rebate_total|default='0.00'}">
<span class="help-block">将会在用户返佣记录里面创建一条记录,体现为初始佣金值。</span>
</label>
<label class="layui-form-item block relative flex-1 ta-ml-15">
<span class="help-label label-required-prev"><b>佣金记录描述</b>Rebate Total Remark</span>
<input class="layui-input" name="rebate_total_desc" placeholder="请输入佣金记录描述" required value="{$vo.rebate_total_desc|default='用户初始化结算佣金'}">
<span class="help-block">创建初始佣金记录显示的记录描述内容。</span>
</label>

</div>

<div class="flex">
<label class="layui-form-item block relative flex-1">
<span class="help-label label-required-prev"><b>剩余佣金</b>Rebate Usable</span>
Expand Down

0 comments on commit a23b8df

Please sign in to comment.