|
|
|
@ -6,7 +6,7 @@
|
|
|
|
|
<el-row v-if="search"> |
|
|
|
|
<!-- 查询模块 --> |
|
|
|
|
<el-form :inline="true" :model="queryTop" class="el-fr-d"> |
|
|
|
|
<div> |
|
|
|
|
<!-- <div> |
|
|
|
|
<el-form-item label="承运方名称"> |
|
|
|
|
<el-input v-model="queryTop.region" placeholder="请输入承运方名称" /> |
|
|
|
|
</el-form-item> |
|
|
|
@ -22,7 +22,7 @@
|
|
|
|
|
:default-time="defaultTime2" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
|
</div> --> |
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item class="el-btn"> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
|
|
|
@ -39,9 +39,9 @@
|
|
|
|
|
<el-button type="primary" @click="AddInfo" |
|
|
|
|
><el-icon><Download /></el-icon>导出价格</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" @click="AddInfo" |
|
|
|
|
<!-- <el-button type="primary" @click="AddInfo" |
|
|
|
|
><el-icon><Upload /></el-icon>导入价格</el-button |
|
|
|
|
> |
|
|
|
|
> --> |
|
|
|
|
<el-button type="primary" @click="Informationadd" |
|
|
|
|
><el-icon><Plus /></el-icon>新增</el-button |
|
|
|
|
> |
|
|
|
@ -122,7 +122,15 @@
|
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="司机:" prop="driverId"> |
|
|
|
|
<el-select v-model="form.driverId" placeholder="请选择司机"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="form.driverId" |
|
|
|
|
:multiple="PriceconfigurationTitle=='价格配置(新增)' ? true : false" |
|
|
|
|
collapse-tags |
|
|
|
|
filterable |
|
|
|
|
collapse-tags-tooltip |
|
|
|
|
:max-collapse-tags="3" |
|
|
|
|
placeholder="请选择司机" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in driver" |
|
|
|
|
:key="item.value" |
|
|
|
@ -333,14 +341,14 @@ const selectionChange = list => {
|
|
|
|
|
// 网页顶部搜索按钮 |
|
|
|
|
const searchChange = () => { |
|
|
|
|
// details.search = false; //关闭搜索 |
|
|
|
|
onLoad() |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
const searchReset = () => { |
|
|
|
|
details.query={} |
|
|
|
|
queryTop.value={} |
|
|
|
|
details.query = {}; |
|
|
|
|
queryTop.value = {}; |
|
|
|
|
handleClearTableQuery(details.columnList); |
|
|
|
|
onLoad() |
|
|
|
|
} |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
// 每页多少条 |
|
|
|
|
const sizeChange = val => { |
|
|
|
|
details.page.pageSize = val; |
|
|
|
@ -481,9 +489,9 @@ const AddInfo=()=>{
|
|
|
|
|
ElMessage({ |
|
|
|
|
message: '功能维护', |
|
|
|
|
type: 'warning', |
|
|
|
|
}) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
}; |
|
|
|
|
//页面初始化方法 |
|
|
|
|
PageOnload(); |
|
|
|
|
// 价格配置提交 |
|
|
|
@ -494,23 +502,16 @@ const Priceconfigurationsubmission = async () => {
|
|
|
|
|
} |
|
|
|
|
const categoryMap = new Map(details.data.map(item => [item.driverId, item])); |
|
|
|
|
//这里查找是否已经存在添加过的品类(只能查询当前页) |
|
|
|
|
if (categoryMap.has(form.value.driverId)) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '司机已经存在', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
let data = { |
|
|
|
|
warehouseName: |
|
|
|
|
ServiceWarehouse.value.find(res => res.value == form.value.warehouseId)?.label || '', //仓库名称 |
|
|
|
|
warehouseId: form.value.warehouseId, //仓库ID |
|
|
|
|
driverId: form.value.driverId, //司机ID |
|
|
|
|
driverName: driver.value.find(res => res.value == form.value.driverId)?.label || '', //司机名称 |
|
|
|
|
templateId: form.value.templateId, //模板ID |
|
|
|
|
}; |
|
|
|
|
tcloading.value = true; |
|
|
|
|
if (PriceconfigurationTitle.value == '价格配置(编辑)') { |
|
|
|
|
data.driverName =driver.value.find(res => res.value == form.value.driverId)?.label || '', //司机名称 |
|
|
|
|
data.driverId = form.value.driverId, //司机ID |
|
|
|
|
data.id = rowData.value.id; |
|
|
|
|
$_ServiceProviderPriceupdate(data) |
|
|
|
|
.then(res => { |
|
|
|
@ -531,6 +532,13 @@ const Priceconfigurationsubmission = async () => {
|
|
|
|
|
tcloading.value = false; |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
data['drivers'] =[] |
|
|
|
|
form.value.driverId.forEach(item => { |
|
|
|
|
data['drivers'].push({ |
|
|
|
|
driverName:driver.value.find(res => res.value == item)?.label || '', |
|
|
|
|
driverId:item, |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
$_ServiceProviderPricesave(data) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res, '提交成功'); |
|
|
|
@ -553,7 +561,7 @@ const Priceconfigurationsubmission = async () => {
|
|
|
|
|
}; |
|
|
|
|
// 新增 |
|
|
|
|
const Informationadd = () => { |
|
|
|
|
form.value.driverId = ''; |
|
|
|
|
form.value.driverId = []; |
|
|
|
|
form.value.warehouseId = ''; |
|
|
|
|
form.value.templateId = ''; |
|
|
|
|
PriceTemplate.value = []; |
|
|
|
@ -570,17 +578,19 @@ const EditTemplate = async row => {
|
|
|
|
|
rowData.value = row; |
|
|
|
|
form.value.warehouseId = row.warehouseId; //仓库 |
|
|
|
|
await Getdriver(); |
|
|
|
|
|
|
|
|
|
await GetTemplate(); //获取可用模板 |
|
|
|
|
console.log(row); |
|
|
|
|
Priceconfiguration.value = true; |
|
|
|
|
PriceconfigurationTitle.value = '价格配置(编辑)'; |
|
|
|
|
form.value.driverId = row.driverId; //司机 |
|
|
|
|
form.value.templateId = row.templateId; |
|
|
|
|
PriceTemplate.value = [ |
|
|
|
|
{ |
|
|
|
|
value: row.templateId, |
|
|
|
|
label: row.templateName, |
|
|
|
|
}, |
|
|
|
|
]; |
|
|
|
|
// PriceTemplate.value = [ |
|
|
|
|
// { |
|
|
|
|
// value: row.templateId, |
|
|
|
|
// label: row.templateName, |
|
|
|
|
// }, |
|
|
|
|
// ]; |
|
|
|
|
}; |
|
|
|
|
const deleteTemplate = row => { |
|
|
|
|
ElMessageBox.confirm('是否确认删除该数据?', '提示', { |
|
|
|
@ -645,7 +655,7 @@ const deleteTemplate = row => {
|
|
|
|
|
width: 15%; |
|
|
|
|
align-items: flex-start; |
|
|
|
|
.el-form-item__content { |
|
|
|
|
justify-content: flex-end; |
|
|
|
|
// justify-content: flex-end; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|