|
|
@@ -7,6 +7,7 @@
|
|
|
</span>
|
|
|
<div id="list">
|
|
|
<div class="container-fluid">
|
|
|
+ <div id="form_div"></div>
|
|
|
<table class="table table-striped table-sm text-nowrap table-hover">
|
|
|
<tr>
|
|
|
<th>单号</th>
|
|
|
@@ -47,6 +48,17 @@
|
|
|
data: {
|
|
|
packages: {!! $orderPackages->toJson() !!}['data'],
|
|
|
},
|
|
|
+ mounted(){
|
|
|
+ let _this =this;
|
|
|
+ let data = [
|
|
|
+ [{name:'created_at_start',type:'dateTime',tip:'选择显示创建日期的起始时间'},]
|
|
|
+ ];
|
|
|
+ _this.form = new query({
|
|
|
+ el:'#form_div',
|
|
|
+ condition:data,
|
|
|
+ });
|
|
|
+ _this.form.init();
|
|
|
+ }
|
|
|
});
|
|
|
</script>
|
|
|
@endsection
|