|
@@ -55,7 +55,7 @@
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
import CustomFieldsMixin from "@/mixins/CustomFields";
|
|
import CustomFieldsMixin from "@/mixins/CustomFields";
|
|
-import { companyList, deliverOrderShipUpdate, automaticRecognition} from "@/api/business/order";
|
|
|
|
|
|
+import { companyList, storeOrderShipUpdate, automaticRecognition} from "@/api/business/order";
|
|
export default {
|
|
export default {
|
|
mixins: [CustomFieldsMixin],
|
|
mixins: [CustomFieldsMixin],
|
|
props: {
|
|
props: {
|
|
@@ -160,9 +160,9 @@ export default {
|
|
let data = {
|
|
let data = {
|
|
...form,
|
|
...form,
|
|
orderId: this.orderId,
|
|
orderId: this.orderId,
|
|
- itemIds: this.goodsInfo.items.map( item => item.itemId)
|
|
|
|
|
|
+ // itemIds: this.goodsInfo.items.map( item => item.itemId)
|
|
};
|
|
};
|
|
- deliverOrderShipUpdate(data)
|
|
|
|
|
|
+ storeOrderShipUpdate(data)
|
|
.then((res) => {
|
|
.then((res) => {
|
|
if (res.code == 0) {
|
|
if (res.code == 0) {
|
|
this.msgSuccess("修改成功");
|
|
this.msgSuccess("修改成功");
|