Commit 23d51ca9 authored by 前端-钟卫鹏's avatar 前端-钟卫鹏

Merge branch 'dev' into test

parents 8456b6db fe4a565c
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
"god": "0.2.4", "god": "0.2.4",
"immutability-helper": "^3.1.1", "immutability-helper": "^3.1.1",
"lingxi-design": "^1.0.8", "lingxi-design": "^1.0.8",
"lingxi-design-ui": "^1.1.15", "lingxi-design-ui": "^1.1.16",
"lingxi-editor-core": "^1.0.6", "lingxi-editor-core": "^1.0.6",
"lingxi-web": "^1.0.6", "lingxi-web": "^1.0.6",
"lint-staged": "^10.0.7", "lint-staged": "^10.0.7",
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: XieZhiXiong * @Author: XieZhiXiong
* @Date: 2020-08-20 16:15:59 * @Date: 2020-08-20 16:15:59
* @LastEditors: XieZhiXiong * @LastEditors: XieZhiXiong
* @LastEditTime: 2020-08-21 17:07:35 * @LastEditTime: 2020-12-21 13:57:12
* @Description: 简单封装了分页事件的 Table * @Description: 简单封装了分页事件的 Table
*/ */
import React from 'react'; import React from 'react';
...@@ -54,7 +54,6 @@ export default class NormalTable extends React.PureComponent<StandardTableProps> ...@@ -54,7 +54,6 @@ export default class NormalTable extends React.PureComponent<StandardTableProps>
showSizeChanger: true, showSizeChanger: true,
showQuickJumper: true, showQuickJumper: true,
onChange: this.handlePaginationChange, onChange: this.handlePaginationChange,
onShowSizeChange: this.handlePaginationChange,
size: 'small', size: 'small',
showTotal: () => `共 ${pagination.total || 0} 条`, showTotal: () => `共 ${pagination.total || 0} 条`,
...pagination, ...pagination,
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: XieZhiXiong * @Author: XieZhiXiong
* @Date: 2020-11-04 15:09:09 * @Date: 2020-11-04 15:09:09
* @LastEditors: XieZhiXiong * @LastEditors: XieZhiXiong
* @LastEditTime: 2020-12-17 15:25:03 * @LastEditTime: 2020-12-21 11:44:17
* @Description: 维修商品抽屉组件 * @Description: 维修商品抽屉组件
*/ */
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from 'react';
...@@ -22,7 +22,7 @@ import { PublicApi } from '@/services/api'; ...@@ -22,7 +22,7 @@ import { PublicApi } from '@/services/api';
const formActions = createFormActions(); const formActions = createFormActions();
const PAGE_SIZE = 5; const PAGE_SIZE = 10;
interface GoodsDrawerProps { interface GoodsDrawerProps {
// 选中值(子表格的值) // 选中值(子表格的值)
...@@ -525,7 +525,7 @@ class GoodsDrawer extends React.Component<GoodsDrawerProps, GoodsDrawerState> { ...@@ -525,7 +525,7 @@ class GoodsDrawer extends React.Component<GoodsDrawerProps, GoodsDrawerState> {
const first = data.length ? data[0] : null; const first = data.length ? data[0] : null;
if (!first) { if (!first) {
return; return [];
} }
const filtered = data.filter(item => item.processEnum === first.processEnum); const filtered = data.filter(item => item.processEnum === first.processEnum);
if (filtered.length !== data.length) { if (filtered.length !== data.length) {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: XieZhiXiong * @Author: XieZhiXiong
* @Date: 2020-11-05 17:36:45 * @Date: 2020-11-05 17:36:45
* @LastEditors: XieZhiXiong * @LastEditors: XieZhiXiong
* @LastEditTime: 2020-12-09 16:38:48 * @LastEditTime: 2020-12-21 11:13:21
* @Description: 查看退货数量与退款金额 抽屉 * @Description: 查看退货数量与退款金额 抽屉
*/ */
import React from 'react'; import React from 'react';
...@@ -164,6 +164,7 @@ const ReturnInfoDrawer: React.FC<ReturnInfoDrawerProps> = ({ ...@@ -164,6 +164,7 @@ const ReturnInfoDrawer: React.FC<ReturnInfoDrawerProps> = ({
</Button> </Button>
</div> </div>
} }
destroyOnClose
> >
<NiceForm <NiceForm
initialValues={orderInfo} initialValues={orderInfo}
......
...@@ -226,7 +226,7 @@ export const addBillSchema: ISchema = { ...@@ -226,7 +226,7 @@ export const addBillSchema: ISchema = {
'x-rules': [ 'x-rules': [
{ {
required: true, required: true,
message: '请选择维修商品', message: '请选择退货商品',
}, },
], ],
items: { items: {
...@@ -286,11 +286,23 @@ export const addBillSchema: ISchema = { ...@@ -286,11 +286,23 @@ export const addBillSchema: ISchema = {
type: 'string', type: 'string',
title: '退货数量', title: '退货数量',
'x-component': 'Text', 'x-component': 'Text',
'x-rules': [
{
required: true,
message: '请输入退货数量',
},
],
}, },
refundAmount: { refundAmount: {
type: 'string', type: 'string',
title: '退款金额', title: '退款金额',
'x-component': 'Text', 'x-component': 'Text',
'x-rules': [
{
required: true,
message: '请输入退款金额',
},
],
}, },
// 其他数据,不用于展示,只用于收集值 // 其他数据,不用于展示,只用于收集值
extraData: { extraData: {
......
...@@ -329,9 +329,29 @@ const PriceAttributeForm: React.FC<Iprops> = (props) => { ...@@ -329,9 +329,29 @@ const PriceAttributeForm: React.FC<Iprops> = (props) => {
_tempObj['规格ID'] = productInfoByEdit.unitPriceAndPicList[i]?.id _tempObj['规格ID'] = productInfoByEdit.unitPriceAndPicList[i]?.id
} }
if(updateFlag.current){ // 初次渲染tab 再次进入tab采用缓存数据 if(updateFlag.current){ // 初次渲染tab 再次进入tab采用缓存数据
_tempObj['单价'] = productInfoByEdit.unitPriceAndPicList[i]?.unitPrice || {} // _tempObj['单价'] = productInfoByEdit.unitPriceAndPicList[i]?.unitPrice || {}
if(productInfoByEdit.unitPriceAndPicList[i]?.unitPrice) {
let tempUnit = {}
let unitPric = productInfoByEdit.unitPriceAndPicList[i]?.unitPrice
Object.keys(unitPric).sort().forEach(function(key) {
tempUnit[key] = unitPric[key];
})
_tempObj['单价'] = tempUnit
} else {
_tempObj['单价'] = {}
}
}else{ }else{
_tempObj['单价'] = _tableDataSource[i] && tableDataSource[i] && tableDataSource[i]['单价'] || {} // _tempObj['单价'] = _tableDataSource[i] && tableDataSource[i] && tableDataSource[i]['单价'] || {}
if(_tableDataSource[i] && tableDataSource[i] && tableDataSource[i]['单价']) {
let tempUnit = {}
let unitPric = _tableDataSource[i] && tableDataSource[i] && tableDataSource[i]['单价']
Object.keys(unitPric).sort().forEach(function(key) {
tempUnit[key] = unitPric[key]
})
_tempObj['单价'] = tempUnit
} else {
_tempObj['单价'] = {}
}
} }
}else{ }else{
_tempObj['对应货品'] = selectedGoods.length > 0 ? selectedGoods[0].id : 0 _tempObj['对应货品'] = selectedGoods.length > 0 ? selectedGoods[0].id : 0
......
...@@ -120,6 +120,21 @@ const PayPage: React.FC<PayPagePropsType> = (props) => { ...@@ -120,6 +120,21 @@ const PayPage: React.FC<PayPagePropsType> = (props) => {
window.location.href = '/' window.location.href = '/'
} }
const renderError = () => {
return (
<div>
<CommonHeader
logoUrl={(layoutType === LAYOUT_TYPE.channel || layoutType === LAYOUT_TYPE.ichannel) ? shopInfo?.logo : mallInfo.logoUrl}
title="支付错误"
/>
<div className={styles.errmsg}>
<p>{errMsg}</p>
<Button type="primary" className={styles.backbtn} onClick={() => backHome()}>返回首页</Button>
</div>
</div>
)
}
return payInfo ? !payState ? ( return payInfo ? !payState ? (
<div className={styles.pay}> <div className={styles.pay}>
<CommonHeader <CommonHeader
...@@ -132,19 +147,7 @@ const PayPage: React.FC<PayPagePropsType> = (props) => { ...@@ -132,19 +147,7 @@ const PayPage: React.FC<PayPagePropsType> = (props) => {
} }
</div> </div>
</div> </div>
) : loading ? null : ( ) : loading ? null : renderError(): renderError()
<div>
<CommonHeader
logoUrl={(layoutType === LAYOUT_TYPE.channel || layoutType === LAYOUT_TYPE.ichannel) ? shopInfo?.logo : mallInfo.logoUrl}
title="支付错误"
/>
<div className={styles.errmsg}>
<p>{errMsg}</p>
<Button type="primary" className={styles.backbtn} onClick={() => backHome()}>返回首页</Button>
</div>
</div>
): null
} }
export default PayPage export default PayPage
...@@ -79,13 +79,13 @@ const EquityInfo: React.FC<EquityInfoProps> = ({ ...@@ -79,13 +79,13 @@ const EquityInfo: React.FC<EquityInfoProps> = ({
const [receivedPage, setReceivedPage] = useState(1); const [receivedPage, setReceivedPage] = useState(1);
const [receivedSize, setReceivedSize] = useState(PAGE_SIZE); const [receivedSize, setReceivedSize] = useState(PAGE_SIZE);
const [receivedTotal, setReceivedTotal] = useState(0); const [receivedTotal, setReceivedTotal] = useState(0);
const [receivedList, setReceivedList] = useState([]); const [receivedList, setReceivedList] = useState<ReceivedData[]>([]);
const [receivedListLoading, setReceivedListLoading] = useState(false); const [receivedListLoading, setReceivedListLoading] = useState(false);
const [usagePage, setUsagePage] = useState(1); const [usagePage, setUsagePage] = useState(1);
const [usageSize, setUsageSize] = useState(PAGE_SIZE); const [usageSize, setUsageSize] = useState(PAGE_SIZE);
const [usageTotal, setUsageTotal] = useState(0); const [usageTotal, setUsageTotal] = useState(0);
const [usageList, setUsageList] = useState([]); const [usageList, setUsageList] = useState<UsageData[]>([]);
const [usageListLoading, setUsageListLoading] = useState(false); const [usageListLoading, setUsageListLoading] = useState(false);
const receivedColumns: EditableColumns[] = [ const receivedColumns: EditableColumns[] = [
...@@ -151,15 +151,13 @@ const EquityInfo: React.FC<EquityInfoProps> = ({ ...@@ -151,15 +151,13 @@ const EquityInfo: React.FC<EquityInfoProps> = ({
}, },
]; ];
const getReceivedList = () => { const getReceivedList = (params?) => {
if (fetchReceivedList) { if (fetchReceivedList) {
if (receivedListLoading) {
return;
}
setReceivedListLoading(true); setReceivedListLoading(true);
fetchReceivedList({ fetchReceivedList({
current: receivedPage, current: receivedPage,
pageSize: receivedSize, pageSize: receivedSize,
...params,
}).then(res => { }).then(res => {
const { data = [], totalCount = 0 } = (res || {}); const { data = [], totalCount = 0 } = (res || {});
setReceivedList(data); setReceivedList(data);
...@@ -170,15 +168,13 @@ const EquityInfo: React.FC<EquityInfoProps> = ({ ...@@ -170,15 +168,13 @@ const EquityInfo: React.FC<EquityInfoProps> = ({
} }
}; };
const getUsageList = () => { const getUsageList = (params?) => {
if (fetchUsageList) { if (fetchUsageList) {
if (usageListLoading) {
return;
}
setUsageListLoading(true); setUsageListLoading(true);
fetchUsageList({ fetchUsageList({
current: usagePage, current: usagePage,
pageSize: usageSize, pageSize: usageSize,
...params,
}).then(res => { }).then(res => {
const { data = [], totalCount = 0 } = (res || {}); const { data = [], totalCount = 0 } = (res || {});
setUsageList(data); setUsageList(data);
...@@ -211,13 +207,19 @@ const EquityInfo: React.FC<EquityInfoProps> = ({ ...@@ -211,13 +207,19 @@ const EquityInfo: React.FC<EquityInfoProps> = ({
const handleReceivedPaginationChange = (page: number, size: number) => { const handleReceivedPaginationChange = (page: number, size: number) => {
setReceivedPage(page); setReceivedPage(page);
setReceivedSize(size); setReceivedSize(size);
getReceivedList(); getReceivedList({
current: page,
pageSize: size,
});
}; };
const handleUsagePaginationChange = (page: number, size: number) => { const handleUsagePaginationChange = (page: number, size: number) => {
setUsagePage(page); setUsagePage(page);
setUsageSize(size); setUsageSize(size);
getReceivedList(); getUsageList({
current: page,
pageSize: size,
});
}; };
return ( return (
......
...@@ -174,7 +174,7 @@ const AccountDetail: React.FC<{}> = () => { ...@@ -174,7 +174,7 @@ const AccountDetail: React.FC<{}> = () => {
dataIndex: 'operation', dataIndex: 'operation',
key: 'operation', key: 'operation',
render: (t, r)=> { render: (t, r)=> {
return t === 1 ? '冻结资金账户' : '解冻资金账户' return t === 1 ? '解冻资金账户' : '冻结资金账户'
} }
}, },
{ {
......
...@@ -41,6 +41,9 @@ const AddRepository:React.FC<{}> = (props) => { ...@@ -41,6 +41,9 @@ const AddRepository:React.FC<{}> = (props) => {
if(!params['isAllMemberShare'] && !params['applyMember']?.length) { if(!params['isAllMemberShare'] && !params['applyMember']?.length) {
message.error('请选择指定会员') message.error('请选择指定会员')
} else { } else {
addSchemaAction.getFieldState('warehouseId', prevState => {
params['warehouseName'] = prevState.props.enum.filter((item: any) => item.value === prevState.value)[0]['label']
})
await PublicApi.postWarehouseFreightSpaceAdd(params) await PublicApi.postWarehouseFreightSpaceAdd(params)
setTimeout(() => { setTimeout(() => {
history.goBack(-1) history.goBack(-1)
......
...@@ -48,9 +48,9 @@ export const useOrderDetail = (options: OrderDetailHookProps) => { ...@@ -48,9 +48,9 @@ export const useOrderDetail = (options: OrderDetailHookProps) => {
const { code, data, message: msg } = res const { code, data, message: msg } = res
if (code === 1000) { if (code === 1000) {
setFormData(data) setFormData(data)
if(data.paymentInformationResponses.length > 0){ // if(data.paymentInformationResponses.length > 0){
setCurrentPayInfoId(data.paymentInformationResponses[0].id) // setCurrentPayInfoId(data.paymentInformationResponses[0].id)
} // }
reloadPayList(data.supplyMembersId, data.supplyMembersRoleId) reloadPayList(data.supplyMembersId, data.supplyMembersRoleId)
} else { } else {
message.error(msg) message.error(msg)
......
...@@ -497,8 +497,6 @@ export const useBusinessEffects = (context, actions) => { ...@@ -497,8 +497,6 @@ export const useBusinessEffects = (context, actions) => {
if (fieldState.name === 'invoicesTypeId') { if (fieldState.name === 'invoicesTypeId') {
const invoicesTypeIdState = getFieldState('invoicesTypeId'); const invoicesTypeIdState = getFieldState('invoicesTypeId');
console.log('invoicesTypeIdState2', invoicesTypeIdState)
if (invoicesTypeIdState.value) { if (invoicesTypeIdState.value) {
const current = invoicesTypeIdState.originAsyncData.find(item => item.id === invoicesTypeIdState.value); const current = invoicesTypeIdState.originAsyncData.find(item => item.id === invoicesTypeIdState.value);
......
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