techProduct.jsx 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653
  1. import React from 'react';
  2. import { Switch, Icon, Upload, Form, Button, Radio, Input, Spin, Table, message, Select, Modal, Cascader, Transfer, InputNumber } from 'antd';
  3. import { technicalSourceList } from '../../../../dataDic.js';
  4. import { techFieldList, getTechField } from '../../../../DicTechFieldList.js';
  5. import { getPreview, getTechnicalSource, beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
  6. import moment from 'moment';
  7. import ajax from 'jquery/src/ajax/xhr.js';
  8. import $ from 'jquery/src/ajax';
  9. if (!Array.prototype.includes) {
  10. Object.defineProperty(Array.prototype, 'includes', {
  11. value: function (searchElement, fromIndex) {
  12. // 1. Let O be ? ToObject(this value).
  13. if (this == null) {
  14. throw new TypeError('"this" is null or not defined');
  15. }
  16. var o = Object(this);
  17. // 2. Let len be ? ToLength(? Get(O, "length")).
  18. var len = o.length >>> 0;
  19. // 3. If len is 0, return false.
  20. if (len === 0) {
  21. return false;
  22. }
  23. // 4. Let n be ? ToInteger(fromIndex).
  24. // (If fromIndex is undefined, this step produces the value 0.)
  25. var n = fromIndex | 0;
  26. // 5. If n ≥ 0, then
  27. // a. Let k be n.
  28. // 6. Else n < 0,
  29. // a. Let k be len + n.
  30. // b. If k < 0, let k be 0.
  31. var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);
  32. // 7. Repeat, while k < len
  33. while (k < len) {
  34. // a. Let elementK be the result of ? Get(O, ! ToString(k)).
  35. // b. If SameValueZero(searchElement, elementK) is true, return true.
  36. // c. Increase k by 1.
  37. // NOTE: === provides the correct "SameValueZero" comparison needed here.
  38. if (o[k] === searchElement) {
  39. return true;
  40. }
  41. k++;
  42. }
  43. // 8. Return false
  44. return false;
  45. }
  46. });
  47. }
  48. const TechProductDescFrom = Form.create()(React.createClass({
  49. getInitialState() {
  50. return {
  51. loading: false,
  52. targetKeys: [],
  53. selectedKeys: [],
  54. technicalSourceOption: [],
  55. };
  56. },
  57. componentWillMount() {
  58. let _me = this;
  59. technicalSourceList.map(function (item) {
  60. _me.state.technicalSourceOption.push(
  61. <Select.Option value={item.value} key={10000 + item.value}>{item.key}</Select.Option>
  62. )
  63. });
  64. this.state.targetKeys = this.props.data.intellectualPropertyNumber || [];
  65. },
  66. componentWillReceiveProps(nextProps) {
  67. if (!this.props.visible && nextProps.visible && nextProps.data && this.props.resetForm) {
  68. this.state.targetKeys = nextProps.data.intellectualPropertyNumber || [];
  69. this.props.form.resetFields();
  70. this.state.accountUrl = undefined;
  71. this.state.fileList = [];
  72. };
  73. },
  74. handleSubmit(e) {
  75. e.preventDefault();
  76. this.props.form.validateFields((err, values) => {
  77. if (!err) {
  78. this.props.spinState(true);
  79. $.ajax({
  80. method: "POST",
  81. dataType: "json",
  82. crossDomain: false,
  83. url: globalConfig.context + "/api/admin/techProduct",
  84. data: {
  85. id: this.props.data.id,
  86. uid: this.props.uid,
  87. serialNumber: values.serialNumber,
  88. productName: values.productName,
  89. technicalField1: values.techField[0],
  90. technicalField2: values.techField[1],
  91. technicalField3: values.techField[2],
  92. technicalSource: values.technicalSource,
  93. lastYearRevenue: values.lastYearRevenue,
  94. mainProduct: values.mainProduct,
  95. intellectualPropertyNumber: this.state.targetKeys ? this.state.targetKeys.join(",") : '',
  96. keyTechnology: values.keyTechnology,
  97. competitiveEdge: values.competitiveEdge,
  98. conditionEffect: values.conditionEffect,
  99. accountUrl: this.state.accountUrl
  100. }
  101. }).done(function (data) {
  102. if (!data.error.length) {
  103. message.success('保存成功!');
  104. this.props.clickOk();
  105. this.props.form.resetFields();
  106. this.state.targetKeys = [];
  107. this.state.selectedKeys = [];
  108. this.props.spinState(false);
  109. } else {
  110. message.warning(data.error[0].message);
  111. this.props.spinState(false);
  112. }
  113. }.bind(this));
  114. }
  115. });
  116. },
  117. intellectualChange(nextTargetKeys, direction, moveKeys) {
  118. this.setState({ targetKeys: nextTargetKeys });
  119. },
  120. intellectualSelectChange(sourceSelectedKeys, targetSelectedKeys) {
  121. this.setState({ selectedKeys: [...sourceSelectedKeys, ...targetSelectedKeys] });
  122. },
  123. render() {
  124. const FormItem = Form.Item;
  125. const { getFieldDecorator } = this.props.form;
  126. const theData = this.props.data;
  127. const formItemLayout = {
  128. labelCol: { span: 10 },
  129. wrapperCol: { span: 12 },
  130. };
  131. const _me = this;
  132. return (
  133. <Form onSubmit={this.handleSubmit} id="techProduct-form">
  134. <div className="clearfix">
  135. <FormItem className="half-item"
  136. {...formItemLayout}
  137. label="编号:ps"
  138. >
  139. {getFieldDecorator('serialNumber', {
  140. rules: [{ required: true, message: '此项为必填项!' }],
  141. initialValue: theData.serialNumber
  142. })(
  143. <Input />
  144. )}
  145. </FormItem>
  146. <FormItem className="half-item"
  147. {...formItemLayout}
  148. label="产品(服务)名称"
  149. >
  150. {getFieldDecorator('productName', {
  151. rules: [{ required: true, message: '此项为必填项!' }],
  152. initialValue: theData.productName
  153. })(
  154. <Input />
  155. )}
  156. </FormItem>
  157. </div>
  158. <div className="clearfix">
  159. <FormItem className="half-item"
  160. {...formItemLayout}
  161. label="技术来源"
  162. >
  163. {getFieldDecorator('technicalSource', {
  164. rules: [{ required: true, message: '此项为必填项!' }],
  165. initialValue: theData.technicalSource
  166. })(
  167. <Select placeholder="选择技术来源"
  168. onChange={(e) => { this.setState({ technicalSource: e }) }}>
  169. {this.state.technicalSourceOption}
  170. </Select>
  171. )}
  172. </FormItem>
  173. <FormItem className="half-item"
  174. labelCol={{ span: 10 }}
  175. label="上年度销售收入(万元)"
  176. >
  177. {getFieldDecorator('lastYearRevenue', {
  178. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  179. initialValue: theData.lastYearRevenue ? Number(theData.lastYearRevenue) : 0
  180. })(
  181. <InputNumber />
  182. )}
  183. </FormItem>
  184. </div>
  185. <FormItem
  186. labelCol={{ span: 5 }}
  187. wrapperCol={{ span: 16 }}
  188. label="技术领域"
  189. >
  190. {getFieldDecorator('techField', {
  191. rules: [{ type: "array", required: true, message: '此项为必填项!' }],
  192. initialValue: theData.techField
  193. })(
  194. <Cascader
  195. options={techFieldList}
  196. onChange={(value, selectedOptions) => { this.setState({ techField: value }); }}
  197. placeholder="请选择"
  198. showSearch
  199. />
  200. )}
  201. </FormItem>
  202. <div className="clearfix">
  203. <FormItem className="half-item"
  204. {...formItemLayout}
  205. label="是否主要产品(服务)"
  206. >
  207. {getFieldDecorator('mainProduct', {
  208. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  209. initialValue: theData.mainProduct
  210. })(
  211. <Radio.Group>
  212. <Radio value={1}>是</Radio>
  213. <Radio value={0}>否</Radio>
  214. </Radio.Group>
  215. )}
  216. </FormItem>
  217. </div>
  218. <p>知识产权编号:</p>
  219. <Transfer
  220. dataSource={this.props.mockData}
  221. listStyle={{
  222. width: 300,
  223. height: 300,
  224. }}
  225. titles={['未选择', '已选择']}
  226. targetKeys={this.state.targetKeys}
  227. selectedKeys={this.state.selectedKeys}
  228. onChange={this.intellectualChange}
  229. onSelectChange={this.intellectualSelectChange}
  230. render={item => `${item.name}-${item.number}`}
  231. />
  232. <div className="clearfix">
  233. <FormItem className="half-item"
  234. labelCol={{ span: 0 }}
  235. wrapperCol={{ span: 22 }}
  236. >
  237. <p>关键技术及主要技术指标(限400字)</p>
  238. {getFieldDecorator('keyTechnology', {
  239. rules: [{ required: true, message: '此项为必填项!' }],
  240. initialValue: theData.keyTechnology
  241. })(
  242. <Input type='textarea' rows={6} onChange={(e) => { if (e.target.value.length > 400) { return; } }} />
  243. )}
  244. </FormItem>
  245. <FormItem className="half-item"
  246. labelCol={{ span: 0 }}
  247. wrapperCol={{ span: 22 }}
  248. >
  249. <p>与同类产品(服务)的竞争优势(限400字)</p>
  250. {getFieldDecorator('competitiveEdge', {
  251. rules: [{ required: true, message: '此项为必填项!' }],
  252. initialValue: theData.competitiveEdge
  253. })(
  254. <Input type='textarea' rows={6} onChange={(e) => { if (e.target.value.length > 400) { return; } }} />
  255. )}
  256. </FormItem>
  257. <p style={{ lineHeight: "27px" }}>知识产权获得情况及其对产品(服务)在技术上发挥的支持作用(限400字)*</p>
  258. <FormItem className="half-item"
  259. labelCol={{ span: 0 }}
  260. wrapperCol={{ span: 22 }}
  261. >
  262. {getFieldDecorator('conditionEffect', {
  263. rules: [{ required: true, message: '此项为必填项!' }],
  264. initialValue: theData.conditionEffect
  265. })(
  266. <Input type='textarea' rows={6} onChange={(e) => { if (e.target.value.length > 400) { return; } }} />
  267. )}
  268. </FormItem>
  269. </div>
  270. <div style={{ width: '50%' }}>
  271. <Upload
  272. name="ratepay"
  273. action={globalConfig.context + "/api/admin/uploadTecProduct"}
  274. data={{ 'sign': 'tech_product', 'uid': this.props.uid }}
  275. beforeUpload={beforeUploadFile}
  276. fileList={this.state.fileList}
  277. onChange={(info) => {
  278. if (info.file.status !== 'uploading') {
  279. // console.log(info.file, info.fileList);
  280. }
  281. if (info.file.status === 'done') {
  282. if (!info.file.response.error.length) {
  283. message.success(`${info.file.name} 文件上传成功!`);
  284. } else {
  285. message.warning(info.file.response.error[0].message);
  286. return;
  287. };
  288. this.state.accountUrl = info.file.response.data;
  289. } else if (info.file.status === 'error') {
  290. message.error(`${info.file.name} 文件上传失败。`);
  291. };
  292. this.setState({ fileList: info.fileList.slice(-1) });
  293. }}
  294. >
  295. <Button><Icon type="upload" /> 上传高新技术产品台帐 </Button>
  296. </Upload>
  297. <p style={{ marginTop: '10px' }}>{theData.accountUrl ?
  298. <span className="download-file">
  299. <a onClick={newDownloadFile.bind(null, this.props.data.id, 'tech_product', '/api/admin/downloadTecProduct')}>{theData.accountDownloadFileName}</a>
  300. <a onClick={() => {
  301. var newTab = window.open('about:blank'); getPreview(theData.id, 'techProduct', 'tech_product', function (data) { newTab.location.href = data; });
  302. }}><Icon style={{ fontSize: '16px' }} type="eye-o" /></a>
  303. </span>
  304. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  305. </div>
  306. <FormItem style={{ marginTop: '20px' }}>
  307. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  308. <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
  309. </FormItem>
  310. </Form >
  311. );
  312. },
  313. }));
  314. const TechProductDesc = React.createClass({
  315. getInitialState() {
  316. return {
  317. visible: false,
  318. loading: false
  319. };
  320. },
  321. componentWillReceiveProps(nextProps) {
  322. this.state.visible = nextProps.showDesc
  323. },
  324. showModal() {
  325. this.setState({
  326. visible: true,
  327. resetForm: false
  328. });
  329. },
  330. handleOk() {
  331. this.setState({
  332. visible: false,
  333. resetForm: true
  334. });
  335. this.props.closeDesc(false, true);
  336. },
  337. handleCancel(e) {
  338. this.setState({
  339. visible: false,
  340. resetForm: true
  341. });
  342. this.props.closeDesc(false);
  343. },
  344. spinChange(e) {
  345. this.setState({
  346. loading: e
  347. });
  348. },
  349. render() {
  350. return (
  351. <div className="patent-addNew">
  352. <Modal maskClosable={false} title="上年度高新技术产品(服务)情况表" visible={this.state.visible}
  353. onOk={this.handleOk} onCancel={this.handleCancel}
  354. width='800px'
  355. footer='' >
  356. <Spin spinning={this.state.loading} className='spin-box'>
  357. <TechProductDescFrom
  358. data={this.props.data}
  359. uid={this.props.uid}
  360. visible={this.state.visible}
  361. resetForm={this.state.resetForm}
  362. mockData={this.props.mockData}
  363. spinState={this.spinChange} closeModal={this.handleCancel} clickOk={this.handleOk} />
  364. </Spin>
  365. </Modal>
  366. </div>
  367. );
  368. },
  369. });
  370. const TechProduct = React.createClass({
  371. loadData(pageNo) {
  372. this.state.data = [];
  373. this.setState({
  374. loading: true
  375. });
  376. $.when($.ajax({
  377. method: "post",
  378. dataType: "json",
  379. crossDomain: false,
  380. url: globalConfig.context + "/api/admin/techProductList",
  381. data: {
  382. pageNo: pageNo || 1,
  383. pageSize: this.state.pagination.pageSize,
  384. uid: this.props.data.uid
  385. }
  386. }), $.ajax({
  387. method: "post",
  388. dataType: "json",
  389. crossDomain: false,
  390. url: globalConfig.context + "/api/admin/intellectualList",
  391. data: {
  392. pageNo: pageNo || 1,
  393. pageSize: 99,
  394. uid: this.props.data.uid
  395. }
  396. })).done((data1, data2) => {
  397. let data = data1[0];
  398. let intellectualList = data2[0];
  399. if (data.error.length || !data.data || !data.data.list) {
  400. message.warning(data.error[0].message);
  401. return;
  402. };
  403. if (intellectualList.error.length || !intellectualList.data || !intellectualList.data.list) {
  404. message.warning(intellectualList.error[0].message);
  405. return;
  406. };
  407. let theArr = [], theObj = {};
  408. for (let i = 0; i < intellectualList.data.list.length; i++) {
  409. theArr.push({
  410. key: intellectualList.data.list[i].id,
  411. number: intellectualList.data.list[i].intellectualPropertyNumber,
  412. name: intellectualList.data.list[i].intellectualPropertyName
  413. });
  414. theObj[intellectualList.data.list[i].id] = intellectualList.data.list[i].intellectualPropertyNumber;
  415. };
  416. this.state.mockData = theArr;
  417. this.state.mockDataObj = theObj;
  418. for (let i = 0; i < data.data.list.length; i++) {
  419. let thisdata = data.data.list[i];
  420. this.state.data.push({
  421. key: i,
  422. id: thisdata.id,
  423. uid: thisdata.uid,
  424. mockData: this.state.mockData,
  425. mockDataObj: this.state.mockDataObj,
  426. serialNumber: thisdata.serialNumber,
  427. productName: thisdata.productName,
  428. techField: [thisdata.technicalField1, thisdata.technicalField2, thisdata.technicalField3],
  429. technicalField: getTechField(thisdata.technicalField1, thisdata.technicalField2, thisdata.technicalField3),
  430. technicalField1: thisdata.technicalField1,
  431. technicalField2: thisdata.technicalField2,
  432. technicalField3: thisdata.technicalField3,
  433. technicalSource: String(thisdata.technicalSource),
  434. lastYearRevenue: thisdata.lastYearRevenue,
  435. mainProduct: thisdata.mainProduct,
  436. PropertyNumber: thisdata.intellectualPropertyNumber,
  437. intellectualPropertyNumber: thisdata.intellectualPropertyNumber ? thisdata.intellectualPropertyNumber.split(",") : [],
  438. keyTechnology: thisdata.keyTechnology,
  439. competitiveEdge: thisdata.competitiveEdge,
  440. conditionEffect: thisdata.conditionEffect,
  441. year: thisdata.year,
  442. createTime: thisdata.createTime,
  443. accountDownloadFileName: thisdata.accountDownloadFileName,
  444. accountUrl: thisdata.accountUrl
  445. });
  446. };
  447. this.state.pagination.current = data.data.pageNo;
  448. this.state.pagination.total = data.data.totalCount;
  449. this.setState({
  450. dataSource: this.state.data,
  451. pagination: this.state.pagination
  452. });
  453. }).always(function () {
  454. this.setState({
  455. loading: false
  456. });
  457. }.bind(this));
  458. let _me = this;
  459. getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
  460. },
  461. getInitialState() {
  462. return {
  463. selectedRowKeys: [],
  464. selectedRows: [],
  465. mockData: [],
  466. mockDataObj: {},
  467. loading: false,
  468. pagination: {
  469. defaultCurrent: 1,
  470. defaultPageSize: 10,
  471. showQuickJumper: true,
  472. pageSize: 10,
  473. onChange: function (page) {
  474. this.loadData(page);
  475. }.bind(this),
  476. showTotal: function (total) {
  477. return '共' + total + '条数据';
  478. }
  479. },
  480. columns: [
  481. {
  482. title: '产品编号',
  483. dataIndex: 'serialNumber',
  484. key: 'serialNumber'
  485. }, {
  486. title: '产品(服务)名称',
  487. dataIndex: 'productName',
  488. key: 'productName'
  489. }, {
  490. title: '技术领域',
  491. dataIndex: 'technicalField',
  492. key: 'technicalField'
  493. }, {
  494. title: '技术来源',
  495. dataIndex: 'technicalSource',
  496. key: 'technicalSource',
  497. render: (text) => { return getTechnicalSource(text) }
  498. }, {
  499. title: '上年度销售收入(万元)',
  500. dataIndex: 'lastYearRevenue',
  501. key: 'lastYearRevenue'
  502. }, {
  503. title: '是否主要产品(服务)',
  504. dataIndex: 'mainProduct',
  505. key: 'mainProduct',
  506. render: (text) => { if (text == "1") { return '是' } else { return '否' } }
  507. }, {
  508. title: '知识产权编号',
  509. dataIndex: 'PropertyNumber',
  510. key: 'PropertyNumber',
  511. render: (text) => {
  512. let arr = [], _me = this;
  513. if (text && text.split(',').length) {
  514. text.split(',').map((item) => {
  515. arr.push(_me.state.mockDataObj[item]);
  516. });
  517. };
  518. return arr.join(',');
  519. }
  520. }
  521. ],
  522. dataSource: []
  523. };
  524. },
  525. componentWillMount() {
  526. this.loadData();
  527. },
  528. tableRowClick(record, index) {
  529. this.state.RowData = record;
  530. this.setState({
  531. showDesc: true
  532. });
  533. },
  534. delectRow() {
  535. let deletedIds = [];
  536. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  537. let rowItem = this.state.selectedRows[idx];
  538. if (rowItem.id) {
  539. deletedIds.push(rowItem.id)
  540. }
  541. }
  542. this.setState({
  543. selectedRowKeys: [],
  544. loading: deletedIds.length > 0
  545. });
  546. $.ajax({
  547. method: "POST",
  548. dataType: "json",
  549. crossDomain: false,
  550. url: globalConfig.context + "/api/admin/deleteTechProduct",
  551. data: {
  552. ids: deletedIds
  553. }
  554. }).done(function (data) {
  555. if (!data.error.length) {
  556. message.success('删除成功!');
  557. this.setState({
  558. loading: false,
  559. });
  560. } else {
  561. message.warning(data.error[0].message);
  562. };
  563. this.loadData();
  564. }.bind(this));
  565. },
  566. closeDesc(e, s) {
  567. this.state.showDesc = e;
  568. if (s) {
  569. this.loadData();
  570. };
  571. },
  572. search() {
  573. this.loadData();
  574. },
  575. reset() {
  576. this.loadData();
  577. },
  578. render() {
  579. const rowSelection = {
  580. selectedRowKeys: this.state.selectedRowKeys,
  581. onChange: (selectedRowKeys, selectedRows) => {
  582. this.setState({
  583. selectedRows: selectedRows,
  584. selectedRowKeys: selectedRowKeys
  585. });
  586. }
  587. };
  588. const hasSelected = this.state.selectedRowKeys.length > 0;
  589. return (
  590. <div className="user-content" >
  591. <div className="content-title">
  592. <span>高新技术产品(服务)情况表</span>
  593. <span className="proportion"> 是否已完成:</span>
  594. <Switch
  595. checked={this.state.proportion && this.state.proportion.techProject == 1 ? true : false}
  596. checkedChildren={'已完成'}
  597. unCheckedChildren={'未完成'}
  598. onChange={(e) => {
  599. e ? this.state.proportion.techProject = 1 : this.state.proportion.techProject = 0;
  600. saveProportion(this.state.proportion.id, this.props.data.uid, 'techProject', this.state.proportion.techProject);
  601. this.setState({ proportion: this.state.proportion });
  602. }} />
  603. </div>
  604. <div className="user-search">
  605. <p>
  606. <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
  607. onClick={this.tableRowClick}>添加<Icon type="plus" /></Button>
  608. <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
  609. disabled={!hasSelected}
  610. onClick={this.delectRow}>删除<Icon type="minus" /></Button>
  611. </p>
  612. </div>
  613. <div className="patent-table">
  614. <Spin spinning={this.state.loading}>
  615. <Table columns={this.state.columns}
  616. dataSource={this.state.dataSource}
  617. pagination={this.state.pagination}
  618. rowSelection={rowSelection}
  619. onRowClick={this.tableRowClick} />
  620. </Spin>
  621. </div>
  622. <TechProductDesc
  623. data={this.state.RowData}
  624. uid={this.props.data.uid}
  625. mockData={this.state.mockData}
  626. showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
  627. </div >
  628. );
  629. }
  630. });
  631. export default TechProduct;