|
@@ -109,6 +109,7 @@
|
|
|
</el-form>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+
|
|
|
<el-col
|
|
|
:span="24"
|
|
|
style="text-align: right; margin: -5px 0 20px 0"
|
|
@@ -134,6 +135,7 @@ import asyncRequest from "@/apis/service/sellOut/returnOrder";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import { isnumber } from "@/utils/validate";
|
|
|
import abnormalConditionModal from "@/components/abnormal-condition-modal";
|
|
|
+import { replaceTextWrapAndSpace } from "@/utils"
|
|
|
export default {
|
|
|
name: "zxAfterSaleOrderDetail",
|
|
|
props: ["id", "showModelThis", "newTime", "sitem"],
|
|
@@ -275,8 +277,9 @@ export default {
|
|
|
if (this.loading) {
|
|
|
return;
|
|
|
}
|
|
|
- this.loading = true;
|
|
|
|
|
|
+ this.ruleForm.remark = replaceTextWrapAndSpace(this.ruleForm.remark)
|
|
|
+ this.loading = true;
|
|
|
let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
let list = JSON.parse(JSON.stringify(this.arr));
|
|
|
let { return_num, normal, product_go, remark } = model;
|