1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <div style="margin-top: 10px;" id="notices-app">
- <div style="text-align: center;margin-top: 5px;margin-bottom: 10px;font-size: 20px;">
- 编辑 - 公告
- </div>
- <el-form action="{{route('admin.notice.update',array('id'=>$model->id))}}" method="post" id="form-create">
- <!-- title -->
- <ui-input-text label="内容" name="title" value="{{$model->title}}" placeholder="内容" maxlength="250" tips="内容" autofocus="true"></ui-input-text>
- <!-- title -->
- <!-- content -->
- <ue label="内容" name="content" value="{{$model->content}}" width="1200" placeholder="内容"></ue>
- <!-- content -->
- <!-- show -->
- <ui-radio label="是否开启" :params="params" tips="消息开关-控制前台是否显示"></ui-radio>
- <!-- sort -->
- <ui-input-number label="排序" checked="checked" name="sort" value="{{$model->sort}}" min="1" max="100" tips="单页排序-控制前台显示顺序"></ui-input-number>
- <ui-submit></ui-submit>
- </el-form>
- </div>
- <script type="application/javascript">
- $(function () {
- // 注意:Vue组件一定放在jQuery.validator前面验证
- new Vue({
- el: '#notices-app',
- data :function () {
- return {
- params: {
- // 注意:group和attr连个属性都不能省略 就算为空
- group: {},
- attr: {
- name: 'show', // 当前checkbox框的name属性 【必填】
- radioCheck:{{$model->show}}, // 当前选中项 int | string 【必填】
- label: 'el-radio-button', // 当前样式 默认 el-radio 样式 【非必填】
- radios: [ // 每个checkbox 就是一个json对象 【必填】
- {
- value:0, // 当前选中时值也就是value属性的值 【必填】
- label: '关闭', // 当前提示文字 【必填】
- disable: false // 是否禁止点击 默认:false 不禁止
- },
- {
- value:1, // 当前选中时值也就是value属性的值 【必填】
- label: '开启', // 当前提示文字 【必填】
- disable: false // 是否禁止点击 默认:false 不禁止
- }
- ]
- }
- }
- };
- }
- });
- 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: {
- title: {
- required: true,
- maxlength: 255,
- normalizer: function ( value ) {
- return $.trim(value);
- }
- },
- title_en: {
- required: true,
- maxlength: 255,
- normalizer: function ( value ) {
- return $.trim(value);
- }
- },
- content: {
- required: true
- },
- content_en: {
- required: true
- },
- show: {
- required: true
- },
- sort: {
- required: true,
- normalizer: function ( value ) {
- return $.trim(value);
- }
- }
- }
- });
- // 编辑保存变量
- window.formDatum = $('form').serialize();
- });
- </script>
- @include('layouts.admin.form_script')
|