Commit d923106a authored by XieZhiXiong's avatar XieZhiXiong

fix: 修复 Select label内容过长导致变形的问题

parent fa5f2b97
...@@ -358,3 +358,7 @@ a { ...@@ -358,3 +358,7 @@ a {
} }
} }
} }
.ant-form-horizontal .ant-form-item-control {
overflow: hidden;
}
\ No newline at end of file
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: XieZhiXiong * @Author: XieZhiXiong
* @Date: 2020-11-09 10:48:12 * @Date: 2020-11-09 10:48:12
* @LastEditors: XieZhiXiong * @LastEditors: XieZhiXiong
* @LastEditTime: 2020-12-14 18:33:19 * @LastEditTime: 2020-12-31 10:48:22
* @Description: 手动发货弹窗 * @Description: 手动发货弹窗
*/ */
import React from 'react'; import React from 'react';
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: XieZhiXiong * @Author: XieZhiXiong
* @Date: 2020-11-09 10:50:43 * @Date: 2020-11-09 10:50:43
* @LastEditors: XieZhiXiong * @LastEditors: XieZhiXiong
* @LastEditTime: 2020-12-14 18:34:12 * @LastEditTime: 2020-12-31 10:35:24
* @Description: * @Description:
*/ */
import { ISchema } from '@formily/antd'; import { ISchema } from '@formily/antd';
...@@ -14,13 +14,14 @@ export const schema: ISchema = { ...@@ -14,13 +14,14 @@ export const schema: ISchema = {
type: 'object', type: 'object',
'x-component': 'mega-layout', 'x-component': 'mega-layout',
'x-component-props': { 'x-component-props': {
labelAlign: 'top', labelAlign: 'left',
}, },
properties: { properties: {
deliveryAddress: { deliveryAddress: {
type: 'string', type: 'string',
title: '发货地址', title: '发货地址',
enum: [], enum: [],
required: true,
'x-component-props': { 'x-component-props': {
placeholder: '请选择', placeholder: '请选择',
}, },
...@@ -46,7 +47,7 @@ export const schema: ISchema = { ...@@ -46,7 +47,7 @@ export const schema: ISchema = {
title: '发货单号', title: '发货单号',
required: true, required: true,
'x-component-props': { 'x-component-props': {
placeholder: '请选择', placeholder: '请输入',
}, },
}, },
logisticsOrderNoTxt: { logisticsOrderNoTxt: {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: XieZhiXiong * @Author: XieZhiXiong
* @Date: 2020-11-06 16:30:44 * @Date: 2020-11-06 16:30:44
* @LastEditors: XieZhiXiong * @LastEditors: XieZhiXiong
* @LastEditTime: 2020-11-19 18:19:21 * @LastEditTime: 2020-12-31 10:33:18
* @Description: 待换货收货 * @Description: 待换货收货
*/ */
import React, { useState, useRef } from 'react'; import React, { useState, useRef } from 'react';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment