同上
This commit is contained in:
@ -163,7 +163,7 @@ const CooperateEnterprise: React.FC = () => {
|
||||
className="filter-form"
|
||||
>
|
||||
<Form.Item name="changeDesc" label="变更内容">
|
||||
<Input style={{ width: 160 }} placeholder="请输入变更内容" allowClear maxLength={50} />
|
||||
<Input style={{ width: 160 }} placeholder="请输入" allowClear maxLength={50} />
|
||||
</Form.Item>
|
||||
{/* <Form.Item name="deptNames" label="审批单位">
|
||||
<AccessDepartmentSelect placeholder={'请选择审批单位'} />
|
||||
@ -172,7 +172,7 @@ const CooperateEnterprise: React.FC = () => {
|
||||
<DatePicker.RangePicker placeholder={['开始时间', '结束时间']} allowClear />
|
||||
</Form.Item>
|
||||
<Form.Item name="enterpriseType" label="审批状态">
|
||||
<Select style={{ width: 160 }} placeholder="请选择审批状态" allowClear>
|
||||
<Select style={{ width: 160 }} placeholder="请选择" allowClear>
|
||||
{enterpriseType?.map(item => (
|
||||
<Select.Option key={item.code} value={item.code}>{item.dicName}</Select.Option>
|
||||
))}
|
||||
|
@ -174,10 +174,10 @@ const supplierNews: React.FC = () => {
|
||||
className="filter-form"
|
||||
>
|
||||
<Form.Item name="content" label="消息内容">
|
||||
<Input placeholder="请输入消息内容" allowClear maxLength={50} />
|
||||
<Input placeholder="请输入" allowClear maxLength={50} />
|
||||
</Form.Item>
|
||||
<Form.Item name="type" label="业务类型">
|
||||
<Select style={{ width: 140 }} placeholder="请选择业务类型" allowClear>
|
||||
<Select style={{ width: 140 }} placeholder="请选择" allowClear>
|
||||
{categoryOptions.map((option) => (
|
||||
<Select.Option key={option.code} value={option.code}>
|
||||
{option.dicName}
|
||||
@ -186,7 +186,7 @@ const supplierNews: React.FC = () => {
|
||||
</Select>
|
||||
</Form.Item>
|
||||
<Form.Item name="read" label="是否已读">
|
||||
<Select style={{ width: 140 }} placeholder="请选择是否已读" allowClear>
|
||||
<Select style={{ width: 140 }} placeholder="请选择" allowClear>
|
||||
{readTypeOptions.map(opt => (
|
||||
<Select.Option key={opt.code} value={opt.code}>{opt.dicName}</Select.Option>
|
||||
))}
|
||||
|
@ -140,7 +140,7 @@ const CategoryAddModal: React.FC<Props> = ({ visible, onCancel, onSuccess }) =>
|
||||
name="name"
|
||||
rules={[{ required: true, message: '请输入品类库名称' }]}
|
||||
>
|
||||
<Input placeholder="请输入品类库名称" />
|
||||
<Input placeholder="请输入" />
|
||||
</Form.Item>
|
||||
<Form.Item
|
||||
label="有效期至"
|
||||
@ -191,7 +191,7 @@ const CategoryAddModal: React.FC<Props> = ({ visible, onCancel, onSuccess }) =>
|
||||
},
|
||||
]}
|
||||
>
|
||||
<Select placeholder="请选择区域">
|
||||
<Select placeholder="请选择">
|
||||
{
|
||||
regionOptions.map((item) => {
|
||||
return <Option value={item.code}>{item.dicName}</Option>
|
||||
@ -206,7 +206,7 @@ const CategoryAddModal: React.FC<Props> = ({ visible, onCancel, onSuccess }) =>
|
||||
required
|
||||
>
|
||||
<Select
|
||||
placeholder="请选择否已走OA签报"
|
||||
placeholder="请选择"
|
||||
style={{ width: 260 }}
|
||||
options={approveTypeOptions}
|
||||
/>
|
||||
@ -215,7 +215,7 @@ const CategoryAddModal: React.FC<Props> = ({ visible, onCancel, onSuccess }) =>
|
||||
label="备注"
|
||||
name="remark"
|
||||
>
|
||||
<Input placeholder="请输入备注" />
|
||||
<Input placeholder="请输入" />
|
||||
</Form.Item>
|
||||
|
||||
<Form.Item shouldUpdate={(prev, curr) => prev.approveType !== curr.approveType}>
|
||||
|
@ -323,7 +323,7 @@ const SupplierAddModal: React.FC<{
|
||||
required
|
||||
>
|
||||
<Select
|
||||
placeholder="请选择否已走OA签报"
|
||||
placeholder="请选择"
|
||||
style={{ width: 260 }}
|
||||
options={approveTypeOptions}
|
||||
/>
|
||||
|
@ -39,7 +39,7 @@ export interface CoscoCategoryLibrarAttachments {
|
||||
*/
|
||||
|
||||
export interface getPageData {
|
||||
type:string;
|
||||
type?:string;
|
||||
basePageRequest: BasePageRequest;
|
||||
[property: string]: any;
|
||||
}
|
||||
|
@ -156,7 +156,7 @@ const CreateBlacklistModal: React.FC<CreateBlacklistModalProps> = ({
|
||||
name="timelimitType"
|
||||
rules={[{ required: true, message: '请选择时限类型' }]}
|
||||
>
|
||||
<Select placeholder="请选择时限类型">
|
||||
<Select placeholder="请选择">
|
||||
|
||||
{timelimitOption.map((opt) => (
|
||||
<Option key={opt.code} value={opt.code}>{opt.dicName}</Option>
|
||||
@ -170,7 +170,7 @@ const CreateBlacklistModal: React.FC<CreateBlacklistModalProps> = ({
|
||||
name="blacklistReason"
|
||||
rules={[{ required: true, message: '请输入退出黑名单原因' }]}
|
||||
>
|
||||
<Input.TextArea placeholder="请输入退出黑名单原因" rows={4} />
|
||||
<Input.TextArea placeholder="请输入" rows={4} />
|
||||
</Form.Item>
|
||||
</Form>
|
||||
</div>
|
||||
|
@ -156,7 +156,7 @@ const CreateBlacklistModal: React.FC<CreateBlacklistModalProps> = ({
|
||||
name="exitTheme"
|
||||
rules={[{ required: true, message: '请输入申请主题' }]}
|
||||
>
|
||||
<Input placeholder="请输入申请主题" />
|
||||
<Input placeholder="请输入" />
|
||||
</Form.Item>
|
||||
|
||||
<Form.Item
|
||||
@ -172,7 +172,7 @@ const CreateBlacklistModal: React.FC<CreateBlacklistModalProps> = ({
|
||||
name="exitReason"
|
||||
rules={[{ required: true, message: '请输入退出原因' }]}
|
||||
>
|
||||
<Input.TextArea placeholder="请输入退出原因" rows={4} />
|
||||
<Input.TextArea placeholder="请输入" rows={4} />
|
||||
</Form.Item>
|
||||
</Form>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user