Browse Source

list

feature
tianq 3 years ago
parent
commit
af2a144fbe
  1. 7
      src/views/dataBoard/sida/xq/list.vue

7
src/views/dataBoard/sida/xq/list.vue

@ -162,7 +162,7 @@ export default {
var nowDate = new Date();
var year = nowDate.getFullYear();
var month = nowDate.getMonth() + 1;
var day = nowDate.getDay();
var day = nowDate.getDate();
this.searchDate = [`${year}-${1}-${1}`, `${year}-${month}-${day}`];
},
changList() {
@ -251,8 +251,9 @@ export default {
},
async getCount() {
const { org_id, listType, page_num, page_size } = this;
const { org_id, listType, page_num, page_size, searchDate } = this;
const start_date = searchDate[0];
const end_date = searchDate[1];
const url = 'need_list_num';
const { data, code, msg } = await requestPostBi(

Loading…
Cancel
Save