Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄庭坚
jinfa-platform
Commits
a7d73538
Commit
a7d73538
authored
Mar 15, 2021
by
GuanHua
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://10.0.0.22:3000/lingxi/lingxi-business-paltform
into dev
parents
e1156ea8
3756c266
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
119 additions
and
21 deletions
+119
-21
env.js
env.js
+23
-0
package.json
package.json
+4
-1
global.less
src/global/styles/global.less
+17
-0
reset.less
src/global/styles/reset.less
+41
-6
addDirectChannel.tsx
src/pages/commodity/products/addDirectChannel.tsx
+1
-1
modifyDirectChannel.tsx
src/pages/commodity/products/modifyDirectChannel.tsx
+13
-5
addRepository.tsx
src/pages/repositories/addRepository.tsx
+6
-4
index.tsx
src/pages/transaction/components/orderPayModal/index.tsx
+8
-0
index.ts
...s/transaction/purchaseOrder/orderCollect/effects/index.ts
+3
-2
index.tsx
src/pages/transaction/purchaseOrder/orderCollect/index.tsx
+1
-1
useProductTable.tsx
...tion/purchaseOrder/orderCollect/model/useProductTable.tsx
+1
-0
useSelfTable.tsx
...action/purchaseOrder/readyPayOrder/model/useSelfTable.tsx
+1
-1
No files found.
env.js
View file @
a7d73538
...
@@ -117,4 +117,27 @@ module.exports = {
...
@@ -117,4 +117,27 @@ module.exports = {
forcePasv
:
true
forcePasv
:
true
})
})
},
},
v2
:
{
SITE_ID
:
'1'
,
BACK_GATEWAY
:
'http://10.0.0.17:8100'
,
USE_ROUTE_CONFIG
:
true
,
SOCKET_URL
:
'ws://10.0.0.17:8100'
,
ssh
:
JSON
.
stringify
({
user
:
"root"
,
// Password optional, prompted if none given
password
:
"123456"
,
host
:
"10.0.0.17"
,
port
:
22
,
localRoot
:
path
.
resolve
(
'./dist/'
),
remoteRoot
:
"/home/www/lingxi/lingxi-business-platform/dist/"
,
// include: ["*", "**/*"], // this would upload everything except dot files
include
:
[
"*"
],
// e.g. exclude sourcemaps, and ALL files in node_modules (including dot files)
// exclude: ["dist/**/*.map", "node_modules/**", "node_modules/**/.*", ".git/**"],
// delete ALL existing files at destination before uploading, if true
deleteRemote
:
true
,
// Passive mode is forced (EPSV command is not sent)
forcePasv
:
true
})
},
}
}
package.json
View file @
a7d73538
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
"upload:10"
:
"cross-env local=10 taskName=upload yarn scripts:build"
,
"upload:10"
:
"cross-env local=10 taskName=upload yarn scripts:build"
,
"upload:25"
:
"cross-env local=25 taskName=upload yarn scripts:build"
,
"upload:25"
:
"cross-env local=25 taskName=upload yarn scripts:build"
,
"upload:study"
:
"cross-env local=study taskName=upload yarn scripts:build"
,
"upload:study"
:
"cross-env local=study taskName=upload yarn scripts:build"
,
"upload:v2"
:
"cross-env local=v2 taskName=upload yarn scripts:build"
,
"api"
:
"god-ytt"
,
"api"
:
"god-ytt"
,
"scripts:build"
:
"node scripts/run"
,
"scripts:build"
:
"node scripts/run"
,
"scripts:build-yxc"
:
"node scripts/run http://yxc-web-demo.shushangyun.com/api"
,
"scripts:build-yxc"
:
"node scripts/run http://yxc-web-demo.shushangyun.com/api"
,
...
@@ -22,6 +23,7 @@
...
@@ -22,6 +23,7 @@
"build:all"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://lingxi-all.wg.shushangyun.com USE_ROUTE_CONFIG=false SOCKET_URL=ws://lingxi-all.wg.shushangyun.com yarn build"
,
"build:all"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://lingxi-all.wg.shushangyun.com USE_ROUTE_CONFIG=false SOCKET_URL=ws://lingxi-all.wg.shushangyun.com yarn build"
,
"build:10"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.0.10:8100 USE_ROUTE_CONFIG=false SOCKET_URL=ws://10.0.0.10:9400 yarn build"
,
"build:10"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.0.10:8100 USE_ROUTE_CONFIG=false SOCKET_URL=ws://10.0.0.10:9400 yarn build"
,
"build:study"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.1.207:8100 USE_ROUTE_CONFIG=false SOCKET_URL=ws://10.0.1.207:9400 yarn build"
,
"build:study"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.1.207:8100 USE_ROUTE_CONFIG=false SOCKET_URL=ws://10.0.1.207:9400 yarn build"
,
"build:v2"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.0.17:8100 USE_ROUTE_CONFIG=false SOCKET_URL=ws://10.0.0.17:9400 yarn build"
,
"postinstall"
:
"umi generate tmp"
,
"postinstall"
:
"umi generate tmp"
,
"prettier"
:
"prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'"
,
"prettier"
:
"prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'"
,
"test"
:
"umi-test"
,
"test"
:
"umi-test"
,
...
@@ -31,7 +33,8 @@
...
@@ -31,7 +33,8 @@
"start:url"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://lingxi-all.wg.shushangyun.com USE_ROUTE_CONFIG=true SOCKET_URL=ws://lingxi-all.wg.shushangyun.com yarn start"
,
"start:url"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://lingxi-all.wg.shushangyun.com USE_ROUTE_CONFIG=true SOCKET_URL=ws://lingxi-all.wg.shushangyun.com yarn start"
,
"start:10"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.0.10:8100 USE_ROUTE_CONFIG=true SOCKET_URL=ws://10.0.0.10:9400 yarn start"
,
"start:10"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.0.10:8100 USE_ROUTE_CONFIG=true SOCKET_URL=ws://10.0.0.10:9400 yarn start"
,
"start:study"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.1.207:8100 USE_ROUTE_CONFIG=false SOCKET_URL=ws://10.0.1.207:9400 yarn start"
,
"start:study"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.1.207:8100 USE_ROUTE_CONFIG=false SOCKET_URL=ws://10.0.1.207:9400 yarn start"
,
"start:25"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.0.25:8100 USE_ROUTE_CONFIG=true SOCKET_URL=ws://10.0.0.25:9400 yarn start"
"start:25"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.0.25:8100 USE_ROUTE_CONFIG=true SOCKET_URL=ws://10.0.0.25:9400 yarn start"
,
"start:v2"
:
"cross-env SITE_ID=1 BACK_GATEWAY=http://10.0.0.17:8100 USE_ROUTE_CONFIG=true SOCKET_URL=ws://10.0.0.17:9400 yarn start"
},
},
"lint-staged"
:
{
"lint-staged"
:
{
"*.{js,jsx,less,md,json}"
:
[
"*.{js,jsx,less,md,json}"
:
[
...
...
src/global/styles/global.less
View file @
a7d73538
...
@@ -358,3 +358,20 @@ a {
...
@@ -358,3 +358,20 @@ a {
}
}
}
}
}
}
// 重置步骤条顶部边距
.ant-steps-horizontal {
margin-top: 0 !important;
}
// 固定头部
// .ant-layout-header {
// position: fixed;
// top: 0;
// }
// .ant-pro-page-header-wrap-page-header-warp {
// position: fixed;
// top: 0;
// width: 100%;
// z-index: 8;
// }
src/global/styles/reset.less
View file @
a7d73538
...
@@ -10,10 +10,6 @@
...
@@ -10,10 +10,6 @@
margin: 8px auto 32px auto;
margin: 8px auto 32px auto;
}
}
.ant-page-header {
padding: 8px 24px;
}
.common_checkbox {
.common_checkbox {
&:hover,
&:hover,
...
@@ -225,6 +221,46 @@
...
@@ -225,6 +221,46 @@
padding: 16px;
padding: 16px;
}
}
// 覆写page-header-title
.ant-page-header {
padding: 4px 16px;
}
.ant-page-header-heading-title {
font-size: 16px;
}
// 覆写左边菜单
.ant-menu-item {
padding-left: 16px !important;
}
.ant-menu-submenu-title {
padding-left: 16px !important;
}
.anticon-border {
margin-right: 8px;
}
// 覆写page 报个上部操作按钮样式
.mega-layout-item-content {
.ant-space {
.ant-space-item {
margin-right: 16px !important;
}
}
}
.god-table-content {
.ant-table-wrapper {
.ant-spin-nested-loading {
.ant-spin-container {
.ant-pagination {
margin: 16px 0 0 0;
}
}
}
}
}
}
}
.ant-descriptions-item-label {
.ant-descriptions-item-label {
...
@@ -238,4 +274,4 @@
...
@@ -238,4 +274,4 @@
.ant-form-item-label > label {
.ant-form-item-label > label {
font-size: 12px !important;
font-size: 12px !important;
color: #909399 !important;
color: #909399 !important;
}
}
\ No newline at end of file
src/pages/commodity/products/addDirectChannel.tsx
View file @
a7d73538
...
@@ -52,7 +52,7 @@ const AddDirectChannel:React.FC<{}> = (props) => {
...
@@ -52,7 +52,7 @@ const AddDirectChannel:React.FC<{}> = (props) => {
let
params
:
any
=
{}
let
params
:
any
=
{}
console
.
log
(
values
,
'vvv'
)
console
.
log
(
values
,
'vvv'
)
values
.
map
((
item
,
index
)
=>
{
values
.
map
((
item
,
index
)
=>
{
if
(
!
item
?.
carriage
Type
)
if
(
!
item
.
delivery
Type
)
params
=
{
...
params
,
...
item
}
params
=
{
...
params
,
...
item
}
else
else
params
.
logistics
=
{
...
item
}
params
.
logistics
=
{
...
item
}
...
...
src/pages/commodity/products/modifyDirectChannel.tsx
View file @
a7d73538
...
@@ -123,14 +123,22 @@ const ModifyDirectChannel:React.FC<{}> = () => {
...
@@ -123,14 +123,22 @@ const ModifyDirectChannel:React.FC<{}> = () => {
// 获取商品规格列表
// 获取商品规格列表
const
fetchSpecData
=
()
=>
{
const
fetchSpecData
=
()
=>
{
setLoading
(
true
)
setLoading
(
true
)
PublicApi
.
getProductChannelCommodityGetCommodityUnitPriceByChannel
({
id
:
history
.
location
.
query
.
id
}).
then
(
res
=>
{
console
.
log
(
priceTableData
,
'priceTableData'
)
PublicApi
.
postProductChannelCommodityGetCommodityUnitPriceByChannel
({
id
:
history
.
location
.
query
.
id
,
idList
:
priceTableData
.
map
(
item
=>
item
.
id
)
},
{
ctlType
:
"none"
}).
then
(
res
=>
{
const
{
data
}
=
res
const
{
data
}
=
res
// let hasIds = priceTableData.map(item => item.id)
// let hasIds = priceTableData.map(item => item.id)
// setOriginHasIds(hasIds)
// setOriginHasIds(hasIds)
let
_data
=
data
.
filter
(
item
=>
!
originHasIds
.
includes
(
item
.
id
))
// let _data = data.filter(item => !originHasIds.includes(item.id))
setOriginTableData
(
_data
)
setOriginTableData
(
data
)
if
(
_data
.
length
>
0
)
if
(
data
.
length
>
0
)
{
structureTable
(
_data
)
structureTable
(
data
)
}
else
{
setLoading
(
false
)
structureTable
([])
}
})
})
}
}
...
...
src/pages/repositories/addRepository.tsx
View file @
a7d73538
...
@@ -46,10 +46,12 @@ const AddRepository:React.FC<{}> = (props) => {
...
@@ -46,10 +46,12 @@ const AddRepository:React.FC<{}> = (props) => {
params
[
'warehouseName'
]
=
prevState
.
props
.
enum
.
filter
((
item
:
any
)
=>
item
.
value
===
prevState
.
value
)[
0
][
'label'
]
params
[
'warehouseName'
]
=
prevState
.
props
.
enum
.
filter
((
item
:
any
)
=>
item
.
value
===
prevState
.
value
)[
0
][
'label'
]
}
}
})
})
await
PublicApi
.
postWarehouseFreightSpaceAdd
(
params
)
let
res
=
await
PublicApi
.
postWarehouseFreightSpaceAdd
(
params
)
setTimeout
(()
=>
{
if
(
res
.
code
===
1000
)
{
history
.
goBack
(
-
1
)
setTimeout
(()
=>
{
},
1000
)
history
.
goBack
(
-
1
)
},
1000
)
}
}
}
}
}
...
...
src/pages/transaction/components/orderPayModal/index.tsx
View file @
a7d73538
...
@@ -91,6 +91,7 @@ const OrderPayModal: React.FC<OrderPayModalProps> = (props) => {
...
@@ -91,6 +91,7 @@ const OrderPayModal: React.FC<OrderPayModalProps> = (props) => {
const
[
payOnReceived
,
setPayOnReceived
]
=
useState
<
boolean
>
(
false
)
// 是否要禁用到付方式
const
[
payOnReceived
,
setPayOnReceived
]
=
useState
<
boolean
>
(
false
)
// 是否要禁用到付方式
const
[
blankAccountInfo
,
setBlankAccountInfo
]
=
useState
<
any
>
()
const
[
blankAccountInfo
,
setBlankAccountInfo
]
=
useState
<
any
>
()
const
{
run
,
loading
}
=
useHttpRequest
(
PublicApi
.
postOrderPendingOrderPay
)
const
{
run
,
loading
}
=
useHttpRequest
(
PublicApi
.
postOrderPendingOrderPay
)
const
[
settleAccountsError
,
setSettleAccountsError
]
=
useState
<
boolean
>
(
true
)
useEffect
(()
=>
{
useEffect
(()
=>
{
if
(
currentRef
)
{
if
(
currentRef
)
{
...
@@ -178,6 +179,9 @@ const OrderPayModal: React.FC<OrderPayModalProps> = (props) => {
...
@@ -178,6 +179,9 @@ const OrderPayModal: React.FC<OrderPayModalProps> = (props) => {
PublicApi
.
getSettleAccountsCorporateAccountConfig
({
memberId
:
data
.
supplyMembersId
,
memberRoleId
:
data
.
supplyMembersRoleId
}).
then
(
res
=>
{
PublicApi
.
getSettleAccountsCorporateAccountConfig
({
memberId
:
data
.
supplyMembersId
,
memberRoleId
:
data
.
supplyMembersRoleId
}).
then
(
res
=>
{
if
(
res
.
code
===
1000
)
{
if
(
res
.
code
===
1000
)
{
setBlankAccountInfo
(
res
.
data
)
setBlankAccountInfo
(
res
.
data
)
setSettleAccountsError
(
true
)
}
else
{
setSettleAccountsError
(
false
)
}
}
})
})
}
else
if
(
checked
.
id
===
6
)
{
// 授信额度支付
}
else
if
(
checked
.
id
===
6
)
{
// 授信额度支付
...
@@ -310,6 +314,10 @@ const OrderPayModal: React.FC<OrderPayModalProps> = (props) => {
...
@@ -310,6 +314,10 @@ const OrderPayModal: React.FC<OrderPayModalProps> = (props) => {
params
.
payOrderUrls
=
payOrderUrls
.
join
(
','
)
params
.
payOrderUrls
=
payOrderUrls
.
join
(
','
)
}
}
if
(
!
settleAccountsError
)
{
return
message
.
error
(
'请先完成对公账户配置'
)
}
const
res
=
await
run
(
params
,
mobilePayFlag
.
current
===
4
?
{
ctlType
:
"none"
}
:
null
)
const
res
=
await
run
(
params
,
mobilePayFlag
.
current
===
4
?
{
ctlType
:
"none"
}
:
null
)
if
(
res
.
code
===
1000
)
{
if
(
res
.
code
===
1000
)
{
if
(
mobilePayFlag
.
current
!==
4
)
{
// 非微信
if
(
mobilePayFlag
.
current
!==
4
)
{
// 非微信
...
...
src/pages/transaction/purchaseOrder/orderCollect/effects/index.ts
View file @
a7d73538
...
@@ -206,7 +206,8 @@ export const useOrderFormInitEffect = (ctx: ISchemaFormActions | ISchemaFormAsyn
...
@@ -206,7 +206,8 @@ export const useOrderFormInitEffect = (ctx: ISchemaFormActions | ISchemaFormAsyn
},
{}),
},
{}),
isMemberPrice
:
v
.
isMemberPrice
,
isMemberPrice
:
v
.
isMemberPrice
,
purchaseCount
:
v
.
count
,
purchaseCount
:
v
.
count
,
money
:
v
.
memberDiscount
?
(
v
.
count
*
1000
*
v
.
unitPrice
*
100
*
v
.
memberDiscount
*
100
)
/
10000000
:
(
v
.
count
*
1000
*
v
.
unitPrice
*
100
)
/
100000
,
// money: v.memberDiscount ? (v.count*1000 * v.unitPrice*100 * v.memberDiscount*100)/10000000 : (v.count*1000 * v.unitPrice*100)/100000,
money
:
(
v
.
count
*
1000
*
v
.
unitPrice
*
100
)
/
100000
,
productId
:
v
.
id
,
productId
:
v
.
id
,
channelProductId
:
v
.
channelProductId
,
channelProductId
:
v
.
channelProductId
,
memberId
:
initValue
.
supplyMembersId
,
// 添加 memberId, memberRoleId 字段
memberId
:
initValue
.
supplyMembersId
,
// 添加 memberId, memberRoleId 字段
...
@@ -226,7 +227,7 @@ export const useOrderFormInitEffect = (ctx: ISchemaFormActions | ISchemaFormAsyn
...
@@ -226,7 +227,7 @@ export const useOrderFormInitEffect = (ctx: ISchemaFormActions | ISchemaFormAsyn
// ctx.setFormState(state => {
// ctx.setFormState(state => {
// state.remoteDataFn = fn
// state.remoteDataFn = fn
// })
// })
console
.
log
(
initValue
,
'initValue'
)
fn
(
initValue
)
fn
(
initValue
)
}
}
...
...
src/pages/transaction/purchaseOrder/orderCollect/index.tsx
View file @
a7d73538
...
@@ -321,7 +321,7 @@ const PurchaseOrderDetail:React.FC<PurchaseOrderDetailProps> = (props) => {
...
@@ -321,7 +321,7 @@ const PurchaseOrderDetail:React.FC<PurchaseOrderDetailProps> = (props) => {
params
.
orderProductRequests
=
params
.
orderProductRequests
.
map
(
item
=>
{
params
.
orderProductRequests
=
params
.
orderProductRequests
.
map
(
item
=>
{
let
logistics
:
any
=
{
let
logistics
:
any
=
{
...
item
.
logistics
,
...
item
.
logistics
,
render
:
JSON
.
stringify
(
typeof
item
.
logistics
.
render
===
"object"
?
item
.
logistics
.
render
:
item
.
logistics
.
render
.
replace
(
/
\"
/g
,
''
))
render
:
JSON
.
stringify
(
typeof
item
.
logistics
.
render
===
"object"
?
item
.
logistics
.
render
:
(
item
.
logistics
?.
render
?
item
.
logistics
.
render
.
replace
(
/
\"
/g
,
''
)
:
{}
))
};
};
return
{
return
{
...
item
,
...
item
,
...
...
src/pages/transaction/purchaseOrder/orderCollect/model/useProductTable.tsx
View file @
a7d73538
...
@@ -85,6 +85,7 @@ export const useProductTable = (ctx: ISchemaFormActions | ISchemaFormAsyncAction
...
@@ -85,6 +85,7 @@ export const useProductTable = (ctx: ISchemaFormActions | ISchemaFormAsyncAction
// 商品行数变动 清空之前的支付信息
// 商品行数变动 清空之前的支付信息
if
(
pageStatus
===
PageStatus
.
ADD
)
{
if
(
pageStatus
===
PageStatus
.
ADD
)
{
console
.
log
(
'Add'
)
let
paymentInfo
=
ctx
.
getFieldValue
(
'paymentInformationResponses'
).
map
(
item
=>
{
let
paymentInfo
=
ctx
.
getFieldValue
(
'paymentInformationResponses'
).
map
(
item
=>
{
let
_item
=
{...
item
}
let
_item
=
{...
item
}
delete
_item
.
channel
delete
_item
.
channel
...
...
src/pages/transaction/purchaseOrder/readyPayOrder/model/useSelfTable.tsx
View file @
a7d73538
...
@@ -141,7 +141,7 @@ export const useSelfTable = () => {
...
@@ -141,7 +141,7 @@ export const useSelfTable = () => {
}
}
</Col> */
}
</Col> */
}
</
Row
>
</
Row
>
<
Progress
percent=
{
Math
.
ceil
(
record
.
currentPayments
/
record
.
sum
)
}
showInfo=
{
false
}
/>
<
Progress
percent=
{
Number
(
record
.
currentPayments
/
record
.
sum
).
toFixed
(
2
)
*
100
}
showInfo=
{
false
}
/>
</>
</>
},
},
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment