|
@@ -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))
|