content.jsx 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. import React from 'react';
  2. import { Spin, Button, Tabs, Table, message, Modal,Tooltip } from 'antd';
  3. import ajax from 'jquery/src/ajax/xhr.js'
  4. import $ from 'jquery/src/ajax';
  5. import '../content.less';
  6. import './content.less';
  7. import LeftTab from './leftTab.jsx';
  8. const TabPane = Tabs.TabPane;
  9. const MessageModal = React.createClass({
  10. getInitialState() {
  11. return {
  12. newVisible: false,
  13. loading: false,
  14. pagination: {
  15. defaultCurrent: 1,
  16. defaultPageSize: 10,
  17. showQuickJumper: true,
  18. pageSize: 10,
  19. onChange: function (page) {
  20. this.loadReaded(page);
  21. }.bind(this),
  22. showTotal: function (total) {
  23. return '共' + total + '条数据';
  24. }
  25. },
  26. UnreadPagination: {
  27. defaultCurrent: 1,
  28. defaultPageSize: 10,
  29. showQuickJumper: true,
  30. pageSize: 9999,
  31. onChange: function (page) {
  32. this.loadUnread(page);
  33. }.bind(this),
  34. showTotal: function (total) {
  35. return '共' + total + '条数据';
  36. }
  37. },
  38. columns: [
  39. {
  40. title: '编号',
  41. dataIndex: 'key',
  42. key: 'key'
  43. }, {
  44. title: '类型',
  45. dataIndex: 'noticeType',
  46. key: 'noticeType',
  47. render: (text, record) => {
  48. // return <div>{
  49. // text<8?<a href='#' onClick={(e) =>{ e.stopPropagation(),this.setStore(record)}}> {record.noticeTypeName} </a >:
  50. // <span>{record.noticeTypeName}</span>
  51. // }</div>
  52. //return <a href='#' onClick={(e) =>{ e.stopPropagation(),this.setStore(record)}}> {record.noticeTypeName} </a >
  53. return(<span>{record.noticeTypeName}</span>)
  54. }
  55. }, {
  56. title: '时间',
  57. dataIndex: 'createTimeFormattedDate',
  58. key: 'createTimeFormattedDate'
  59. }, {
  60. title: '内容',
  61. dataIndex: 'content',
  62. key: 'content',
  63. render: (text, record) => {
  64. return(
  65. <Tooltip placement="topLeft" title={text}>
  66. <div style={{
  67. maxWidth: '687px',
  68. textOverflow: "ellipsis",
  69. whiteSpace: "nowrap",
  70. overflow: 'hidden',
  71. }}>
  72. {text}
  73. </div>
  74. </Tooltip>
  75. )
  76. }
  77. },
  78. // {
  79. // title: '公司',
  80. // dataIndex: 'unitName',
  81. // key: 'unitName',
  82. // }, {
  83. // title: '业务员',
  84. // dataIndex: 'principle',
  85. // key: 'principle',
  86. // }
  87. ],
  88. data: []
  89. };
  90. },
  91. //主菜单请求
  92. mainMenu(){
  93. this.setState({
  94. loading:true
  95. });
  96. $.ajax({
  97. method: "get",
  98. dataType: "json",
  99. crossDomain: false,
  100. url: globalConfig.context + "/api/admin/selectNavList",
  101. data: {
  102. },
  103. success:function(data){
  104. if (!data.data) {
  105. if (data.error && data.error.length) {
  106. message.warning(data.error[0].message);
  107. return;
  108. };
  109. };
  110. this.setState({
  111. menu:data.data
  112. });
  113. }.bind(this),
  114. }).always(function(data){
  115. this.setState({
  116. loading:false
  117. })
  118. }.bind(this))
  119. },
  120. finId(text){
  121. var data=this.state.menu||[];
  122. var rid='';
  123. switch(text) {
  124. case 1:
  125. data.map(function(nub, index) {
  126. if(nub.url.indexOf('demand') != -1) {
  127. rid = nub.id;
  128. }
  129. });
  130. break;
  131. case 2:
  132. data.map(function(nub, index) {
  133. if(nub.url.indexOf('demand') != -1) {
  134. rid = nub.id;
  135. }
  136. });
  137. break;
  138. case 3:
  139. data.map(function(nub, index) {
  140. if(nub.url.indexOf('achievement') != -1) {
  141. rid = nub.id;
  142. }
  143. });
  144. break;
  145. case 4:
  146. data.map(function(nub, index) {
  147. if(nub.url.indexOf('achievement') != -1) {
  148. rid = nub.id;
  149. }
  150. });
  151. break;
  152. case 5:
  153. data.map(function(nub, index) {
  154. if(nub.url.indexOf('order') != -1) {
  155. rid = nub.id;
  156. }
  157. });
  158. break;
  159. case 6:
  160. data.map(function(nub, index) {
  161. if(nub.url.indexOf('order') != -1) {
  162. rid = nub.id;
  163. }
  164. });
  165. break;
  166. case 7:
  167. data.map(function(nub, index) {
  168. if(nub.url.indexOf('servicesManage') != -1) {
  169. rid = nub.id;
  170. }
  171. });
  172. break;
  173. default:
  174. rid='';
  175. }
  176. return rid;
  177. },
  178. //跳转详情
  179. setStore(record){
  180. localStorage.setItem('newData',{});
  181. let ids = record.noticeType;
  182. let rid = this.finId(ids) || "";
  183. var urls='',
  184. dataJson={};
  185. switch (ids) {
  186. case 1:
  187. urls = "/admin/demand.html?rid=" + rid +"#techDemandAudit";
  188. dataJson = {
  189. "id":record.uid,
  190. //"id":"3f93588b-332e-4353-bbfd-f1451b4b390c",
  191. "dataCategory":"0"
  192. };
  193. break;
  194. case 2:
  195. urls = "/admin/demand.html?rid=" + rid+ "#techDemandPublish";
  196. dataJson = {
  197. "id":record.uid,
  198. //"id":"40f77e32-29fa-4a85-a6f0-7c4986bdc5e3",
  199. "dataCategory":'1'
  200. };
  201. break ;
  202. case 3:
  203. urls = "/admin/achievement.html?rid=" + rid +"#techAchievementAudit";
  204. dataJson = {
  205. "id":record.uid,
  206. //"id":"f09d5c08-4a8b-48a6-9753-86006f1a53cb",
  207. "ownerType":'1'
  208. };
  209. break ;
  210. case 4:
  211. urls = "/admin/achievement.html?rid=" + rid + "#techAchievementPublish";
  212. dataJson = {
  213. "id":record.uid,
  214. //"id":"953c9ef7-6cf6-4ab7-af89-c01521998fed",
  215. "ownerType":'1'
  216. };
  217. break ;
  218. case 5:
  219. urls = "/admin/order.html?rid=" + rid + "#myService";
  220. dataJson = {
  221. "orderNo":record.orderNo
  222. //"orderNo":"175557414077480960"
  223. };
  224. break ;
  225. case 6:
  226. urls = "/admin/order.html?rid=" + rid + "#mySettlement";
  227. dataJson = {
  228. "orderNo":record.orderNo
  229. //"orderNo":"180714111314051072"
  230. };
  231. break ;
  232. case 7:
  233. urls = "/admin/servicesManage/projectOrder.html?rid=" + rid + "#projectManage";
  234. dataJson = {
  235. //"id":record.id,
  236. "id":"69e2d8ca984240a4b9c90daac69fe5e3",
  237. "buyerType":"1"
  238. };
  239. break ;
  240. default :
  241. urls:'#';
  242. dataJson = {};
  243. };
  244. console.log(rid);
  245. if(rid){
  246. var data = dataJson;
  247. var newData = JSON.stringify(data);
  248. localStorage.setItem('newData',newData);
  249. window.location.href = globalConfig.context +urls;
  250. }
  251. },
  252. loadReaded(pageNo) {
  253. this.state.data = [];
  254. this.setState({
  255. loading: true
  256. });
  257. $.ajax({
  258. method: "get",
  259. dataType: "json",
  260. crossDomain: false,
  261. url: globalConfig.context + "/api/admin/notice/readed",
  262. data: {
  263. pageNo: pageNo || 1,
  264. pageSize: this.state.pagination.pageSize,
  265. }
  266. }).done((data) => {
  267. if (!data.data) {
  268. if (data.error && data.error.length) {
  269. message.warning(data.error[0].message);
  270. return;
  271. };
  272. };
  273. this.state.data = [];
  274. for (let i = 0; i < data.data.list.length; i++) {
  275. let thisdata = data.data.list[i];
  276. this.state.data.push({
  277. key: i + 1,
  278. id: thisdata.id,
  279. rid: thisdata.rid,
  280. uid: thisdata.uid,
  281. aid: thisdata.aid,
  282. noticeType: thisdata.noticeType,
  283. year: thisdata.year,
  284. noticeTypeName: thisdata.noticeTypeName,
  285. content: thisdata.content,
  286. createTime: thisdata.createTime,
  287. createTimeFormattedDate: thisdata.createTimeFormattedDate,
  288. principle: thisdata.principle,
  289. unitName: thisdata.unitName
  290. });
  291. };
  292. this.state.pagination.current = data.data.pageNo;
  293. this.state.pagination.total = data.data.totalCount;
  294. this.setState({
  295. dataSource: this.state.data,
  296. pagination: this.state.pagination
  297. });
  298. }).always(function () {
  299. this.setState({
  300. loading: false
  301. });
  302. }.bind(this));
  303. },
  304. loadUnread(pageNo) {
  305. this.state.data = [];
  306. this.setState({
  307. loading: true
  308. });
  309. $.ajax({
  310. method: "get",
  311. dataType: "json",
  312. crossDomain: false,
  313. url: globalConfig.context + "/api/admin/notice/unread",
  314. data: {
  315. pageNo: pageNo || 1,
  316. pageSize: this.state.UnreadPagination.pageSize,
  317. }
  318. }).done((data) => {
  319. if (!data.data) {
  320. if (data.error && data.error.length) {
  321. message.warning(data.error[0].message);
  322. return;
  323. };
  324. };
  325. this.state.data = [];
  326. for (let i = 0; i < data.data.list.length; i++) {
  327. let thisdata = data.data.list[i];
  328. this.state.data.push({
  329. key: i + 1,
  330. id: thisdata.id,
  331. rid: thisdata.rid,
  332. uid: thisdata.uid,
  333. aid: thisdata.aid,
  334. noticeType: thisdata.noticeType,
  335. year: thisdata.year,
  336. noticeTypeName: thisdata.noticeTypeName,
  337. content: thisdata.content,
  338. createTime: thisdata.createTime,
  339. createTimeFormattedDate: thisdata.createTimeFormattedDate,
  340. principle: thisdata.principle,
  341. unitName: thisdata.unitName
  342. });
  343. };
  344. this.state.UnreadPagination.current = data.data.pageNo;
  345. this.state.UnreadPagination.total = data.data.totalCount;
  346. if(data.data.list.length) {
  347. this.setState({
  348. newVisible: true
  349. });
  350. }
  351. this.setState({
  352. unreadData: this.state.data,
  353. UnreadPagination: this.state.UnreadPagination
  354. });
  355. }).always(function () {
  356. this.setState({
  357. loading: false,
  358. });
  359. }.bind(this));
  360. },
  361. componentWillMount() {
  362. this.loadReaded();
  363. this.loadUnread();
  364. this.mainMenu();
  365. },
  366. handleOk() {
  367. this.setState({
  368. newVisible: false
  369. });
  370. },
  371. render() {
  372. return (
  373. <div className="set-content">
  374. <div className="set-title">
  375. <span>信息中心</span>
  376. </div>
  377. <Spin spinning={this.state.loading} className="spin-box">
  378. <Tabs defaultActiveKey="1">
  379. <Tabs.TabPane tab="新信息" key="1">
  380. <Table
  381. columns={this.state.columns}
  382. dataSource={this.state.unreadData}
  383. pagination={this.state.UnreadPagination}
  384. />
  385. </Tabs.TabPane>
  386. <Tabs.TabPane tab="已读信息" key="2">
  387. <Table
  388. columns={this.state.columns}
  389. dataSource={this.state.dataSource}
  390. pagination={this.state.pagination}
  391. />
  392. </Tabs.TabPane>
  393. </Tabs>
  394. </Spin>
  395. <Modal
  396. maskClosable={false}
  397. style={{ position: "relative" }}
  398. title="消息提醒"
  399. visible={this.state.newVisible}
  400. width={1000}
  401. closable={false}
  402. footer={null}
  403. >
  404. <Table
  405. columns={this.state.columns}
  406. dataSource={this.state.unreadData}
  407. pagination={false}
  408. />
  409. <Button
  410. onClick={this.handleOk}
  411. type={"primary"}
  412. style={{
  413. position: "relative",
  414. left: "50%",
  415. transform: "translateX(-50%)",
  416. bottom: -10
  417. }}
  418. >
  419. 我已阅读以上信息
  420. </Button>
  421. </Modal>
  422. </div>
  423. );
  424. }
  425. });
  426. const Content = React.createClass({
  427. getInitialState() {
  428. return {
  429. loading: false,
  430. component:'<div></div>'
  431. };
  432. },
  433. getKey(key){
  434. switch(key){
  435. case 'normal':
  436. require.ensure([], () => {
  437. this.setState({
  438. component: <MessageModal />,
  439. });
  440. });
  441. break;
  442. case "contacts":
  443. let Module = require('./contacts/index').default;
  444. require.ensure([], () => {
  445. this.setState({
  446. component: <Module />,
  447. });
  448. });
  449. break;
  450. default:
  451. require.ensure([], () => {
  452. let Module = require('../module').default;
  453. this.setState({
  454. component:<Module />
  455. });
  456. });
  457. }
  458. window.location.hash=key;
  459. },
  460. componentWillMount() {
  461. if (window.location.hash) {
  462. this.getKey((window.location.hash).slice(1));
  463. } else {
  464. this.getKey('normal');
  465. };
  466. },
  467. render() {
  468. return (
  469. <div className="manage-content">
  470. <LeftTab handlekey={this.getKey} />
  471. <div className="content-right">
  472. <Spin spinning={this.state.loading} className='spin-box'>
  473. <div className="index-content">
  474. {this.state.component}
  475. </div>
  476. </Spin>
  477. </div>
  478. </div>
  479. )
  480. }
  481. });
  482. export default Content;
  483. // <div className="index-content">
  484. // <div className="index-userdata clearfix">
  485. // <p className="acc-title">{this.state.number}</p>
  486. // <div className="userdata-img">
  487. // <img src={globalConfig.staticHost + "/upload" + this.state.personPortraitUrl} alt="" />
  488. // </div>
  489. // <div className="userdata-content">
  490. // {(() => {
  491. // switch (userData.lvl || this.state.userlvl) {
  492. // case '0':
  493. // return <p className="userdata-lvl">等级:<span>LV1</span> 普通用户</p>;
  494. // case '1':
  495. // return <p className="userdata-lvl">等级:<span>LV2</span> 已认证用户</p>;
  496. // };
  497. // })()}
  498. // <p>完善资料 {this.state.per}% ,<a href="./set.html">继续完善</a>,有助于提高您的资信</p>
  499. // <p className="userdata-relate" style={{ 'display': 'none' }}>
  500. // <Button className="relateqq"><img src={qq} alt="" /> QQ账号登录</Button>
  501. // <Button className="relateweibo"><img src={weibo} alt="" />微博账号登录</Button>
  502. // <Button className="relateweixin"><img src={weixin} alt="" />微信账号登录</Button>
  503. // </p>
  504. // <div className="userdata-follow">已有<a href="">{this.state.follow}</a>人关注你</div>
  505. // </div>
  506. // </div>
  507. // <div className="index-record">
  508. // <p className="acc-title">我的轨迹</p>
  509. // <ul className="record-list clearfix">
  510. // <li>技术成果:<a href="">{this.state.chengguo}</a>项</li>
  511. // <li>技术开发:<a href="">{this.state.kaifa}</a>项</li>
  512. // <li>科技服务:<a href="">{this.state.fuwu}</a>项</li>
  513. // <li>发布需求:<a href="">{this.state.xuqiu}</a>项</li>
  514. // </ul>
  515. // </div>
  516. // <div className="index-activity">
  517. // <Tabs defaultActiveKey="1" onChange={this.tabChange}>
  518. // <TabPane tab="活动" key="1">
  519. // <p className="acc-title">即将举办的活动</p>
  520. // <ul className="activity-list">
  521. // {
  522. // this.state.activityArr.map(function (item, i) {
  523. // return <li key={i}>
  524. // <span className="list-type">[{item.type}]</span>
  525. // <span className="list-title">{item.title}</span>
  526. // <a href={item.link}>报名</a>
  527. // <span className="list-time">{item.time}</span>
  528. // </li>;
  529. // })
  530. // }
  531. // </ul>
  532. // </TabPane>
  533. // <TabPane tab="其他" key="2">Content of Tab Pane 2</TabPane>
  534. // </Tabs>
  535. // </div>
  536. // </div>