修复查询字段
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
<div class="col-sm-2">
|
||||
<select name="status" id="status" data-btn-class="btn-warning" class="form-control">
|
||||
<option value="" selected="selected">全部</option>
|
||||
<option value="1">待审核</option>
|
||||
<option value="1">未处理</option>
|
||||
<option value="2">通过</option>
|
||||
<option value="3">拒绝</option>
|
||||
</select>
|
||||
@@ -87,24 +87,6 @@
|
||||
<script>
|
||||
import TableHelper from '@/utils/bootstrap-table-helper';
|
||||
|
||||
var picker1 = $("#beginDate").datetimepicker({
|
||||
format: 'yyyy-mm-dd hh:ii:00',
|
||||
autoclose: true,
|
||||
todayBtn: true
|
||||
});
|
||||
var picker2 = $("#endDate").datetimepicker({
|
||||
format: 'yyyy-mm-dd hh:ii:00',
|
||||
autoclose: true,
|
||||
todayBtn: true
|
||||
});
|
||||
// picker1.on('changeDate', function () {
|
||||
// var date = $('#beginDate').datetimepicker('getDate');
|
||||
// picker2.datetimepicker('setStartDate', date);
|
||||
// });
|
||||
// picker2.on('changeDate', function () {
|
||||
// var date = $('#endDate').datetimepicker('getDate');
|
||||
// picker1.datetimepicker('setEndDate', date);
|
||||
// });
|
||||
export default {
|
||||
name: "PhoneAuthApplyAdminView",
|
||||
setup() {
|
||||
@@ -118,6 +100,16 @@ export default {
|
||||
methods: {
|
||||
initData() {
|
||||
$(function () {
|
||||
$("#beginDate").datetimepicker({
|
||||
format: 'yyyy-mm-dd hh:ii:00',
|
||||
autoclose: true,
|
||||
todayBtn: true
|
||||
});
|
||||
$("#endDate").datetimepicker({
|
||||
format: 'yyyy-mm-dd hh:ii:00',
|
||||
autoclose: true,
|
||||
todayBtn: true
|
||||
});
|
||||
$('#table').bootstrapTable('destroy');
|
||||
$('#table').bootstrapTable({
|
||||
columns: [
|
||||
|
Reference in New Issue
Block a user