|
|
@ -735,7 +735,7 @@ function ParkingCardMgm(props) { |
|
|
|
<div className="paid-search"> |
|
|
|
<label className="search">查询条件</label> |
|
|
|
<div className="yisa-search"> |
|
|
|
<label>商品名称</label> |
|
|
|
<label style={{marginRight:12}}>商品名称</label> |
|
|
|
<Input |
|
|
|
placeholder="请输入" |
|
|
|
value={formData.name} |
|
|
@ -774,10 +774,10 @@ function ParkingCardMgm(props) { |
|
|
|
</div> |
|
|
|
<div className="timePicker yisa-search"> |
|
|
|
<div className="btnBox"> |
|
|
|
<Button type="primary" className="yisa-btn colorBtn" icon={<SearchOutlined />} onClick={() => { getSearchData() }}> |
|
|
|
搜索 |
|
|
|
<Button type="primary" className="yisa-btn colorBtn" style={{width:85}} icon={<SearchOutlined />} onClick={() => { getSearchData() }}> |
|
|
|
查询 |
|
|
|
</Button> |
|
|
|
<Button type="primary" className="yisa-btn colorBtn" icon={<PlusOutlined />} onClick={() => { addData() }}> |
|
|
|
<Button type="primary" className="yisa-btn colorBtn" style={{width:110}} icon={<PlusOutlined />} onClick={() => { addData() }}> |
|
|
|
添加 |
|
|
|
</Button> |
|
|
|
</div> |
|
|
@ -785,7 +785,7 @@ function ParkingCardMgm(props) { |
|
|
|
</div> |
|
|
|
<div className="paid-result"> |
|
|
|
<div className="result"> |
|
|
|
<span className="font">共检索到<em>{resultData.total}</em>条结果</span> |
|
|
|
<span className="font">共检索到<span>{resultData.total}</span>条结果</span> |
|
|
|
<ResultFlowResult ajaxLoad={ajaxLoading} resultData={resultData.data ? resultData.data : []}> |
|
|
|
<Table |
|
|
|
bordered |
|
|
@ -1107,9 +1107,9 @@ function ParkingCardMgm(props) { |
|
|
|
<em style={{marginRight:'5px',marginLeft:'-13px',color:'red'}}>*</em> |
|
|
|
<label>销售价格</label> |
|
|
|
<InputNumber |
|
|
|
value={checkData.original_price && checkData.discount_amount ? |
|
|
|
value={checkData.original_price && checkData.discount_amount !== '' ? |
|
|
|
(checkData.original_price - checkData.discount_amount).toFixed(2) |
|
|
|
:'' |
|
|
|
: '' |
|
|
|
} |
|
|
|
style={{ width: 250, marginLeft: 20 }} |
|
|
|
disabled={true} |
|
|
|