|
@@ -645,6 +645,7 @@
|
|
|
import { lbsAmapRegion } from '@/api/common.js'
|
|
|
import geographicalPosi from '@/components/geographicalPosi/index.vue'
|
|
|
import ImageUpload from '@/components/file-upload'
|
|
|
+import selectOptionWebsit from '@/utils/selectOptionWebsit.js'
|
|
|
import {
|
|
|
getGoods,
|
|
|
getDetail,
|
|
@@ -1031,29 +1032,35 @@ export default {
|
|
|
|
|
|
this.$refs.repairForm.validate((valid, invalidFields, errLabels) => {
|
|
|
if (valid) {
|
|
|
- confirmRepair({
|
|
|
- companyWechatId: this.formData.companyWechatId,
|
|
|
- appointmentTime: this.repairForm.date + ' 00:00:00',
|
|
|
- saleOrderId: this.id,
|
|
|
- orderSmallType: this.typeId,
|
|
|
- province: this.formData.province,
|
|
|
- provinceId: this.formData.provinceId,
|
|
|
- city: this.formData.city,
|
|
|
- cityId: this.formData.cityId,
|
|
|
- area: this.formData.area,
|
|
|
- areaId: this.formData.areaId,
|
|
|
- street: this.formData.street,
|
|
|
- streetId: this.formData.streetId,
|
|
|
- address: this.formData.address,
|
|
|
- orderProducts: productList,
|
|
|
- isZl: true
|
|
|
- }).then(res => {
|
|
|
- if (res.code == 200) {
|
|
|
- this.isRepair = false
|
|
|
- this.$message.success('报修成功!')
|
|
|
- this.getDetail()
|
|
|
- }
|
|
|
- })
|
|
|
+ selectOptionWebsit
|
|
|
+ .bind(this)()
|
|
|
+ .then(websit => {
|
|
|
+ confirmRepair({
|
|
|
+ createWebsitId: websit?.websitId,
|
|
|
+ createWebsitName: websit?.name,
|
|
|
+ companyWechatId: this.formData.companyWechatId,
|
|
|
+ appointmentTime: this.repairForm.date + ' 00:00:00',
|
|
|
+ saleOrderId: this.id,
|
|
|
+ orderSmallType: this.typeId,
|
|
|
+ province: this.formData.province,
|
|
|
+ provinceId: this.formData.provinceId,
|
|
|
+ city: this.formData.city,
|
|
|
+ cityId: this.formData.cityId,
|
|
|
+ area: this.formData.area,
|
|
|
+ areaId: this.formData.areaId,
|
|
|
+ street: this.formData.street,
|
|
|
+ streetId: this.formData.streetId,
|
|
|
+ address: this.formData.address,
|
|
|
+ orderProducts: productList,
|
|
|
+ isZl: true
|
|
|
+ }).then(res => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.isRepair = false
|
|
|
+ this.$message.success('报修成功!')
|
|
|
+ this.getDetail()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
}
|
|
|
})
|
|
|
},
|