|
@@ -84,7 +84,7 @@
|
|
|
<script>
|
|
|
import asyncRequest from '@/apis/service/sellOut/deliveryWorkOrder'
|
|
|
import resToken from '@/mixins/resToken'
|
|
|
-import { isnumber, isNumeric, hasSpace, isSpecialSymbol } from '@/utils/validate'
|
|
|
+import { isnumber, isNumeric } from '@/utils/validate'
|
|
|
export default {
|
|
|
name: 'WsmInOrderAdd',
|
|
|
mixins: [resToken],
|
|
@@ -101,9 +101,6 @@ export default {
|
|
|
const validateCode = (rule, value, callback) => {
|
|
|
const { required } = rule
|
|
|
const l = value.length
|
|
|
- // else if (value === "0") {//之前支持0
|
|
|
- // callback();
|
|
|
- // }
|
|
|
if (required) {
|
|
|
if (value === '') {
|
|
|
callback(new Error('物流单号不能为空!'))
|
|
@@ -139,8 +136,6 @@ export default {
|
|
|
}
|
|
|
],
|
|
|
post_fee: ''
|
|
|
- // remark: ''
|
|
|
- // sendtime: "",
|
|
|
},
|
|
|
rules: {
|
|
|
post_name: {
|
|
@@ -159,11 +154,6 @@ export default {
|
|
|
validator: validate_num,
|
|
|
trigger: 'blur'
|
|
|
}
|
|
|
- // remark: {
|
|
|
- // required: true,
|
|
|
- // validator: validate_remark,
|
|
|
- // trigger: 'blur'
|
|
|
- // }
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -240,16 +230,14 @@ export default {
|
|
|
const { outChildCode } = this.sitem
|
|
|
|
|
|
const model = {
|
|
|
- list: post_code.map(post_code => ({
|
|
|
+ list: [{
|
|
|
post_fee,
|
|
|
- post_code: post_code.value,
|
|
|
+ outChildCode,
|
|
|
post_name: Array.isArray(post_name) ? post_name[0] : post_name,
|
|
|
- outChildCode
|
|
|
- }))
|
|
|
+ post_code: post_code.map(({ value }) => value).join(',')
|
|
|
+ }]
|
|
|
}
|
|
|
|
|
|
- delete model['page']
|
|
|
-
|
|
|
const { code, message } = await asyncRequest.express(model)
|
|
|
this.loading = false
|
|
|
if (code === 0) {
|