caipin 5 years ago
parent
commit
081253e55a
1 changed files with 7 additions and 1 deletions
  1. 7 1
      src/common/dataTable/index.js

+ 7 - 1
src/common/dataTable/index.js

@@ -40,6 +40,12 @@ class dataTable extends PureComponent {
         this.$el = $(this.el);
         dt = this.$el.DataTable(
             {
+                "language": {
+                    "paginate": {
+                        "next":       "  ",
+                        "previous":   "  "
+                    },
+                },
                 ordering: false,
                 processing: true,
                 serverSide: true,
@@ -118,7 +124,7 @@ const mapStateToProps = (state) => {
 const mapDispathToProps = (dispatch) => {
     return {
         ddd(){
-            
+
         }
     }
 }