Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
ik_invoicing
Overview
Overview
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_frontend
ik_invoicing
Commits
061ed6d1
Commit
061ed6d1
authored
8 years ago
by
小明
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加帮助中心 data 页面
parent
bf3d7767
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
1 deletions
+63
-1
src/containers/Help/data.js
+45
-0
src/modules/dashboard/index.js
+1
-1
src/routes.js
+17
-0
No files found.
src/containers/Help/data.js
0 → 100644
View file @
061ed6d1
/*
* DataPage
*
* This is the first thing users see of our App, at the '/' route
*
* NOTE: while this component should technically be a stateless functional
* component (SFC), hot reloading does not currently support SFCs. If hot
* reloading is not a necessity for you then you can refactor it and remove
* the linting exception.
*/
import
React
,
{
Component
}
from
'react'
;
export
default
class
DataPage
extends
Component
{
// eslint-disable-line react/prefer-stateless-function
render
()
{
const
styles
=
{
width
:
"28px"
,
verticalAlign
:
"middle"
,
marginLeft
:
"3px"
,
marginRight
:
"3px"
,
display
:
"inline-block"
,
};
return
(
<
div
id
=
"mobile_help_data"
className
=
"ik-margin-horizontal-10"
>
<
h1
className
=
"ik-margin-top-15"
>
如何创建数据
<
/h1
>
<
h2
className
=
"ik-margin-top-15"
>
1
.
工作台上创建数据的入口
<
/h2
>
<
p
>
在工作台页面,点击右下角的
<
img
style
=
{
styles
}
src
=
"/assets/images/help/plus_icon.png"
/>
按钮,在弹出来的菜单里,就是创建数据的功能入口。可以新增采购入库单、新增销售出库单、新增其他入库单、新增其他出库单以及盘点。
<
/p
>
<
div
className
=
"ik-margin-vertical-5"
>
<
img
className
=
"img-responsive"
src
=
"/assets/images/help/data_01.png"
/>
<
/div
>
<
h2
className
=
"ik-margin-top-15"
>
2
.
列表页面创建数据的入口
<
/h2
>
<
p
>
列表页是指采购入库单据、销售出库单据等数据的列表页面。在这些列表页面,右上角有【新增】按钮,点击后即可新增该列表对应的数据类型。
<
/p
>
<
p
>
例如,在选择产品页面的右上角点击【新增】,则可以新增产品了
<
/p
>
<
div
className
=
"ik-margin-vertical-5"
>
<
img
className
=
"img-responsive"
src
=
"/assets/images/help/data_02.png"
/>
<
/div
>
<
/div
>
);
}
}
This diff is collapsed.
Click to expand it.
src/modules/dashboard/index.js
View file @
061ed6d1
...
...
@@ -6,7 +6,7 @@ class HomePage extends PureComponent { // eslint-disable-line react/prefer-state
const
config
=
{};
return
(
<
div
>
<
div
id
=
"mobile_dashboard_index"
>
<
DashboardIndex
org_id
=
{
1
}
dingtalk_config
=
{
config
}
...
...
This diff is collapsed.
Click to expand it.
src/routes.js
View file @
061ed6d1
...
...
@@ -101,6 +101,23 @@ export default function createRoutes(store) {
importModules
.
catch
(
errorLoading
);
},
},
{
path
:
'/help/data'
,
name
:
'helpData'
,
getComponent
(
nextState
,
cb
)
{
const
importModules
=
Promise
.
all
([
System
.
import
(
'containers/help/data'
),
]);
const
renderRoute
=
loadModule
(
cb
);
importModules
.
then
(([
component
])
=>
{
renderRoute
(
component
);
});
importModules
.
catch
(
errorLoading
);
},
}
];
}
This diff is collapsed.
Click to expand it.
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