12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <div style="margin-top: 10px;" id="invests-app">
- <div style="text-align: center;margin-top: 5px;margin-bottom: 10px;font-size: 20px;">
- 编辑 - 投资金额
- </div>
- <el-form action="{{route('admin.invest.update',array('id'=>$model->id))}}" method="post" id="form-create">
- <!-- 图片 -->
- <!-- 链接 -->
- <ui-input-text label="投资名称" name="title" value="{{$model->title}}" placeholder="投资名称" maxlength="255" tips="请输入投资名称" autofocus="true"></ui-input-text>
- <ui-input-float-number :max="9999999" label="投资金额" name="invest_money" value="{{$model->invest_money}}" placeholder="投资金额" maxlength="255" tips="请输入投资金额" autofocus="true" :precision="4"></ui-input-float-number>
- <!-- 是否显示 -->
- <ui-input-float-number :max="9999999" label="平台收益" name="platform_money" value="{{$model->platform_money}}" placeholder="平台收益" maxlength="255" tips="请输入平台收益" autofocus="true" :precision="4"></ui-input-float-number>
- <ui-input-float-number :max="9999999" label="直推收益" name="direct_proportion" value="{{$model->direct_proportion}}" placeholder="直推收益" maxlength="255" tips="请输入直推收益(%)" autofocus="true" :precision="2"></ui-input-float-number>
- <ui-input-float-number :max="9999999" label="间推收益" name="indirect_proportion" value="{{$model->indirect_proportion}}" placeholder="间推收益" maxlength="255" tips="请输入间推收益(%)" :precision="2" autofocus="true"></ui-input-float-number>
- <ui-input-float-number :max="9999999" label="团队收益" name="team_proportion" value="{{$model->team_proportion}}" placeholder="团队收益" maxlength="255" tips="请输入团队收益(%)" :precision="2" autofocus="true"></ui-input-float-number>
- <ui-input-float-number :max="9999999" label="公排比例" name="common_proportion" value="{{$model->common_proportion}}" placeholder="公排比例" maxlength="255" tips="请输入公排比例(%)" :precision="2" autofocus="true"></ui-input-float-number>
- <ui-input-float-number :max="9999999" label="沉淀比例" name="sediment_proportion" value="{{$model->sediment_proportion}}" placeholder="沉淀比例" maxlength="255" tips="请输入沉淀比例(%)" :precision="2" autofocus="true"></ui-input-float-number>
- <ui-input-float-number :max="9999999" label="代币比例" name="agency_proportion" value="{{$model->agency_proportion}}" placeholder="代币比例" maxlength="255" tips="请输入代币比例(%)" :precision="2" autofocus="true"></ui-input-float-number>
- <ui-submit></ui-submit>
- </el-form>
- </div>
- <script type="application/javascript">
- $(function () {
- // 注意:Vue组件一定放在jQuery.validator前面验证
- new Vue({
- el: '#invests-app',
- data :function () {
- return {
- };
- }
- });
- jQuery.validator.setDefaults({
- debug: false, // 调试模式true不会提交,false允许提交
- success: "success", // 匹配成功的class样式名称
- errorElement: 'div' // 兼容el标签时使用(兼容el Vue组件label.error标签问题)
- });
- // 前台数据验证 验证需要设置window.form全局变量
- window.form = $('#form-create').validate({
- rules: {
- image: {
- required: true,
- maxlength: 255,
- normalizer: function ( value ) {
- return $.trim(value);
- }
- },
- // link: {
- // required: true,
- // maxlength: 255,
- // normalizer: function ( value ) {
- // return $.trim(value);
- // }
- // },
- show: {
- required: true
- },
- sort: {
- required: true,
- normalizer: function ( value ) {
- return $.trim(value);
- }
- }
- }
- });
- // 编辑保存变量
- window.formDatum = $('form').serialize();
- });
- </script>
- @include('layouts.admin.form_script')
|