Browse Source

1

pull/246/head
lb 6 months ago
parent
commit
7b4cd85ba0
2 changed files with 22 additions and 3 deletions
  1. +12
    -1
      src/views/specialEquipment/check/Record.vue
  2. +10
    -2
      src/views/specialEquipment/maintain/Record.vue

+ 12
- 1
src/views/specialEquipment/check/Record.vue View File

@@ -49,12 +49,21 @@
import basicPageMixin from '@/mixins/lb/basicPageMixin'; import basicPageMixin from '@/mixins/lb/basicPageMixin';
import { parseTime } from '../../core/mixins/code-filter'; import { parseTime } from '../../core/mixins/code-filter';
import RecordDetail from './Record-detail.vue'; import RecordDetail from './Record-detail.vue';
import moment from 'moment';


export default { export default {
name: 'SpecialEquipmentCheckRecord', name: 'SpecialEquipmentCheckRecord',
components: { RecordDetail }, components: { RecordDetail },
mixins: [basicPageMixin], mixins: [basicPageMixin],
data() { data() {
const today = new Date();
const twoDaysAgo = new Date(today.getTime() - 2 * 24 * 60 * 60 * 1000);
twoDaysAgo.setHours(0, 0, 0, 0);
const t = [
moment(twoDaysAgo).format('yyyy-MM-DD HH:mm:ss'),
moment(today).format('yyyy-MM-DD HH:mm:ss'),
];

return { return {
detailOpen: false, detailOpen: false,
addOrUpdateVisible: false, addOrUpdateVisible: false,
@@ -151,6 +160,7 @@ export default {
endPlaceholder: '结束日期', endPlaceholder: '结束日期',
defaultTime: ['00:00:00', '23:59:59'], defaultTime: ['00:00:00', '23:59:59'],
param: 'actualCheckTime', param: 'actualCheckTime',
defaultSelect: t,
// width: 350, // width: 350,
}, },
{ {
@@ -189,6 +199,7 @@ export default {
pageSize: 10, pageSize: 10,
special: true, special: true,
status: 2, status: 2,
actualCheckTime: t,
}, },
// 表单参数 // 表单参数
form: {}, form: {},
@@ -204,7 +215,7 @@ export default {
getList() { getList() {
this.loading = true; this.loading = true;
// 执行查询 // 执行查询
this.recv(this.queryParams).then((response) => {
this.recv({ ...this.queryParams }).then((response) => {
this.list = response.data.list; this.list = response.data.list;
this.total = response.data.total; this.total = response.data.total;
this.loading = false; this.loading = false;


+ 10
- 2
src/views/specialEquipment/maintain/Record.vue View File

@@ -108,6 +108,14 @@ export default {
components: { DialogForm, RecordDetail }, components: { DialogForm, RecordDetail },
mixins: [basicPageMixin], mixins: [basicPageMixin],
data() { data() {
const today = new Date();
const twoDaysAgo = new Date(today.getTime() - 2 * 24 * 60 * 60 * 1000);
twoDaysAgo.setHours(0, 0, 0, 0);
const t = [
moment(twoDaysAgo).format('yyyy-MM-DD HH:mm:ss'),
moment(today).format('yyyy-MM-DD HH:mm:ss'),
];

return { return {
recordDetailVisible: false, recordDetailVisible: false,
searchBarKeys: [ searchBarKeys: [
@@ -301,7 +309,7 @@ export default {
endPlaceholder: '结束日期', endPlaceholder: '结束日期',
defaultTime: ['00:00:00', '23:59:59'], defaultTime: ['00:00:00', '23:59:59'],
param: 'startTime', param: 'startTime',
defaultSelect: null,
defaultSelect: t,
// width: 350, // width: 350,
}, },
// { // {
@@ -500,7 +508,7 @@ export default {
pageNo: 1, pageNo: 1,
pageSize: 10, pageSize: 10,
maintainPlanId: null, maintainPlanId: null,
startTime: null,
startTime: t,
// relatePlan: null, // relatePlan: null,
// equipmentId: null, // equipmentId: null,
special: true, special: true,


Loading…
Cancel
Save