Browse Source

客服服务搜索bug修复

dev01 2 years ago
parent
commit
b409fd73cf

+ 4 - 0
js/admin/index/content.jsx

@@ -29,6 +29,8 @@ import AdvertisementList from '@/administration/business/advertisementList';
 import Proservlist from '@/administration/business/proservlist';
 //访问客户列表
 import Customers from "@/administration/business/customers";
+//本站声明
+import Statement from '@/administration/statement/setting';
 //
 import News from '@/administration/news/newsList';
 import Policy from '@/administration/policy/policyList';
@@ -79,6 +81,8 @@ export default class ContentRouter extends React.Component {
                     {/* 产品 */}
                     <Route path="/proservlist" component={Proservlist} />
                     <Route path="/customers" component={Customers} />
+                    {/* 本站说明 */}
+                    <Route path="/statement" component={Statement} />
 
                     <Route path="/userLibrary" component={UserLibrary} />
                     <Route path="/authLibrary" component={AuthLibrary} />

+ 6 - 1
js/admin/menu.jsx

@@ -34,6 +34,11 @@ module.exports = {
             name: "访问客户",
             url: "customers",
             icon: "database"
-        }
+        },
+        {
+          name: "本站声明",
+          url: "statement",
+          icon: "database"
+        },
     ]
 };

+ 4 - 4
js/component/administration/business/buyList.jsx

