websiteManage.jsx 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. import React from 'react';
  2. import { Icon, Button, Select, Spin, Table, message } from 'antd';
  3. import { provinceArr } from '../../../dataDic.js';
  4. import { companySearch } from '../../../tools.js';
  5. import ajax from 'jquery/src/ajax/xhr.js';
  6. import $ from 'jquery/src/ajax';
  7. import './technology.less';
  8. import WebsiteAdd from './websiteAdd.jsx';
  9. import WebsiteChange from './websiteChange.jsx';
  10. const Cognizance = React.createClass({
  11. loadData(pageNo) {
  12. this.state.data = [];
  13. this.setState({
  14. loading: true
  15. });
  16. $.ajax({
  17. method: "post",
  18. dataType: "json",
  19. crossDomain: false,
  20. url: globalConfig.context + "/api/admin/techproject/listTechWebsite",
  21. data: {
  22. pageNo: pageNo || 1,
  23. pageSize: this.state.pagination.pageSize,
  24. unitName: this.state.unitName,
  25. },
  26. success: function (data) {
  27. if (data.error.length || !data.data || !data.data.list) {
  28. message.warning(data.error[0].message);
  29. return;
  30. }
  31. for (let i = 0; i < data.data.list.length; i++) {
  32. let thisdata = data.data.list[i];
  33. this.state.data.push({
  34. key: i,
  35. id: thisdata.id,
  36. uid: thisdata.uid,
  37. unitName: thisdata.unitName,
  38. department: thisdata.department,
  39. webSite: thisdata.website,
  40. userName: thisdata.accountNumber,
  41. password: thisdata.password
  42. });
  43. };
  44. this.state.pagination.current = data.data.pageNo;
  45. this.state.pagination.total = data.data.totalCount;
  46. this.setState({
  47. dataSource: this.state.data,
  48. pagination: this.state.pagination
  49. });
  50. }.bind(this),
  51. }).always(function () {
  52. this.setState({
  53. loading: false
  54. });
  55. }.bind(this));
  56. },
  57. getCompanyList() {
  58. this.setState({
  59. loading: true
  60. });
  61. $.ajax({
  62. method: "get",
  63. dataType: "json",
  64. crossDomain: false,
  65. url: globalConfig.context + "/api/admin/getUnitNames",
  66. success: function (data) {
  67. if (data.error.length || !data.data) {
  68. return;
  69. };
  70. let _me = this;
  71. for (var item in data.data) {
  72. _me.state.companyOption.push(
  73. <Select.Option value={data.data[item]} key={data.data[item]}>{data.data[item]}</Select.Option>
  74. )
  75. _me.state.companyAddOption.push(
  76. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  77. )
  78. };
  79. }.bind(this),
  80. }).always(function () {
  81. this.setState({
  82. loading: false
  83. });
  84. }.bind(this));
  85. },
  86. getInitialState() {
  87. return {
  88. provinceOption: [],
  89. companyOption: [],
  90. companyAddOption: [],
  91. authorOption: [],
  92. selectedRows: [],
  93. selectedRowKeys: [],
  94. loading: false,
  95. showAdd: false,
  96. showDesc: false,
  97. pagination: {
  98. defaultCurrent: 1,
  99. defaultPageSize: 10,
  100. showQuickJumper: true,
  101. pageSize: 10,
  102. onChange: function (page) {
  103. this.loadData(page);
  104. }.bind(this),
  105. showTotal: function (total) {
  106. return '共' + total + '条数据';
  107. }
  108. },
  109. columns: [
  110. {
  111. title: '公司',
  112. dataIndex: 'unitName',
  113. key: 'unitName'
  114. }, {
  115. title: '科技单位',
  116. dataIndex: 'department',
  117. key: 'department'
  118. }, {
  119. title: '网址',
  120. dataIndex: 'webSite',
  121. key: 'webSite'
  122. }, {
  123. title: '用户名',
  124. dataIndex: 'userName',
  125. key: 'userName'
  126. }, {
  127. title: '密码',
  128. dataIndex: 'password',
  129. key: 'password'
  130. }
  131. ],
  132. dataSource: []
  133. };
  134. },
  135. componentWillMount() {
  136. this.loadData();
  137. this.getCompanyList();
  138. },
  139. tableRowClick(record, index) {
  140. this.state.RowData = record;
  141. this.setState({
  142. showDesc: true
  143. });
  144. },
  145. addClick() {
  146. this.setState({
  147. showAdd: true
  148. });
  149. },
  150. delectRow() {
  151. let deletedIds = [];
  152. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  153. let rowItem = this.state.selectedRows[idx];
  154. if (rowItem.id) {
  155. deletedIds.push(rowItem.id)
  156. }
  157. }
  158. this.setState({
  159. selectedRowKeys: [],
  160. loading: deletedIds.length > 0
  161. });
  162. $.ajax({
  163. method: "POST",
  164. dataType: "json",
  165. crossDomain: false,
  166. url: globalConfig.context + "/api/admin/techproject/deleteTechWebsite",
  167. data: {
  168. ids: deletedIds
  169. }
  170. }).done(function (data) {
  171. if (!data.error.length) {
  172. message.success('保存成功!');
  173. this.setState({
  174. loading: false,
  175. });
  176. } else {
  177. message.warning(data.error[0].message);
  178. };
  179. this.loadData();
  180. }.bind(this));
  181. },
  182. closeDesc(e) {
  183. this.state.showDesc = e;
  184. this.loadData();
  185. },
  186. closeAdd(e) {
  187. this.state.showAdd = e;
  188. this.loadData();
  189. },
  190. search() {
  191. this.loadData();
  192. },
  193. reset() {
  194. this.state.unitName = undefined;
  195. this.loadData();
  196. },
  197. render() {
  198. const rowSelection = {
  199. selectedRowKeys: this.state.selectedRowKeys,
  200. onChange: (selectedRowKeys, selectedRows) => {
  201. this.setState({
  202. selectedRows: selectedRows,
  203. selectedRowKeys: selectedRowKeys
  204. });
  205. }
  206. };
  207. const hasSelected = this.state.selectedRowKeys.length > 0;
  208. return (
  209. <div className="foster-content" >
  210. <div className="content-title">
  211. <span>科技单位网址管理</span>
  212. <div className="foster-query" style={{ float: "right" }}>
  213. <div>
  214. <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
  215. onClick={this.addClick}>创建新单位网址<Icon type="plus" /></Button>
  216. </div>
  217. </div>
  218. </div>
  219. <div className="foster-query">
  220. <Select placeholder="选择公司"
  221. style={{ width: 200 }}
  222. value={this.state.unitName}
  223. showSearch
  224. filterOption={companySearch}
  225. onChange={(e) => { this.setState({ unitName: e }) }}>
  226. {this.state.companyOption}
  227. </Select>
  228. <Button type="primary" onClick={this.search}>搜索</Button>
  229. <Button onClick={this.reset}>重置</Button>
  230. <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
  231. disabled={!hasSelected}
  232. onClick={this.delectRow}>删除<Icon type="minus" /></Button>
  233. </div>
  234. <div className="patent-table">
  235. <Spin spinning={this.state.loading}>
  236. <Table columns={this.state.columns}
  237. rowSelection={rowSelection}
  238. dataSource={this.state.dataSource}
  239. pagination={this.state.pagination}
  240. onRowClick={this.tableRowClick} />
  241. </Spin>
  242. </div>
  243. <WebsiteChange
  244. data={this.state.RowData}
  245. companyAddOption={this.state.companyAddOption}
  246. showDesc={this.state.showDesc}
  247. closeDesc={this.closeDesc} />
  248. <WebsiteAdd
  249. companyAddOption={this.state.companyAddOption}
  250. showAdd={this.state.showAdd}
  251. closeAdd={this.closeAdd} />
  252. </div >
  253. );
  254. }
  255. });
  256. export default Cognizance;