|
@@ -1,9 +1,442 @@
|
|
|
-import React from 'react'
|
|
|
+import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
|
|
import styles from './index.module.scss'
|
|
|
+import { pageTitTxtObj } from '../../D4impStor/D4edit'
|
|
|
+import { useParams } from 'react-router-dom'
|
|
|
+import { Button, Cascader, DatePicker, Input, Radio, Select } from 'antd'
|
|
|
+import { B3aForm1 } from '@/pages/B_enterTibet/B3_4page/B3edit/data'
|
|
|
+import dayjs from 'dayjs'
|
|
|
+import Z3upFiles from '@/components/Z3upFiles'
|
|
|
+import ZRichTexts from '@/components/ZRichTexts'
|
|
|
+import { MessageFu } from '@/utils/message'
|
|
|
+import history, { openGoodsInfoFu } from '@/utils/history'
|
|
|
+import B3GaddNow from '@/pages/B_enterTibet/B3goodsTable/B3GaddNow'
|
|
|
+import MyTable from '@/components/MyTable'
|
|
|
+import classNames from 'classnames'
|
|
|
+import MyPopconfirm from '@/components/MyPopconfirm'
|
|
|
+import { D4tableC, D6goodsTableC } from '@/utils/tableData'
|
|
|
+import Y1cathet from '@/pages/Y_goodsDetails/Y1cathet'
|
|
|
+import X3auditInfo from '@/pages/X_stock/X3auditInfo'
|
|
|
+import B3flowTable from '@/pages/B_enterTibet/B3flowTable'
|
|
|
+
|
|
|
function D6edit() {
|
|
|
+ const { key, id } = useParams<any>()
|
|
|
+ // key:1 新增 2编辑 3审批 4查看
|
|
|
+
|
|
|
+ // 滚到顶部
|
|
|
+ const sollrDom = useRef<HTMLDivElement>(null)
|
|
|
+
|
|
|
+ useEffect(() => {
|
|
|
+ console.log('key:', key)
|
|
|
+
|
|
|
+ if (sollrDom.current) sollrDom.current.scrollTop = 0
|
|
|
+ }, [key])
|
|
|
+
|
|
|
+ const pageTitTxt = useMemo(() => {
|
|
|
+ return Reflect.get(pageTitTxtObj, key)
|
|
|
+ }, [key])
|
|
|
+
|
|
|
+ // 上传附件的ref
|
|
|
+ const filesRef = useRef<any>(null)
|
|
|
+ // const filesRes = filesRef.current.filesIdRes();
|
|
|
+
|
|
|
+ // 富文本的ref
|
|
|
+ const ZRichTextRef = useRef<any>(null)
|
|
|
+
|
|
|
+ // 审批意见的ref
|
|
|
+ const ZAuditRef = useRef<any>(null)
|
|
|
+
|
|
|
+ // 设置富文本
|
|
|
+ // ZRichTextRef.current?.ritxtShowFu(JSON.parse(data.rtf))
|
|
|
+
|
|
|
+ // 新增的底部按钮点击
|
|
|
+ const btnClickFu = useCallback((val: number) => {
|
|
|
+ const rtf1 = ZRichTextRef.current?.fatherBtnOkFu() || { flag: true }
|
|
|
+ console.log('申请信息富文本', JSON.stringify(rtf1.val || ''))
|
|
|
+
|
|
|
+ const rtf2 = ZAuditRef.current?.resData()
|
|
|
+ console.log('审批信息富文本', rtf2)
|
|
|
+
|
|
|
+ // if (1 + 1 === 2) return
|
|
|
+
|
|
|
+ if (val === 2) {
|
|
|
+ // 存草稿 当前页保存 不跳转
|
|
|
+ MessageFu.success('草稿保存成功')
|
|
|
+ } else {
|
|
|
+ // 跳到详情页
|
|
|
+ history.push(`/putsStor_edit/4/999`)
|
|
|
+ }
|
|
|
+ }, [])
|
|
|
+
|
|
|
+ // 打开侧边栏
|
|
|
+ const [cathet, setCathet] = useState(0)
|
|
|
+
|
|
|
+ const timeChange = useCallback((e: any) => {
|
|
|
+ console.log(123, e)
|
|
|
+ }, [])
|
|
|
+
|
|
|
+ // 是否归还 单选框
|
|
|
+ const [bbbb, setBBBB] = useState(0)
|
|
|
+
|
|
|
+ const [huanTime, setHuanTime] = useState('')
|
|
|
+
|
|
|
+ // 是否归还 选择 否 的时候 清空预计归还日期
|
|
|
+ useEffect(() => {
|
|
|
+ if (!bbbb) setHuanTime('')
|
|
|
+ }, [bbbb])
|
|
|
+
|
|
|
+ // 点击新增
|
|
|
+ const [nowSta, setNowSta] = useState({ key: '', id: '' })
|
|
|
+
|
|
|
+ // 审批的sta
|
|
|
+ const [auditSta, setAuDitSta] = useState('')
|
|
|
+
|
|
|
+ // 查看模式下的按钮 待完善
|
|
|
+ const lookBtn = useMemo(() => {
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <Button type='primary'>创建</Button>
|
|
|
+ <Button type='primary'>提交</Button>
|
|
|
+ <MyPopconfirm
|
|
|
+ txtK='撤回'
|
|
|
+ onConfirm={() => {}}
|
|
|
+ Dom={
|
|
|
+ <Button type='primary' danger>
|
|
|
+ 撤回
|
|
|
+ </Button>
|
|
|
+ }
|
|
|
+ />
|
|
|
+
|
|
|
+ <Button type='primary'>审批</Button>
|
|
|
+ <Button type='primary'>编辑</Button>
|
|
|
+ <Button type='primary'>重新提交</Button>
|
|
|
+ <Button type='primary'>导出</Button>
|
|
|
+ <MyPopconfirm
|
|
|
+ txtK='删除'
|
|
|
+ onConfirm={() => {}}
|
|
|
+ Dom={
|
|
|
+ <Button type='primary' danger>
|
|
|
+ 删除
|
|
|
+ </Button>
|
|
|
+ }
|
|
|
+ />
|
|
|
+ <Button onClick={() => history.push('/putsStor')}>返回</Button>
|
|
|
+ </>
|
|
|
+ )
|
|
|
+ }, [])
|
|
|
+
|
|
|
+ // ----------------表格的逻辑
|
|
|
+ // 点击删除
|
|
|
+ const delTableFu = useCallback(async (id: number) => {}, [])
|
|
|
+
|
|
|
+ const startBtn = useMemo(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ title: '藏品编号',
|
|
|
+ render: (item: any) => {
|
|
|
+ return (
|
|
|
+ <span
|
|
|
+ onClick={() => setCathet(item.id)}
|
|
|
+ className={classNames('D1GtNum', item.id === cathet ? 'D1GtNumAc' : '')}
|
|
|
+ >
|
|
|
+ {item.num}
|
|
|
+ </span>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }, [cathet])
|
|
|
+
|
|
|
+ const tableLastBtn = useMemo(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ title: '出库位置',
|
|
|
+ render: (item: any) => (
|
|
|
+ <Cascader
|
|
|
+ disabled={['3', '4'].includes(key)}
|
|
|
+ options={[
|
|
|
+ { value: '年代1', label: '年代11', children: [{ value: 1, label: 'xxx' }] },
|
|
|
+ { value: '其他', label: '其他' }
|
|
|
+ ]}
|
|
|
+ placeholder='请选择'
|
|
|
+ // fieldNames={{ label: 'name', value: 'id', children: 'children' }}
|
|
|
+ allowClear={false}
|
|
|
+ />
|
|
|
+ )
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '操作',
|
|
|
+ render: (item: any) => {
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <Button size='small' type='text' onClick={() => openGoodsInfoFu(item.id)}>
|
|
|
+ 查看
|
|
|
+ </Button>
|
|
|
+ {['3', '4'].includes(key) ? null : (
|
|
|
+ <MyPopconfirm txtK='删除' onConfirm={() => delTableFu(item.id)} />
|
|
|
+ )}
|
|
|
+ </>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }, [delTableFu, key])
|
|
|
+
|
|
|
+ const tableLastBtn2 = useMemo(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ title: '操作',
|
|
|
+ render: (item: any) => {
|
|
|
+ return (
|
|
|
+ <Button
|
|
|
+ size='small'
|
|
|
+ type='text'
|
|
|
+ onClick={() => {
|
|
|
+ window.open(`/#/impStor_edit/4/${item.id}`, '_blank')
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ 查看
|
|
|
+ </Button>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }, [])
|
|
|
+
|
|
|
return (
|
|
|
<div className={styles.D6edit}>
|
|
|
- <h1>D6edit</h1>
|
|
|
+ <div className='pageTitle'>出库-{pageTitTxt}</div>
|
|
|
+
|
|
|
+ <div className='D6main' ref={sollrDom}>
|
|
|
+ {['3'].includes(key) ? (
|
|
|
+ <X3auditInfo auditSta={auditSta} auditStaFu={val => setAuDitSta(val)} ref={ZAuditRef} />
|
|
|
+ ) : null}
|
|
|
+
|
|
|
+ {/* 表单字段、附件等 */}
|
|
|
+ <div className='D6Tit'>
|
|
|
+ {/* 待完善 */}
|
|
|
+ 申请信息
|
|
|
+ <Button type='dashed'>草稿</Button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className='D6rowAll'>
|
|
|
+ <div className='D6row'>
|
|
|
+ <div className='D6rowll'>
|
|
|
+ <span> * </span>申请名称:
|
|
|
+ </div>
|
|
|
+ <div className='D6rowrr'>
|
|
|
+ <Input
|
|
|
+ readOnly={['3', '4'].includes(key)}
|
|
|
+ placeholder='请输入内容'
|
|
|
+ maxLength={30}
|
|
|
+ showCount
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className='D6row'>
|
|
|
+ <div className='D6rowll'>
|
|
|
+ <span> * </span>业务类型:
|
|
|
+ </div>
|
|
|
+ <div className='D6rowrr'>
|
|
|
+ <Cascader
|
|
|
+ disabled={['3', '4'].includes(key)}
|
|
|
+ options={[
|
|
|
+ { value: '年代1', label: '年代11', children: [{ value: 1, label: 'xxx' }] },
|
|
|
+ { value: '其他', label: '其他' }
|
|
|
+ ]}
|
|
|
+ changeOnSelect
|
|
|
+ placeholder='请选择'
|
|
|
+ // fieldNames={{ label: 'name', value: 'id', children: 'children' }}
|
|
|
+ allowClear={false}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ {B3aForm1.map(v => (
|
|
|
+ <div className='D6row' key={v.name}>
|
|
|
+ <div className='D6rowll'>{v.name}:</div>
|
|
|
+ <div className='D6rowrr'>
|
|
|
+ 这是一段文本
|
|
|
+ {['3', '4'].includes(key) && v.name === '发起人'
|
|
|
+ ? ' - 查看和审批后面显示创建时间'
|
|
|
+ : ''}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ ))}
|
|
|
+
|
|
|
+ <div className='D6row'>
|
|
|
+ <div className='D6rowll'>
|
|
|
+ <span> * </span>是否归还:
|
|
|
+ </div>
|
|
|
+ <div className='D6rowrr'>
|
|
|
+ <Radio.Group
|
|
|
+ disabled={['3', '4'].includes(key)}
|
|
|
+ value={bbbb}
|
|
|
+ onChange={e => setBBBB(e.target.value)}
|
|
|
+ options={[
|
|
|
+ { value: 1, label: '是' },
|
|
|
+ { value: 0, label: '否' }
|
|
|
+ ]}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className='D6row'>
|
|
|
+ <div className='D6rowll'>{bbbb ? <span> * </span> : null} 预计归还日期:</div>
|
|
|
+ <div className='D6rowrr'>
|
|
|
+ <DatePicker
|
|
|
+ disabled={['3', '4'].includes(key) || bbbb === 0}
|
|
|
+ allowClear={false}
|
|
|
+ value={huanTime ? dayjs(huanTime) : null}
|
|
|
+ onChange={e => setHuanTime(dayjs(e).format('YYYY-MM-DD'))}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className='D6row'>
|
|
|
+ <div className='D6rowll'>
|
|
|
+ <span> * </span>业务日期:
|
|
|
+ </div>
|
|
|
+ <div className='D6rowrr'>
|
|
|
+ <DatePicker
|
|
|
+ disabled={['3', '4'].includes(key)}
|
|
|
+ allowClear={false}
|
|
|
+ value={dayjs()}
|
|
|
+ onChange={timeChange}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div className='D6row'>
|
|
|
+ <div className='D6rowll'>原因事由:</div>
|
|
|
+ <div className='D6rowrr'>
|
|
|
+ <Input
|
|
|
+ readOnly={['3', '4'].includes(key)}
|
|
|
+ placeholder='请输入内容'
|
|
|
+ maxLength={30}
|
|
|
+ showCount
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className='D6row D6row2'>
|
|
|
+ <div className='D6rowll'>附件:</div>
|
|
|
+ <div className='D6rowrr'>
|
|
|
+ <Z3upFiles
|
|
|
+ max={10}
|
|
|
+ isLook={['3', '4'].includes(key)}
|
|
|
+ ref={filesRef}
|
|
|
+ fileCheck={false}
|
|
|
+ dirCode={'xxxxxxx'}
|
|
|
+ myUrl='xxxxxxxxxxxx'
|
|
|
+ lookData={[]}
|
|
|
+ size={500}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className='D6row D6rowFull'>
|
|
|
+ <div className='D6rowll'>备注:</div>
|
|
|
+ <div className='D6rowrr'>
|
|
|
+ <ZRichTexts
|
|
|
+ check={false}
|
|
|
+ dirCode={'xxxxxxxx'}
|
|
|
+ isLook={['3', '4'].includes(key)}
|
|
|
+ ref={ZRichTextRef}
|
|
|
+ myUrl='xxxxxxxxxx'
|
|
|
+ isOne={true}
|
|
|
+ upAudioBtnNone={true}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className='D6Tit'>库房信息</div>
|
|
|
+ <div className='D6rowAll'>
|
|
|
+ <div className='D6row'>
|
|
|
+ <div className='D6rowll'>
|
|
|
+ <span> * </span>出库库房:
|
|
|
+ </div>
|
|
|
+ <div className='D6rowrr'>
|
|
|
+ {/* 待完善 从库房设置列表里面选择 --根据选择刷新下面的藏品清单列表*/}
|
|
|
+ <Select disabled={['3', '4'].includes(key)} placeholder='请选择' />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div className='D6row D6row3'>
|
|
|
+ <div className='D6rowll'>库房负责人:</div>
|
|
|
+ <div className='D6rowrr'>这是一段文本</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ {/* 藏品清单 */}
|
|
|
+ <div className='D6googsBox'>
|
|
|
+ <div className='D6Tit2'>
|
|
|
+ <div className='D6Tit2ll'>藏品清单</div>
|
|
|
+ <div className='D6Tit2rr'>
|
|
|
+ {['3', '4'].includes(key) ? null : (
|
|
|
+ <Button type='primary' onClick={() => setNowSta({ key: '6', id })}>
|
|
|
+ 新增
|
|
|
+ </Button>
|
|
|
+ )}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ {/* 表格 */}
|
|
|
+ <MyTable
|
|
|
+ list={[{ id: 99, thumb: '', num: '一段编号_可点击' }]}
|
|
|
+ columnsTemp={D6goodsTableC}
|
|
|
+ startBtn={startBtn}
|
|
|
+ lastBtn={tableLastBtn}
|
|
|
+ pagingInfo={false}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+
|
|
|
+ {/* 相关入库单 */}
|
|
|
+
|
|
|
+ {/* 通过后端数据,没有入库单的隐藏 */}
|
|
|
+
|
|
|
+ {key === '4' ? (
|
|
|
+ <div className='D6_4tableBox'>
|
|
|
+ <div className='D6Tit'>相关入库单</div>
|
|
|
+ <MyTable
|
|
|
+ list={[{ id: 77, thumb: '' }]}
|
|
|
+ columnsTemp={D4tableC}
|
|
|
+ lastBtn={tableLastBtn2}
|
|
|
+ pagingInfo={false}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ ) : null}
|
|
|
+
|
|
|
+ {/* 申请流程 */}
|
|
|
+ {['3', '4'].includes(key) ? <B3flowTable /> : null}
|
|
|
+ </div>
|
|
|
+
|
|
|
+ {/* 底部按钮 */}
|
|
|
+ <div className='D6btn'>
|
|
|
+ {key === '4' ? (
|
|
|
+ lookBtn
|
|
|
+ ) : (
|
|
|
+ <>
|
|
|
+ <Button type='primary' onClick={() => btnClickFu(1)}>
|
|
|
+ {key === '1' ? '创建' : '保存'}
|
|
|
+ </Button>
|
|
|
+
|
|
|
+ {key === '1' ? (
|
|
|
+ <Button type='primary' onClick={() => btnClickFu(2)}>
|
|
|
+ 存草稿
|
|
|
+ </Button>
|
|
|
+ ) : null}
|
|
|
+
|
|
|
+ <MyPopconfirm txtK='取消' onConfirm={() => history.push('/putsStor')} />
|
|
|
+ </>
|
|
|
+ )}
|
|
|
+ </div>
|
|
|
+
|
|
|
+ {/* 打开侧边栏 */}
|
|
|
+ <Y1cathet sId={cathet} closeFu={() => setCathet(0)} />
|
|
|
+ {/* 新增弹窗 */}
|
|
|
+ {nowSta.id ? (
|
|
|
+ <B3GaddNow nowSta={nowSta} closeFu={() => setNowSta({ key: '', id: '' })} />
|
|
|
+ ) : null}
|
|
|
</div>
|
|
|
)
|
|
|
}
|