@@ -127,7 +127,7 @@ const BuyList = Form.create()(
           pageNo: pageNo || this.state.pagination.current || 1,
           pageSize: this.state.pagination.pageSize,
           name: this.state.nameSearch,
-          locationSearch: this.state.locationSearch,
+          location: this.state.location,
         },
         success: function(data) {
           let theArr = [];
@@ -667,7 +667,7 @@ const BuyList = Form.create()(
     //搜索部分的清零
     reset() {
       this.setState({
-        locationSearch: undefined,
+        location: undefined,
         nameSearch: undefined,
       },()=>{
         this.loadData();
@@ -729,10 +729,10 @@ const BuyList = Form.create()(
               <Select
                   placeholder="请选择公司"
                   style={{ width: 150 }}
-                  value={this.state.locationSearch}
+                  value={this.state.location}
                   onChange={e => {
                     this.setState({
-                      locationSearch: e
+                      location: e
                     });
                   }}
               >

+ 4 - 4
js/component/administration/business/proservlist.jsx

@@ -765,7 +765,7 @@ const Proservlist = Form.create()(
                   <div className="clearfix">
                     <FormItem
                       labelCol={{ span: 4 }}
-                      wrapperCol={{ span: 8 }}
+                      wrapperCol={{ span: 16 }}
                       label="名称"
                     >
                       <Input
@@ -783,7 +783,7 @@ const Proservlist = Form.create()(
                   <div className="clearfix">
                     <FormItem
                       labelCol={{ span: 4 }}
-                      wrapperCol={{ span: 8 }}
+                      wrapperCol={{ span: 16 }}
                       label="LOGO"
                     >
                       <PicturesWall
@@ -797,7 +797,7 @@ const Proservlist = Form.create()(
                   <div className="clearfix">
                     <FormItem
                       labelCol={{ span: 4 }}
-                      wrapperCol={{ span: 8 }}
+                      wrapperCol={{ span: 16 }}
                       label="排序"
                     >
                       <Input
@@ -815,7 +815,7 @@ const Proservlist = Form.create()(
                   <div className="clearfix">
                     <FormItem
                         labelCol={{ span: 4 }}
-                        wrapperCol={{ span: 8 }}
+                        wrapperCol={{ span: 16 }}
                         label="公司"
                     >
                       <Checkbox indeterminate={this.state.indeterminate} checked={this.state.checked} onChange={(e)=>{

+ 122 - 0
js/component/administration/statement/setting.jsx

@@ -0,0 +1,122 @@
+import React from "react";
+import $ from "jquery/src/ajax";
+import "react-quill/dist/quill.bubble.css";
+import moment from "moment";
+import "../authentication/techDemand.less";
+import {
+  Form,
+  Button,
+  message,
+} from "antd";
+import {
+  beforeUploadFile,
+} from "@/tools.js";
+import Editors from "@/richTextEditors";
+
+//主体
+const Setting = Form.create()(
+  React.createClass({
+
+    getInitialState() {
+      return {
+        content: "",
+      };
+    },
+    // 初始化数据
+    loadData() {
+      //发送请求
+      $.ajax({
+        method: "get",
+        dataType: "json",
+        crossDomain: false,
+        url: globalConfig.context + "/api/admin/getSysConfig",
+        data: {
+          id: 100
+        },
+        success: function (data) {
+          if (data.error.length == 0) {
+            this.setState({
+              content: data.data.content
+            });
+          } else {
+            message.warning(data.error[0].message)
+          }
+        }.bind(this),
+      }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+      );
+    },
+
+    // 编辑声明
+    edit() {
+      this.setState({
+        loading: true,
+      });
+      $.ajax({
+        method: "post",
+        dataType: "json",
+        crossDomain: false,
+        url: globalConfig.context + "/api/admin/updateSysConfig",
+        data: {
+          id: 100,
+          content: this.state.content,
+        },
+        success: function (data) {
+          this.setState({
+            loading: false,
+          });
+          if (data.error && data.error.length) {
+            message.warning(data.error[0].message);
+          }else{
+            message.success("修改成功!")
+          }
+        }.bind(this),
+      }).always(
+        function () {
+          this.setState({
+            loading: false,
+          });
+        }.bind(this)
+      );
+    },
+
+    componentWillMount() {
+      this.loadData();
+    },
+
+    render() {
+      return (
+        <div className="user-content">
+          <div className="content-title">
+            <span>本站声明设置</span>
+            <div style={{ width: 800, marginTop: 20 }}>
+              <Editors
+                textContent={this.state.content}
+                uploadUrl={"/api/admin/news/uploadFile"}
+                globalConfig={globalConfig.uploadPath}
+                placeholder=""
+                handleRichText={(value) => {
+                  this.setState({ content: value });
+                }}
+              />
+              <Button
+                type="primary"
+                onClick={this.edit}
+                style={{ margin: "50px 0 20px 360px" }}
+              >
+                保存更改
+              </Button>
+              <div style={{ color: "red" }}>提示:本站声明,显示在新闻底部,一旦修改,将整站全部修改!!!</div>
+            </div>
+          </div>
+        </div>
+      );
+    },
+  })
+);
+
+export default Setting;

+ 1 - 0
js/component/common/configure.jsx

@@ -8,6 +8,7 @@ const companyList = [
     {value:6,label:'武汉'}  ,
     {value:7,label:'新疆'}  ,
     {value:8,label:'郑州'}  ,
+    {value:9,label:'内蒙古'}  ,
 ];
 
 function getCompanyName(value){

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "afanti",
-  "version": "1.0.4",
+  "version": "1.0.6",
   "description": "",
   "main": "index.js",
   "scripts": {

+ 1 - 1
webpack-dll.config.js

@@ -10,7 +10,7 @@ let theme = {
     '@link-color': '#58a3ff'
 };
 module.exports = (function () {
-    let staticHost = 'http://172.16.0.74';
+    let staticHost = 'http://172.16.1.187';
     switch (argv.env.deploy) {
         case 'test':
             staticHost = 'http://statics.jishutao.com';

+ 2 - 2
webpack.config.js

@@ -135,7 +135,7 @@ module.exports = (function () {
         }));
     }
 
-    let staticHost = 'http://172.16.0.74:80';
+    let staticHost = 'http://172.16.1.187:80';
     switch (argv.env.deploy) {
         case 'test':
             staticHost = 'http://static.jishutao.com'
@@ -169,7 +169,7 @@ module.exports = (function () {
         plugins: plugins,
         devServer: {
             disableHostCheck: true,
-            host: '172.16.0.74',
+            host: '172.16.1.187',
             port: 80,
             allowedHosts: ['127.0.0.1','192.168.0.20','192.168.0.99'],
             headers: {