更新
This commit is contained in:
parent
387fa2db59
commit
39c2befe0d
@ -7,7 +7,7 @@
|
|||||||
<uni-icons type="left" size="18"></uni-icons>
|
<uni-icons type="left" size="18"></uni-icons>
|
||||||
</view>
|
</view>
|
||||||
<view class="t-title">
|
<view class="t-title">
|
||||||
<text>新增线下订单</text>
|
<text>{{title}}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="t-you"></view>
|
<view class="t-you"></view>
|
||||||
</view>
|
</view>
|
||||||
@ -84,7 +84,7 @@
|
|||||||
|
|
||||||
</view>
|
</view>
|
||||||
<view class="list-box">
|
<view class="list-box">
|
||||||
<view class="l-left" @click="showgoods = true">
|
<view class="l-left" @click="handleClick">
|
||||||
<text style="color: red;font-weight: bold;text-align: center;">*</text>
|
<text style="color: red;font-weight: bold;text-align: center;">*</text>
|
||||||
商品选择
|
商品选择
|
||||||
<text class="xixi">点击选择</text>
|
<text class="xixi">点击选择</text>
|
||||||
@ -128,7 +128,7 @@
|
|||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="list-box" @click="toSelectProject()">
|
<view class="list-box" @click="toSelectProject()" v-if="isInsert">
|
||||||
<view class="l-left">检测流程</view>
|
<view class="l-left">检测流程</view>
|
||||||
<view class="l-right">
|
<view class="l-right">
|
||||||
|
|
||||||
@ -138,22 +138,25 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
|
||||||
<view class="dlanniu" @click="getgoodes()">
|
<view class="dlanniu" @click="getgoodes()" v-if="isInsert">
|
||||||
<text>开始检测</text>
|
<text>开始检测</text>
|
||||||
</view>
|
</view>
|
||||||
<u-picker :show="show" :columns="columns" @confirm="confirms" @cancel="cancels" keyName="label"></u-picker>
|
<view class="dlanniu" @click="edit()" v-else>
|
||||||
|
<text>确认修改</text>
|
||||||
|
</view>
|
||||||
|
<u-picker :show="show" :columns="columns" :defaultIndex="kehuDefaultIndex" @confirm="confirms" @cancel="cancels" keyName="label"></u-picker>
|
||||||
|
|
||||||
<u-picker :show="showgoods" ref="uPicker" :columns="goodsone" @confirm="confirmgoods" @cancel="cancelgoods"
|
<u-picker :show="showgoods" ref="uPicker" :columns="goodsone" :defaultIndex="goodsDefaultIndex" @confirm="confirmgoods" @cancel="cancelgoods"
|
||||||
@change="changeHandler" keyName="label"></u-picker>
|
@change="changeHandler" keyName="label"></u-picker>
|
||||||
|
|
||||||
<u-picker :show="shownature" :columns="nature" @confirm="confirmsnature" @cancel="cancelsnature"
|
<u-picker :show="shownature" :columns="nature" @confirm="confirmsnature" @cancel="cancelsnature"
|
||||||
keyName="label"></u-picker>
|
keyName="label"></u-picker>
|
||||||
|
|
||||||
<u-picker :show="showxin" :columns="xinlist" @confirm="confirmxin" @cancel="cancelxin"
|
<u-picker :show="showxin" :columns="xinlist" :defaultIndex="xinDefaultIndex" @confirm="confirmxin" @cancel="cancelxin"
|
||||||
keyName="label"></u-picker>
|
keyName="label"></u-picker>
|
||||||
<u-picker :show="showzhi" :columns="zhilist" @confirm="confirmzhi" @cancel="cancelzhi"
|
<u-picker :show="showzhi" :columns="zhilist" @confirm="confirmzhi" @cancel="cancelzhi"
|
||||||
keyName="label"></u-picker>
|
keyName="label"></u-picker>
|
||||||
<u-picker :show="showLeadMan" :columns="leadManList" @confirm="confirmLeadMan" @cancel="cancelLeadMan"
|
<u-picker :show="showLeadMan" :columns="leadManList" :defaultIndex="defaultIndex" @confirm="confirmLeadMan" @cancel="cancelLeadMan"
|
||||||
keyName="nickname"></u-picker>
|
keyName="nickname"></u-picker>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@ -175,6 +178,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
imagePath: '',
|
imagePath: '',
|
||||||
fileList: [],
|
fileList: [],
|
||||||
|
title: '新增线下订单',
|
||||||
customerSource: '',
|
customerSource: '',
|
||||||
buyName: '',
|
buyName: '',
|
||||||
nickname:'',
|
nickname:'',
|
||||||
@ -193,6 +197,9 @@ export default {
|
|||||||
showLeadMan: false,
|
showLeadMan: false,
|
||||||
skuId: 0,
|
skuId: 0,
|
||||||
inspectionWorkNodes: [],
|
inspectionWorkNodes: [],
|
||||||
|
defaultIndex:[0],
|
||||||
|
kehuDefaultIndex:[0],
|
||||||
|
goodsDefaultIndex:[0,0],
|
||||||
columns: [],
|
columns: [],
|
||||||
options: [],
|
options: [],
|
||||||
nature: [],
|
nature: [],
|
||||||
@ -217,10 +224,13 @@ export default {
|
|||||||
customerData: [],
|
customerData: [],
|
||||||
inspectionWorkNodeStr: "",
|
inspectionWorkNodeStr: "",
|
||||||
leadManId:undefined,
|
leadManId:undefined,
|
||||||
leadManList: []
|
leadManList: [],
|
||||||
|
isInsert:true,
|
||||||
|
inspectionId: undefined,
|
||||||
|
xinDefaultIndex:[0]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad(options) {
|
||||||
this.getinitialize()
|
this.getinitialize()
|
||||||
this.getLeadeMan()
|
this.getLeadeMan()
|
||||||
uni.$on('selectProject', (data) => {
|
uni.$on('selectProject', (data) => {
|
||||||
@ -229,15 +239,29 @@ export default {
|
|||||||
this.inspectionWorkNodeStr = this.inspectionWorkNodeStr + this.inspectionWorkNodes[i].projectName + " "
|
this.inspectionWorkNodeStr = this.inspectionWorkNodeStr + this.inspectionWorkNodes[i].projectName + " "
|
||||||
this.inspectionWorkNodes[i].orderNum = i + 1
|
this.inspectionWorkNodes[i].orderNum = i + 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
if (options.inspectionInfoId){
|
||||||
|
this.isInsert = false
|
||||||
|
this.inspectionId = options.inspectionInfoId
|
||||||
|
this.title = '修改线下订单'
|
||||||
|
this.getInspectionInfo()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
handleClick() {
|
||||||
|
if (this.isInsert) {
|
||||||
|
this.showgoods = true;
|
||||||
|
} else {
|
||||||
|
uni.showToast({
|
||||||
|
title: '不可修改商品',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
changeHandler(e) {
|
changeHandler(e) {
|
||||||
const {
|
const {
|
||||||
columnIndex,
|
columnIndex,
|
||||||
@ -393,8 +417,136 @@ export default {
|
|||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
}, 2000);
|
}, 2000);
|
||||||
|
},
|
||||||
|
async edit() {
|
||||||
|
if (this.carNum == '' || this.customerSource == "" || this.leadManId == undefined) {
|
||||||
|
uni.showToast({
|
||||||
|
title: '车牌号 客户来源 引车员 必填!',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
let data = {
|
||||||
|
partnerId: uni.getStorageSync('partnerId'),
|
||||||
|
id: this.inspectionId,
|
||||||
|
buyName: this.buyName,
|
||||||
|
buyPhone: this.buyPhone,
|
||||||
|
userAddress: this.userAddress,
|
||||||
|
unitName: this.unitName,
|
||||||
|
carNum: this.carNum,
|
||||||
|
carModel: this.carModel,
|
||||||
|
carStatus: this.carStatus,
|
||||||
|
carIdNo: this.carIdNo,
|
||||||
|
customerSource: this.customerSource,
|
||||||
|
skuId: this.skuId,
|
||||||
|
carNature: this.carNature,
|
||||||
|
inspectionWorkNodes: this.inspectionWorkNodes,
|
||||||
|
leadManId: this.leadManId
|
||||||
|
}
|
||||||
|
|
||||||
|
let res = await request({
|
||||||
|
url: '/system/info/update',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
if (res.code == 200) {
|
||||||
|
uni.showToast({
|
||||||
|
title: "修改成功"
|
||||||
|
})
|
||||||
|
let resp = await request({
|
||||||
|
url: '/system/info/getWeorkNodesById',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
inspectionId: this.inspectionId
|
||||||
|
}
|
||||||
|
})
|
||||||
|
//调用重新检测
|
||||||
|
let res = await request({
|
||||||
|
url: '/system/info/recheck',
|
||||||
|
method: 'post',
|
||||||
|
data: {
|
||||||
|
inspectionInfoId: this.inspectionId,
|
||||||
|
workNodes: resp.data
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
setTimeout(() => {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/staff/staff'
|
||||||
|
})
|
||||||
|
}, 2000);
|
||||||
|
},
|
||||||
|
/*根据工单Id查询工单详情*/
|
||||||
|
getInspectionInfo(){
|
||||||
|
request({
|
||||||
|
url: '/system/info/' + this.inspectionId,
|
||||||
|
method: 'get'
|
||||||
|
}).then(res => {
|
||||||
|
this.shoplist = res.data
|
||||||
|
this.buyName = res.data.buyName
|
||||||
|
this.buyPhone = res.data.buyPhone
|
||||||
|
this.userAddress = res.data.userAddress
|
||||||
|
this.unitName = res.data.unitName
|
||||||
|
this.carNum = res.data.carNum
|
||||||
|
this.carModel = res.data.carModel
|
||||||
|
this.carStatus = res.data.carStatus
|
||||||
|
this.carIdNo = res.data.carIdNo
|
||||||
|
this.customerSource = res.data.customerSource
|
||||||
|
this.skuId = res.data.skuId
|
||||||
|
this.carNature = res.data.carNature
|
||||||
|
this.leadManId = res.data.leadManId
|
||||||
|
setTimeout(() => {
|
||||||
|
let result = this.leadManList
|
||||||
|
.map((subArray, subArrayIndex) => {
|
||||||
|
const index = subArray.findIndex(item => item.id === res.data.leadManId);
|
||||||
|
if (index !== -1) {
|
||||||
|
// 返回的是子数组的索引和匹配项的索引
|
||||||
|
return { subArrayIndex, itemIndex: index };
|
||||||
|
} else {
|
||||||
|
// 没有找到匹配项,返回 null 或 undefined
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.filter(item => item !== null); // 过滤掉没有匹配的项
|
||||||
|
let index = result[0].itemIndex
|
||||||
|
let subArrayIndex = result[0].subArrayIndex
|
||||||
|
this.defaultIndex = [index]
|
||||||
|
this.nickname = this.leadManList[subArrayIndex][index].nickname
|
||||||
|
|
||||||
|
//客户来源
|
||||||
|
let kehuResult = this.columns
|
||||||
|
.map((subArray, subArrayIndex) => {
|
||||||
|
const index = subArray.findIndex(item => item.label === res.data.customerSource);
|
||||||
|
if (index !== -1) {
|
||||||
|
// 返回的是子数组的索引和匹配项的索引
|
||||||
|
return { subArrayIndex, itemIndex: index };
|
||||||
|
} else {
|
||||||
|
// 没有找到匹配项,返回 null 或 undefined
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.filter(item => item !== null); // 过滤掉没有匹配的项
|
||||||
|
this.kehuDefaultIndex = [kehuResult[0].itemIndex]
|
||||||
|
|
||||||
|
// 新旧车
|
||||||
|
//客户来源
|
||||||
|
let xinResult = this.xinlist
|
||||||
|
.map((subArray, subArrayIndex) => {
|
||||||
|
const index = subArray.findIndex(item => item.label === res.data.carStatus);
|
||||||
|
if (index !== -1) {
|
||||||
|
// 返回的是子数组的索引和匹配项的索引
|
||||||
|
return { subArrayIndex, itemIndex: index };
|
||||||
|
} else {
|
||||||
|
// 没有找到匹配项,返回 null 或 undefined
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.filter(item => item !== null); // 过滤掉没有匹配的项
|
||||||
|
let a = [kehuResult[0]]
|
||||||
|
this.xinDefaultIndex = [a.itemIndex]
|
||||||
|
}, 1000);
|
||||||
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
// 提交
|
// 提交
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -248,6 +248,7 @@ export default {
|
|||||||
tapqh(index) {
|
tapqh(index) {
|
||||||
this.tapindex = index
|
this.tapindex = index
|
||||||
this.infoDatas = []
|
this.infoDatas = []
|
||||||
|
this.pageNum = 1
|
||||||
this.getList()
|
this.getList()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user