|
|
|
@ -8,8 +8,16 @@
|
|
|
|
|
type="border-card" |
|
|
|
|
@tab-click="TabactiveClick" |
|
|
|
|
> |
|
|
|
|
<el-tab-pane label="订单填写" :name="1"></el-tab-pane> |
|
|
|
|
<el-tab-pane label="零担填写" :name="2"> </el-tab-pane> |
|
|
|
|
<el-tab-pane |
|
|
|
|
label="订单信息" |
|
|
|
|
:name="1" |
|
|
|
|
:disabled="form.basis.TabactiveName == 2" |
|
|
|
|
></el-tab-pane> |
|
|
|
|
<el-tab-pane |
|
|
|
|
label="零担信息" |
|
|
|
|
:name="2" |
|
|
|
|
:disabled="form.basis.TabactiveName == 1" |
|
|
|
|
></el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
|
</div> |
|
|
|
|
<!-- 主体内容 --> |
|
|
|
@ -490,16 +498,16 @@
|
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item |
|
|
|
|
label="占比(%)" |
|
|
|
|
label="金额(元)" |
|
|
|
|
:prop="`responsibilitiesList[${index}.responsibilityRatio]`" |
|
|
|
|
:rules="ruleForm.responsibilityRatio" |
|
|
|
|
@change="CompanyProportionInput" |
|
|
|
|
> |
|
|
|
|
<el-input-number |
|
|
|
|
v-model="item.responsibilityRatio" |
|
|
|
|
:min="0" |
|
|
|
|
:max="item.ProportionMax" |
|
|
|
|
:controls="false" |
|
|
|
|
:precision="2" |
|
|
|
|
:value-on-clear="0" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
@ -553,11 +561,11 @@
|
|
|
|
|
<div></div> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
<div class="el_top"> |
|
|
|
|
<!-- <div class="el_top"> |
|
|
|
|
<div class="el_Package_num"> |
|
|
|
|
<span>公司占比:{{ form.Proportion }}(%)</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> --> |
|
|
|
|
</el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
|
|
|
|
|
@ -931,7 +939,7 @@ const form = ref({
|
|
|
|
|
responsibilityRatio: 0, //占比 |
|
|
|
|
description: '', //三方责任人 |
|
|
|
|
tripartite: '', //说明 |
|
|
|
|
ProportionMax: 100, //最大值校验 |
|
|
|
|
ProportionMax: 99999999999999999, //最大值校验 |
|
|
|
|
Processingoptions: [ |
|
|
|
|
//提货责任方列表 |
|
|
|
|
], |
|
|
|
@ -1014,7 +1022,7 @@ const Modificationsubmission = () => {
|
|
|
|
|
if (['10', '90'].includes($route.query.workOrderStatus)) { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
return false |
|
|
|
|
return false; |
|
|
|
|
}; |
|
|
|
|
// 申诉成立权限 |
|
|
|
|
const Appealestablished = () => { |
|
|
|
@ -1023,14 +1031,14 @@ const Appealestablished = () => {
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return false |
|
|
|
|
return false; |
|
|
|
|
}; |
|
|
|
|
// 处理结果修改权限 |
|
|
|
|
const resultmodification = () => { |
|
|
|
|
if ($route.query.workOrderStatus == '21') { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
return false |
|
|
|
|
return false; |
|
|
|
|
}; |
|
|
|
|
// 工单状态 |
|
|
|
|
const NumberState = computed(() => { |
|
|
|
@ -1084,7 +1092,7 @@ const responsibilities = async () => {
|
|
|
|
|
responsibilityRatio: 0, //占比 |
|
|
|
|
description: '', //三方责任人 |
|
|
|
|
tripartite: '', //说明 |
|
|
|
|
ProportionMax: 100, //最大值校验 |
|
|
|
|
ProportionMax: 99999999999999999, //最大值校验 |
|
|
|
|
Processingoptions: [ |
|
|
|
|
//提货责任方列表 |
|
|
|
|
...ResponsibleParty.value, |
|
|
|
@ -1128,11 +1136,10 @@ const PageState = () => {
|
|
|
|
|
// ); |
|
|
|
|
// form.value.UserPermissions = matchingItem.dictValue; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 获取用户角色信息,并拆分为数组 |
|
|
|
|
const roleNames = await JSON.parse(localStorage.getItem('TWMS-userInfo')).content.role_name.split( |
|
|
|
|
',' |
|
|
|
|
); |
|
|
|
|
const roleNames = await JSON.parse( |
|
|
|
|
localStorage.getItem('TWMS-userInfo') |
|
|
|
|
).content.role_name.split(','); |
|
|
|
|
// 根据角色名称查找匹配项目 |
|
|
|
|
const matchingItem = res.data.data.find(item => roleNames.includes(item.dictValue)); |
|
|
|
|
if (matchingItem) { |
|
|
|
@ -1140,10 +1147,6 @@ const PageState = () => {
|
|
|
|
|
} else { |
|
|
|
|
form.value.UserPermissions = '仓库客服'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
// 内部责任划分初始化 |
|
|
|
|
responsibilities(); |
|
|
|
@ -1184,6 +1187,9 @@ const getPageData = async () => {
|
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
form.value.PackageList[0].packageCode |
|
|
|
|
? (form.value.basis.TabactiveName = 1) |
|
|
|
|
: (form.value.basis.TabactiveName = 2); |
|
|
|
|
// 基础信息 |
|
|
|
|
// trainNumber: ['3', '5', '6', '7'].includes(form.value.groundlineType), //车次号 |
|
|
|
|
// deliveryTime: ['5', '6', '7'].includes(form.value.groundlineType), //配送时间 |
|
|
|
@ -1252,7 +1258,7 @@ const getPageData = async () => {
|
|
|
|
|
responsibilityRatio: Number(item.responsibilityRatio), //占比 |
|
|
|
|
description: item.description, //说明 |
|
|
|
|
tripartite: item.tripartite, //责任人 |
|
|
|
|
ProportionMax: 100, //最大值校验 |
|
|
|
|
ProportionMax: 999999999999999999, //最大值校验 |
|
|
|
|
inputDisplay: true, |
|
|
|
|
valueId: item.id, |
|
|
|
|
Processingoptions: [ |
|
|
|
@ -1273,7 +1279,7 @@ const getPageData = async () => {
|
|
|
|
|
id: form.value.responsibilitiesList.length + 1, |
|
|
|
|
}; |
|
|
|
|
form.value.responsibilitiesList.push(data); |
|
|
|
|
calculateMaxValues(); |
|
|
|
|
// calculateMaxValues(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 是否置空完结初始值 |
|
|
|
@ -1498,7 +1504,7 @@ const AddResponsible = () => {
|
|
|
|
|
responsibilityRatio: 0, //占比 |
|
|
|
|
description: '', //三方责任人 |
|
|
|
|
tripartite: '', //说明 |
|
|
|
|
ProportionMax: 100, //最大值校验 |
|
|
|
|
ProportionMax: 999999999999999999999999999999, //最大值校验 |
|
|
|
|
inputDisplay: false, //是否可以输入 |
|
|
|
|
Processingoptions: [ |
|
|
|
|
//提货责任方列表 |
|
|
|
@ -1514,7 +1520,7 @@ const AddResponsible = () => {
|
|
|
|
|
id: form.value.responsibilitiesList.length + 1, |
|
|
|
|
}; |
|
|
|
|
form.value.responsibilitiesList.push(data); |
|
|
|
|
calculateMaxValues(); |
|
|
|
|
// calculateMaxValues(); |
|
|
|
|
}; |
|
|
|
|
// 责任方移除 |
|
|
|
|
const Responsemoval = index => { |
|
|
|
@ -1528,7 +1534,7 @@ const Responsemoval = index => {
|
|
|
|
|
form.value.responsibilitiesList.forEach((item, index) => { |
|
|
|
|
item.id = index + 1; |
|
|
|
|
}); |
|
|
|
|
calculateMaxValues(); //调用占比计算 |
|
|
|
|
// calculateMaxValues(); //调用占比计算 |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '移除成功.', |
|
|
|
|
type: 'success', |
|
|
|
@ -1538,6 +1544,7 @@ const Responsemoval = index => {
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const calculateMaxValues = () => { |
|
|
|
|
return |
|
|
|
|
// 计算每个输入框剩余最大值 |
|
|
|
|
let data = form.value.responsibilitiesList; |
|
|
|
|
let totalUsed = data.reduce((acc, item) => acc + item.responsibilityRatio, 0); |
|
|
|
@ -2072,7 +2079,9 @@ const onSubmit = () => {
|
|
|
|
|
data.businessId = item.businessId; //责任方id |
|
|
|
|
} else { |
|
|
|
|
data.personResponsibleId = Responsibleperson ? Responsibleperson.id : null; //责任人id |
|
|
|
|
data.personResponsibleName = item.ResponsibleoNameptions.find(res => res.id == item.personResponsibleId)?.name || item.personResponsibleId; //责任人名称 |
|
|
|
|
data.personResponsibleName = |
|
|
|
|
item.ResponsibleoNameptions.find(res => res.id == item.personResponsibleId)?.name || |
|
|
|
|
item.personResponsibleId; //责任人名称 |
|
|
|
|
data.businessName = item.Responsibleoptions.find( |
|
|
|
|
res => res.value == item.businessId |
|
|
|
|
).label; //责任方 |
|
|
|
|