This commit is contained in:
parent
acea73bb8a
commit
bb7c3d7933
|
|
@ -715,10 +715,8 @@ export default {
|
|||
/** 查询字典类型列表 startTime,结束日期endTime */
|
||||
async getList() {
|
||||
this.loading = true
|
||||
if (this.queryParams.time && this.queryParams.time.length > 0) {
|
||||
this.queryParams.startTime = this.queryParams.time[0]
|
||||
this.queryParams.endTime = this.queryParams.time[1]
|
||||
}
|
||||
this.queryParams.startTime = this.queryParams.time ? this.queryParams.time[0] : ''
|
||||
this.queryParams.endTime = this.queryParams.time ? this.queryParams.time[1] : ''
|
||||
|
||||
try {
|
||||
let params = {
|
||||
|
|
|
|||
|
|
@ -715,10 +715,8 @@ export default {
|
|||
/** 查询字典类型列表 startTime,结束日期endTime */
|
||||
async getList() {
|
||||
this.loading = true
|
||||
if (this.queryParams.time && this.queryParams.time.length > 0) {
|
||||
this.queryParams.startTime = this.queryParams.time[0]
|
||||
this.queryParams.endTime = this.queryParams.time[1]
|
||||
}
|
||||
this.queryParams.startTime = this.queryParams.time ? this.queryParams.time[0] : ''
|
||||
this.queryParams.endTime = this.queryParams.time ? this.queryParams.time[1] : ''
|
||||
|
||||
try {
|
||||
let params = {
|
||||
|
|
|
|||
|
|
@ -744,8 +744,8 @@ export default {
|
|||
/** 查询字典类型列表 startTime,结束日期endTime */
|
||||
async getList() {
|
||||
this.loading = true
|
||||
this.queryParams.startTime = this.timeRange[0]
|
||||
this.queryParams.endTime = this.timeRange[1]
|
||||
this.queryParams.startTime = this.timeRange ? this.timeRange[0] : ''
|
||||
this.queryParams.endTime = this.timeRange ? this.timeRange[1] : ''
|
||||
try {
|
||||
let params = {
|
||||
companyId: this.companyId,
|
||||
|
|
|
|||
|
|
@ -423,8 +423,8 @@ export default {
|
|||
/** 查询列表 startTime,结束日期endTime */
|
||||
async getList() {
|
||||
// this.loading = true;
|
||||
this.queryParams.startTime = this.dateRange[0]
|
||||
this.queryParams.endTime = this.dateRange[1]
|
||||
this.queryParams.startTime = this.dateRange ? this.dateRange[0] : ''
|
||||
this.queryParams.endTime = this.dateRange ? this.dateRange[1] : ''
|
||||
try {
|
||||
let params = {
|
||||
flag: 1,
|
||||
|
|
|
|||
|
|
@ -387,10 +387,8 @@ export default {
|
|||
/** 查询列表 startTime,结束日期endTime */
|
||||
async getList() {
|
||||
this.loading = true
|
||||
if (this.queryParams.time && this.queryParams.time.length > 0) {
|
||||
this.queryParams.startTime = this.queryParams.time[0]
|
||||
this.queryParams.endTime = this.queryParams.time[1]
|
||||
}
|
||||
this.queryParams.startTime = this.queryParams.time ? this.queryParams.time[0] : ''
|
||||
this.queryParams.endTime = this.queryParams.time ? this.queryParams.time[1] : ''
|
||||
try {
|
||||
let params = {
|
||||
companyId: this.companyId,
|
||||
|
|
|
|||
Loading…
Reference in New Issue