编辑框

编辑款是一个带有表单输入项的模态弹框,通过在jquery对象上调用editBox(method),(例如: $('.edit-box').editBox('show'))来控制编辑款。
编辑框支持的method有:
config 修改编辑框配置,可以传入点击确定或取消的回调。$el.alert('config', {succ: func, fail: func}) 在回调中会将编辑框的dom对象做为参数传入,可以在dom中查找表单元素,获取表单的值。
show 手动控制显示弹框。$el.editBox('show')
hide 手动控制隐藏弹框。$el.editBox('hide')

编辑票据模板

模板编码:
模板名称:

code:

html

js


<script>
  //config
  $('.edit-box').editBox('config', {
    confirm: function(el) {
      console.log('confirm', el);
    },
    cancel: function (el) {
      console.log('cancel', el);
    }
  });

  //show
  $('.show-edit-box').on('click', function () {
    $('.edit-box').editBox('show');
  });
</script>