columns.js 13.7 KB
Newer Older
TZW's avatar
TZW committed
1 2
import dayjs from 'dayjs';

TZW's avatar
TZW committed
3
function getcolumns(setdrawer) {
TZW's avatar
TZW committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
  const disabledDateOfDay = (current) => {
    // Can not select days before today and today
    return current && current < dayjs().endOf('day');
  };
  const disabledDateOfMonth = (current) => {
    // Can not select days before today and today
    return current && current < dayjs().startOf('month');
  };
  const columns_day = [
    {
      title: '设备编号',
      dataIndex: 'equipmentNo',
      key: 'equipmentNo',
      editable: false,
    },
    {
      title: '设备名称',
      dataIndex: 'equipmentName',
      key: 'equipmentName',
      editable: false,
    },
    {
      title: '工厂名称',
      dataIndex: 'factoryName',
      key: 'factoryId',
      hideInForm: true,
      valueType: 'select',
      fieldProps: {
        placeholder: '请选择',
        showSearch: true,
      },
      options: {
        path: '/auth/sysFactory/getAllFactorySelection',
        params: {},
      },
      editable: false,
    },
    {
      title: '车间名称',
      dataIndex: 'shopName',
      key: 'shopId',
      hideInForm: true,
      valueType: 'select',
      fieldProps: {
        placeholder: '请选择',
        showSearch: true,
      },
      options: {
        path: '/auth/sysShop/getAllShopSelection',
        params: {},
      },
      editable: false,
    },
    {
      title: '下次保养日期',
      dataIndex: 'nextMaintainDate',
      formItemProps: {
        rules: [
          {
            required: true,
            message: '此项为必填项',
          },
        ],
      },
      fieldProps: {
        disabledDate: disabledDateOfDay,
      },
      valueType: 'date',
      hideInSearch: true,
    },
  ];
  const columns_month = [
    {
      title: '设备编号',
      dataIndex: 'equipmentNo',
      key: 'equipmentNo',
      editable: false,
    },
    {
      title: '设备名称',
      dataIndex: 'equipmentName',
      key: 'equipmentName',
      editable: false,
    },
    {
      title: '工厂名称',
      dataIndex: 'factoryName',
      key: 'factoryId',
      hideInForm: true,
      valueType: 'select',
      fieldProps: {
        placeholder: '请选择',
        showSearch: true,
      },
      options: {
        path: '/auth/sysFactory/getAllFactorySelection',
        params: {},
      },
      editable: false,
    },
    {
      title: '车间名称',
      dataIndex: 'shopName',
      key: 'shopId',
      hideInForm: true,
      valueType: 'select',
      fieldProps: {
        placeholder: '请选择',
        showSearch: true,
      },
      options: {
        path: '/auth/sysShop/getAllShopSelection',
        params: {},
      },
      editable: false,
    },
    {
      title: '下次保养日期',
      dataIndex: 'nextMaintainDate',
      formItemProps: {
        rules: [
          {
            required: true,
            message: '此项为必填项',
          },
        ],
      },
      fieldProps: {
        disabledDate: disabledDateOfMonth,
      },
      valueType: 'dateMonth',
      hideInSearch: true,
    },
  ];
TZW's avatar
TZW committed
138 139 140 141 142 143 144 145 146 147
  return [
    {
      tab: '未完成',
      key: '1',
      columns: [
        {
          title: '保养计划号',
          dataIndex: 'maintainNo',
          key: 'maintainNo',
          hideInForm: true,
TZW's avatar
TZW committed
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
          render: (text, row, _, action) => {
            return (
              <a
                onClick={() => {
                  setdrawer((s) => ({
                    ...s,
                    open: true,
                    val: 'detail',
                    title: '详细信息',
                    item: row,
                  }));
                }}
              >
                {row?.maintainNo}
              </a>
            );
          },
TZW's avatar
TZW committed
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
        },
        {
          title: '设备编号',
          dataIndex: 'equipmentNo',
          key: 'equipmentNo',
          hideInForm: true,
        },
        {
          title: '设备名称',
          dataIndex: 'equipmentName',
          key: 'equipmentName',
          hideInForm: true,
        },
        {
          title: '工厂名称',
          dataIndex: 'factoryName',
          key: 'factoryId',
          valueType: 'select',
          fieldProps: {
            showSearch: true,
          },
          mode: 'radio',
          options: {
            path: '/auth/sysFactory/getAllFactorySelection',
            params: {},
          },
          hideInForm: true,
        },
        {
          title: '车间名称',
          dataIndex: 'shopName',
          key: 'shopId',
          fieldProps: {
            showSearch: true,
          },
          valueType: 'select',
          mode: 'radio',
          options: {
            path: '/auth/sysShop/getAllShopSelection',
            params: {},
          },
          hideInForm: true,
        },
        {
          title: '保养类型',
          dataIndex: 'maintainTypeName',
          key: 'maintainType',
          valueType: 'select',
          mode: 'radio',
          options: [
            {
              label: '自主保养',
              value: '1',
            },
            {
              label: '专业保养',
              value: '2',
            },
          ],
          formItemProps: {
            rules: [
              {
                required: true,
                message: '此项为必填项',
              },
            ],
          },
        },
        {
          title: '保养频次',
          dataIndex: 'maintainFrequencyName',
          key: 'maintainFrequency',
          formItemProps: {
            rules: [
              {
                required: true,
                message: '此项为必填项',
              },
            ],
          },
          valueType: 'select',
          mode: 'radio',
          options: [
            {
              label: '周',
              value: '0',
            },
            {
              label: '月度',
              value: '1',
            },
            {
              label: '季度',
              value: '2',
            },
            {
              label: '半年',
              value: '3',
            },
            {
TZW's avatar
TZW committed
265
              label: '年度',
TZW's avatar
TZW committed
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
              value: '4',
            },
          ],
        },
        {
          title: '计划类型',
          dataIndex: 'isCycle',
          key: 'isCycle',
          valueType: 'select',
          mode: 'radio',
          options: [
            {
              label: '单次',
              value: '1',
            },
            {
TZW's avatar
TZW committed
282
              label: '周期',
TZW's avatar
TZW committed
283 284 285 286 287 288 289 290 291 292 293 294 295
              value: '2',
            },
          ],
          hideInForm: false,
          formItemProps: {
            rules: [
              {
                required: true,
                message: '此项为必填项',
              },
            ],
          },
          render: (_, row) => {
TZW's avatar
TZW committed
296
            return row?.isCycle == 1 ? '单次' : '周期';
TZW's avatar
TZW committed
297 298 299 300 301 302 303
          },
        },
        {
          title: '下次保养日期',
          dataIndex: 'nextMaintainDate',
          key: 'nextMaintainDateList',
          valueType: 'dateRange',
TZW's avatar
TZW committed
304
          hideInForm: true,
TZW's avatar
TZW committed
305 306 307 308 309 310 311
        },
        {
          title: '状态',
          dataIndex: 'maintainStatusName',
          key: 'maintainStatus',
          hideInForm: true,
          valueType: 'select',
TZW's avatar
TZW committed
312 313 314
          fieldProps: {
            dropdownMatchSelectWidth: 100,
          },
TZW's avatar
TZW committed
315 316 317 318 319 320 321 322 323 324 325 326
          mode: 'radio',
          options: [
            {
              label: '未开始',
              value: '1',
            },
            {
              label: '执行中',
              value: '2',
            },
          ],
        },
TZW's avatar
TZW committed
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
        {
          title: '选择设备',
          dataIndex: 'paramList',
          key: 'paramList',
          formItemProps: {
            rules: [
              {
                required: true,
                message: '此项为必填项',
              },
            ],
          },
          hideInSearch: true,
          hideInTable: true,
          hideInForm: {
            maintainFrequency: {
              reverse: ['0'],
            },
          },
          valueType: 'formSelectList',
          colProps: {
            span: 24,
          },
          path: '/asset/equipment/list/user/shop',
          columns: columns_day,
          hideInDescriptions: true,
        },
        {
          title: '选择设备',
          dataIndex: 'paramList',
          key: 'paramList',
          hideInForm: {
            maintainFrequency: ['0'],
          },
          formItemProps: {
            rules: [
              {
                required: true,
                message: '此项为必填项',
              },
            ],
          },
          hideInSearch: true,
          hideInTable: true,
          valueType: 'formSelectList',
          colProps: {
            span: 24,
          },
          path: '/asset/equipment/list/user/shop',
          columns: columns_month,
          hideInDescriptions: true,
        },
TZW's avatar
TZW committed
379 380 381 382 383 384 385 386 387
      ],
      pathconfig: {
        enableadd: true,
        enableedit: true,
        enabledelete: true,
        enabledetail: true,
        add: '/maintain/umMaintainPlan/save',
        edit: '/maintain/umMaintainPlan/save',
        list: '/maintain/umMaintainPlan/queryList',
TZW's avatar
TZW committed
388
        delete: '/maintain/umMaintainPlan/deleteById',
TZW's avatar
TZW committed
389 390 391 392 393 394 395 396 397 398 399 400
        detail: '/maintain/umMaintainPlan/queryById',
      },
    },
    {
      tab: '已完成',
      key: '2',
      columns: [
        {
          title: '保养计划号',
          dataIndex: 'maintainNo',
          key: 'maintainNo',
          hideInForm: true,
TZW's avatar
TZW committed
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
          render: (text, row, _, action) => {
            return (
              <a
                onClick={() => {
                  setdrawer((s) => ({
                    ...s,
                    open: true,
                    val: 'detail',
                    title: '详细信息',
                    item: row,
                  }));
                }}
              >
                {row?.maintainNo}
              </a>
            );
          },
TZW's avatar
TZW committed
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
        },
        {
          title: '设备编号',
          dataIndex: 'equipmentNo',
          key: 'equipmentNo',
          hideInForm: true,
        },
        {
          title: '设备名称',
          dataIndex: 'equipmentName',
          key: 'equipmentName',
          hideInForm: true,
        },
        {
          title: '工厂名称',
          dataIndex: 'factoryName',
          key: 'factoryId',
          valueType: 'select',
          mode: 'radio',
          options: {
            path: '/auth/sysFactory/getAllFactorySelection',
            params: {},
          },
          hideInForm: true,
        },
        {
          title: '车间名称',
          dataIndex: 'shopName',
          key: 'shopId',
          valueType: 'select',
          mode: 'radio',
          options: {
            path: '/auth/sysShop/getAllShopSelection',
            params: {},
          },
          hideInForm: true,
        },
        {
          title: '保养类型',
          dataIndex: 'maintainTypeName',
          key: 'maintainType',
          valueType: 'select',
          mode: 'radio',
          options: [
            {
              label: '自主保养',
              value: '1',
            },
            {
              label: '专业保养',
              value: '2',
            },
          ],
          formItemProps: {
            rules: [
              {
                required: true,
                message: '此项为必填项',
              },
            ],
          },
        },
        {
          title: '保养频次',
          dataIndex: 'maintainFrequencyName',
          key: 'maintainFrequency',
          formItemProps: {
            rules: [
              {
                required: true,
                message: '此项为必填项',
              },
            ],
          },
          valueType: 'select',
          mode: 'radio',
          options: [
            {
              label: '周',
              value: '0',
            },
            {
              label: '月度',
              value: '1',
            },
            {
              label: '季度',
              value: '2',
            },
            {
              label: '半年',
              value: '3',
            },
            {
TZW's avatar
TZW committed
512
              label: '年度',
TZW's avatar
TZW committed
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
              value: '4',
            },
          ],
        },
        {
          title: '计划类型',
          dataIndex: 'isCycle',
          key: 'isCycle',
          valueType: 'select',
          mode: 'radio',
          options: [
            {
              label: '单次',
              value: '1',
            },
            {
TZW's avatar
TZW committed
529
              label: '周期',
TZW's avatar
TZW committed
530 531 532 533 534 535 536 537 538 539 540 541
              value: '2',
            },
          ],
          hideInForm: false,
          formItemProps: {
            rules: [
              {
                required: true,
                message: '此项为必填项',
              },
            ],
          },
TZW's avatar
TZW committed
542 543 544
          render: (_, row) => {
            return row?.isCycle == 1 ? '单次' : '周期';
          },
TZW's avatar
TZW committed
545 546 547 548 549 550
        },
        {
          title: '关单日期',
          dataIndex: 'customsTime',
          key: 'customsTimeList',
          valueType: 'dateRange',
TZW's avatar
TZW committed
551
          hideInForm: true,
TZW's avatar
TZW committed
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
        },
        {
          title: '状态',
          dataIndex: 'maintainStatusName',
          key: 'maintainStatus',
          hideInForm: true,
          valueType: 'input',
          mode: 'radio',
          hideInSearch: true,
        },
      ],
      pathconfig: {
        enableadd: true,
        enableedit: true,
        enabledelete: true,
        enabledetail: true,
        add: '/maintain/umMaintainPlan/save',
        edit: '/maintain/umMaintainPlan/save',
TZW's avatar
TZW committed
570
        list: '/maintain/umMaintainPlanHis/queryList',
TZW's avatar
TZW committed
571
        delete: '/maintain/umMaintainPlan/deleteById',
TZW's avatar
TZW committed
572
        detail: '/maintain/umMaintainPlanHis/queryById',
TZW's avatar
TZW committed
573 574 575
      },
    },
  ];
TZW's avatar
TZW committed
576
}
TZW's avatar
TZW committed
577
export default getcolumns;