Browse Source

团队管理

zhaoxiaohai 3 năm trước cách đây
mục cha
commit
367bbfdfb2
1 tập tin đã thay đổi với 3 bổ sung2 xóa
  1. 3 2
      pages/teams/addUsers.js

+ 3 - 2
pages/teams/addUsers.js

@@ -1,4 +1,5 @@
-const _Http = getApp().globalData.http;
+const _Http = getApp().globalData.http,
+    deleteMark = require("../../utils/deleteMark");
 
 Page({
     /**
@@ -164,7 +165,7 @@ Page({
     /* 文本域输入 */
     textareaInput(e) {
         this.setData({
-            remarks: e.detail.value.trim()
+            remarks: deleteMark.queryStr(e.detail.value).trim()
         })
     },
     /**