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
linweijiong
jinfa-platform
Commits
070c06c2
Commit
070c06c2
authored
Jul 31, 2020
by
tjy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增交易能力-进销存(仓库、单据类型、单据、库存)
parent
9c215002
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
173 additions
and
1 deletion
+173
-1
base.config.json
config/base.config.json
+0
-0
index.ts
config/routes/index.ts
+2
-1
tranactionRoute.ts
config/routes/tranactionRoute.ts
+43
-0
menu.ts
src/locales/zh-CN/menu.ts
+8
-0
index.less
src/pages/transaction/stockSellStorage/bills/index.less
+0
-0
index.tsx
src/pages/transaction/stockSellStorage/bills/index.tsx
+30
-0
index.less
src/pages/transaction/stockSellStorage/billsType/index.less
+0
-0
index.tsx
src/pages/transaction/stockSellStorage/billsType/index.tsx
+30
-0
index.less
src/pages/transaction/stockSellStorage/inventory/index.less
+0
-0
index.tsx
src/pages/transaction/stockSellStorage/inventory/index.tsx
+30
-0
index.less
src/pages/transaction/stockSellStorage/warehouse/index.less
+0
-0
index.tsx
src/pages/transaction/stockSellStorage/warehouse/index.tsx
+30
-0
No files found.
config/base.config.json
View file @
070c06c2
This diff is collapsed.
Click to expand it.
config/routes/index.ts
View file @
070c06c2
...
...
@@ -7,9 +7,10 @@
import
CommodityRoute
from
'./commodityRoute'
// 商品能力路由
import
MemberRoute
from
'./memberRoute'
// 会员能力路由
import
ShopRoute
from
'./shopRoute'
// 店铺能力路由
import
TranactionRoute
from
'./tranactionRoute'
// 交易能力路由
import
LogisticsRoute
from
'./logisticsRoutes'
// 物流能力路由
const
routes
=
[
CommodityRoute
,
MemberRoute
,
ShopRoute
,
LogisticsRoute
]
const
routes
=
[
CommodityRoute
,
MemberRoute
,
ShopRoute
,
TranactionRoute
,
LogisticsRoute
]
const
memberCenterRoute
=
{
path
:
'/memberCenter'
,
...
...
config/routes/tranactionRoute.ts
0 → 100644
View file @
070c06c2
const
TranactionRoute
=
{
path
:
'/memberCenter/tranactionAbility'
,
name
:
'tranactionAbility'
,
key
:
'tranactionAbility'
,
icon
:
'smile'
,
routes
:
[
{
path
:
'/memberCenter/tranactionAbility/stockSellStorage'
,
name
:
'stockSellStorage'
,
key
:
'stockSellStorage'
,
routes
:
[
{
path
:
'/memberCenter/tranactionAbility/stockSellStorage/warehouse'
,
name
:
'warehouse'
,
key
:
'warehouse'
,
component
:
'@/pages/transaction/stockSellStorage/warehouse/index'
,
},
{
path
:
'/memberCenter/tranactionAbility/stockSellStorage/billsType'
,
name
:
'billsType'
,
key
:
'billsType'
,
component
:
'@/pages/transaction/stockSellStorage/billsType/index'
,
},
{
path
:
'/memberCenter/tranactionAbility/stockSellStorage/bills'
,
name
:
'bills'
,
key
:
'bills'
,
component
:
'@/pages/transaction/stockSellStorage/bills/index'
,
},
{
path
:
'/memberCenter/tranactionAbility/stockSellStorage/inventory'
,
name
:
'inventory'
,
key
:
'inventory'
,
component
:
'@/pages/transaction/stockSellStorage/inventory/index'
,
},
]
}
]
}
export
default
TranactionRoute
src/locales/zh-CN/menu.ts
View file @
070c06c2
...
...
@@ -65,6 +65,14 @@ export default {
'menu.shopAbility.shopInfoManage'
:
'店铺信息'
,
'menu.shopAbility.shopTemplate'
:
'店铺装修模板'
,
// 交易能力
'menu.tranactionAbility'
:
'交易'
,
'menu.tranactionAbility.stockSellStorage'
:
'进销存'
,
'menu.tranactionAbility.stockSellStorage.warehouse'
:
'仓库'
,
'menu.tranactionAbility.stockSellStorage.billsType'
:
'单据类型'
,
'menu.tranactionAbility.stockSellStorage.bills'
:
'单据'
,
'menu.tranactionAbility.stockSellStorage.inventory'
:
'库存'
,
//物流能力
'menu.logisticsAbility'
:
'物流'
,
'menu.logisticsAbility.logistics'
:
'物流管理'
,
...
...
src/pages/transaction/stockSellStorage/bills/index.less
0 → 100644
View file @
070c06c2
src/pages/transaction/stockSellStorage/bills/index.tsx
0 → 100644
View file @
070c06c2
import
React
,
{
useState
,
useEffect
,
useRef
}
from
'react'
;
import
{
history
}
from
'umi'
;
import
{
Tooltip
,
Input
,
Select
,
Button
,
Card
,
Dropdown
,
Menu
,
Row
,
Col
,
Popconfirm
,
}
from
'antd'
;
import
{
PlusOutlined
,
EyeOutlined
,
UpOutlined
,
DeleteOutlined
,
DownOutlined
,
}
from
'@ant-design/icons'
;
import
{
StandardTable
}
from
'god'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
import
style
from
'./index.less'
;
const
Bills
:
React
.
FC
<
{}
>
=
()
=>
{
return
<
div
>
Bills
</
div
>;
};
export
default
Bills
;
src/pages/transaction/stockSellStorage/billsType/index.less
0 → 100644
View file @
070c06c2
src/pages/transaction/stockSellStorage/billsType/index.tsx
0 → 100644
View file @
070c06c2
import
React
,
{
useState
,
useEffect
,
useRef
}
from
'react'
;
import
{
history
}
from
'umi'
;
import
{
Tooltip
,
Input
,
Select
,
Button
,
Card
,
Dropdown
,
Menu
,
Row
,
Col
,
Popconfirm
,
}
from
'antd'
;
import
{
PlusOutlined
,
EyeOutlined
,
UpOutlined
,
DeleteOutlined
,
DownOutlined
,
}
from
'@ant-design/icons'
;
import
{
StandardTable
}
from
'god'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
import
style
from
'./index.less'
;
const
BillsType
:
React
.
FC
<
{}
>
=
()
=>
{
return
<
div
>
BillsType
</
div
>;
};
export
default
BillsType
;
src/pages/transaction/stockSellStorage/inventory/index.less
0 → 100644
View file @
070c06c2
src/pages/transaction/stockSellStorage/inventory/index.tsx
0 → 100644
View file @
070c06c2
import
React
,
{
useState
,
useEffect
,
useRef
}
from
'react'
;
import
{
history
}
from
'umi'
;
import
{
Tooltip
,
Input
,
Select
,
Button
,
Card
,
Dropdown
,
Menu
,
Row
,
Col
,
Popconfirm
,
}
from
'antd'
;
import
{
PlusOutlined
,
EyeOutlined
,
UpOutlined
,
DeleteOutlined
,
DownOutlined
,
}
from
'@ant-design/icons'
;
import
{
StandardTable
}
from
'god'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
import
style
from
'./index.less'
;
const
Inventory
:
React
.
FC
<
{}
>
=
()
=>
{
return
<
div
>
Inventory
</
div
>;
};
export
default
Inventory
;
src/pages/transaction/stockSellStorage/warehouse/index.less
0 → 100644
View file @
070c06c2
src/pages/transaction/stockSellStorage/warehouse/index.tsx
0 → 100644
View file @
070c06c2
import
React
,
{
useState
,
useEffect
,
useRef
}
from
'react'
;
import
{
history
}
from
'umi'
;
import
{
Tooltip
,
Input
,
Select
,
Button
,
Card
,
Dropdown
,
Menu
,
Row
,
Col
,
Popconfirm
,
}
from
'antd'
;
import
{
PlusOutlined
,
EyeOutlined
,
UpOutlined
,
DeleteOutlined
,
DownOutlined
,
}
from
'@ant-design/icons'
;
import
{
StandardTable
}
from
'god'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
import
style
from
'./index.less'
;
const
WareHouse
:
React
.
FC
<
{}
>
=
()
=>
{
return
<
div
>
warehouse
</
div
>;
};
export
default
WareHouse
;
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