fix(system): 修正国家运费列表页面货币单位显示
- 将运费列标题从"运费(元)"修改为"运费($)"
- 将运费表单标签从"运费(元)"修改为"运费($)"
| | |
| | | cols: [[ |
| | | {field: 'countryCode', title: '国家编码', width: 120, align: 'center'}, |
| | | {field: 'countryName', title: '国家名称', width: 150, align: 'center'}, |
| | | {field: 'shippingFee', title: '运费(元)', width: 120, align: 'center'}, |
| | | {field: 'shippingFee', title: '运费($)', width: 120, align: 'center'}, |
| | | {field: 'status', title: '状态', width: 100, align: 'center', |
| | | templet: function (d) { |
| | | return d.status === 1 |
| | |
| | | ' </div>' + |
| | | ' </div>' + |
| | | ' <div class="layui-form-item">' + |
| | | ' <label class="layui-form-label febs-form-item-require">运费(元)</label>' + |
| | | ' <label class="layui-form-label febs-form-item-require">运费($)</label>' + |
| | | ' <div class="layui-input-block">' + |
| | | ' <input type="number" name="shippingFee" class="layui-input" ' + (data ? 'value="' + data.shippingFee + '"' : 'placeholder="运费金额"') + ' lay-verify="required|number">' + |
| | | ' </div>' + |