|
|
|
@ -390,10 +390,16 @@
|
|
|
|
|
</div> |
|
|
|
|
<div> |
|
|
|
|
<el-icon @click="Isfullscreen"><FullScreen /></el-icon> |
|
|
|
|
<el-icon @click="dialogExpandconfiguration=false"><Close /></el-icon> |
|
|
|
|
<el-icon @click="dialogExpandconfiguration = false"><Close /></el-icon> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<div> |
|
|
|
|
<span |
|
|
|
|
>当前仓库:<b>{{ dataRwo.name }}</b></span |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
<hr /> |
|
|
|
|
<el-form |
|
|
|
|
v-loading="Expandconfigurationloading" |
|
|
|
|
element-loading-text="Loading..." |
|
|
|
@ -414,6 +420,19 @@
|
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="是否自动释放"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="Expandconfigurationform.isAutoRelease" |
|
|
|
|
placeholder="请选择是否自动释放" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in Compulsoryoptions" |
|
|
|
|
:key="item.value" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<template #footer> |
|
|
|
|
<div class="dialog-footer"> |
|
|
|
@ -1025,24 +1044,30 @@ const Expandconfiguration = async row => {
|
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
dataRwo.value = row; |
|
|
|
|
console.log(dataRwo.value, ' dataRwo.value'); |
|
|
|
|
|
|
|
|
|
console.log('扩展配置'); |
|
|
|
|
try { |
|
|
|
|
let data = { |
|
|
|
|
warehouseId: row.id, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
details.loadingObj.list = true; //加载中 |
|
|
|
|
let _res = await $_warehouseConfig(data); |
|
|
|
|
|
|
|
|
|
if (_res.data.code == 200) { |
|
|
|
|
const { id, isStrictLoading } = _res.data.data; |
|
|
|
|
const { id, isStrictLoading, isAutoRelease } = _res.data.data; |
|
|
|
|
dialogExpandconfiguration.value = true; |
|
|
|
|
Expandconfigurationform.value.id = id; //id |
|
|
|
|
Expandconfigurationform.value.isStrictLoading = isStrictLoading; //是否强制装车 |
|
|
|
|
let form = Expandconfigurationform.value; |
|
|
|
|
form.id = id; //id |
|
|
|
|
form.isStrictLoading = isStrictLoading; //是否强制装车 |
|
|
|
|
form.isAutoRelease = isAutoRelease; //是否自动释放 |
|
|
|
|
} |
|
|
|
|
console.log(_res, '_res'); |
|
|
|
|
} catch (err) { |
|
|
|
|
console.log(err); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.list = false; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
// 扩展配置提交 |
|
|
|
@ -1255,6 +1280,7 @@ const newlyaddSubmit = () => {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.el_Expandconfiguration { |
|
|
|
|
display: flex; |
|
|
|
|
.el-form-item { |
|
|
|
|
flex-direction: column; |
|
|
|
|
width: 20%; |
|
|
|
|