Browse Source

feat:下单字段去空格换行

snow 2 years ago
parent
commit
f2d85f1111

+ 7 - 0
src/views/sellOut/project/components/addForm.vue

@@ -234,6 +234,7 @@ import resToken from '@/mixins/resToken'
 import companyHelper from '@/mixins/companyHelper'
 import costFormAddEdit from './costFormAddEdit'
 import { mapGetters } from 'vuex'
+import { replaceTextWrapAndSpace } from '@/utils'
 
 export default {
   name: 'Account',
@@ -600,6 +601,12 @@ export default {
           }
           model.ladder = JSON.parse(JSON.stringify(list))
 
+          Object.keys(model).forEach(key => {
+            if (typeof model[key] === 'string') {
+              model[key] = replaceTextWrapAndSpace(model[key])
+            }
+          })
+
           const res = await asyncRequest.add(model)
           this.loading = false
           if (res && res.code === 0) {

+ 8 - 0
src/views/sellOut/project/components/buyGoodModal.vue

@@ -375,6 +375,7 @@ import {
 } from '@/utils/validate'
 import inAddrModel from '@/components/in-addr-model'
 import { ShowDataTableColumns } from './ShowDataTableColumns'
+import { replaceTextWrapAndSpace } from '@/utils'
 export default {
   name: 'BuyGoodModal',
   components: { searchStockGoodModal, inAddrModel },
@@ -714,6 +715,13 @@ export default {
         })
         model.planinfo.push(modelA)
       })
+
+      Object.keys(model).forEach(key => {
+        if (typeof model[key] === 'string') {
+          model[key] = replaceTextWrapAndSpace(model[key])
+        }
+      })
+
       const res = await asyncRequest.project_place_order(model)
       this.loading = false
       if (res && res.code === 0) {

+ 9 - 0
src/views/sellOut/zixunOrder/components/buyGoodModal.vue

@@ -566,6 +566,7 @@ import {
 } from '@/utils/validate'
 import inAddrModel from '@/components/in-addr-model'
 import { ShowDataTableColumns } from './ShowDataTableColumns'
+import { replaceTextWrapAndSpace } from '@/utils'
 export default {
   name: 'BuyGoodModal',
   components: { searchStockGoodModal, inAddrModel },
@@ -985,6 +986,14 @@ export default {
           if (this.loading) return
           this.loading = true
           const model = JSON.parse(JSON.stringify(this.ruleForm))
+
+          // 去除上送字段空格&换行
+          Object.keys(model).forEach(key => {
+            if (typeof model[key] === 'string') {
+              model[key] = replaceTextWrapAndSpace(model[key])
+            }
+          })
+
           model.order_addr = []
           const { sendtype, good_num } = model
           const { order_addr } = JSON.parse(JSON.stringify(this.addrForm))