This commit is contained in:
孙景学
2025-08-12 09:08:01 +08:00
parent d0815c23e3
commit adcf2c2cde
7 changed files with 15 additions and 15 deletions

View File

@ -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>
))}

View File

@ -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>
))}

View File

@ -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}>

View File

@ -323,7 +323,7 @@ const SupplierAddModal: React.FC<{
required
>
<Select
placeholder="请选择否已走OA签报"
placeholder="请选择"
style={{ width: 260 }}
options={approveTypeOptions}
/>

View File

@ -39,7 +39,7 @@ export interface CoscoCategoryLibrarAttachments {
*/
export interface getPageData {
type:string;
type?:string;
basePageRequest: BasePageRequest;
[property: string]: any;
}

View File

@ -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>

View File

@ -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>