|
|
|
@ -8,6 +8,23 @@
|
|
|
|
|
<el-form :inline="true" :model="TopQuery" class="el-fr-d"> |
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item class="el-btn"> |
|
|
|
|
<el-form-item label="目的仓"> |
|
|
|
|
<el-select |
|
|
|
|
collapse-tags |
|
|
|
|
:max-collapse-tags="3" |
|
|
|
|
v-model="TopQuery.destinationWarehouse" |
|
|
|
|
multiple |
|
|
|
|
placeholder="请选择仓库" |
|
|
|
|
style="min-width: 340px" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in warehouseList" |
|
|
|
|
:key="item.value" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="配送日期"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="TopQuery.time" |
|
|
|
@ -114,10 +131,7 @@
|
|
|
|
|
<div v-loading="Abnormaladjustment.loading" element-loading-text="Loading..."> |
|
|
|
|
<el-form :model="Abnormaladjustment.form" label-width="auto" style="max-width: 600px"> |
|
|
|
|
<el-form-item label="异动费用:"> |
|
|
|
|
<el-input-number |
|
|
|
|
v-model="Abnormaladjustment.form.changeAmount" |
|
|
|
|
:controls="false" |
|
|
|
|
/> |
|
|
|
|
<el-input-number v-model="Abnormaladjustment.form.changeAmount" :controls="false" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="异动费用备注:"> |
|
|
|
|
<el-input |
|
|
|
@ -243,6 +257,7 @@ import {
|
|
|
|
|
$_Traincostbreakdownsubmit, |
|
|
|
|
$_Traincostbreakdownsubmitpage, |
|
|
|
|
} from '@/api/storagecost/index.js'; |
|
|
|
|
|
|
|
|
|
import { ElMessageBox, ElMessage } from 'element-plus'; |
|
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
|
import { useStore } from 'vuex'; |
|
|
|
@ -250,6 +265,7 @@ import dayjs from 'dayjs';
|
|
|
|
|
const $router = useRouter(); //跳转 |
|
|
|
|
const $useStore = useStore(); //权限 |
|
|
|
|
const $route = useRoute(); //获取地址栏参数 |
|
|
|
|
const warehouseList = ref([]); |
|
|
|
|
const TopQuery = ref({}); |
|
|
|
|
// 异动跳转 |
|
|
|
|
const Abnormaladjustment = ref({ |
|
|
|
@ -417,9 +433,16 @@ const TopSearch = () => {
|
|
|
|
|
delete details.query.deliveryDateStart; |
|
|
|
|
delete details.query.deliveryDateEnd; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (TopQuery.value.destinationWarehouse?.length) { |
|
|
|
|
details.query.destinationWarehouse = TopQuery.value.destinationWarehouse.join(','); |
|
|
|
|
} else { |
|
|
|
|
delete details.query.destinationWarehouse; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
// 网页顶部搜索按钮 |
|
|
|
|
const searchChange = () => { |
|
|
|
|
TopSearch(); //顶部搜索条件处理 |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
// 清空 |
|
|
|
@ -475,8 +498,6 @@ function updateDictionary(targetArray, dictionaryType) {
|
|
|
|
|
// 页面初始化 |
|
|
|
|
const onLoad = async value => { |
|
|
|
|
console.log($route, 'route'); |
|
|
|
|
|
|
|
|
|
await TopSearch(); //顶部搜索条件处理 |
|
|
|
|
let data = { |
|
|
|
|
current: details.page.currentPage, |
|
|
|
|
size: details.page.pageSize, |
|
|
|
@ -500,9 +521,21 @@ const onLoad = async value => {
|
|
|
|
|
details.loadingObj.list = false; |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 获取仓库 |
|
|
|
|
const MyWarehouseList = () => { |
|
|
|
|
$_getMyWarehouseList().then(res => { |
|
|
|
|
console.log(res, '仓库列表'); |
|
|
|
|
res.data.data.forEach(item => { |
|
|
|
|
warehouseList.value.push({ |
|
|
|
|
value: item.name, |
|
|
|
|
label: item.name, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 页面初始化方法 |
|
|
|
|
const PageOnload = () => { |
|
|
|
|
MyWarehouseList(); //获取仓库 |
|
|
|
|
onLoad(); //获取列表参数 |
|
|
|
|
}; |
|
|
|
|
// 页面初始化方法 |
|
|
|
@ -538,6 +571,7 @@ const AbnormaladjustmentClick = row => {
|
|
|
|
|
Abnormaladjustment.value.dialogVisible = true; |
|
|
|
|
Abnormaladjustment.value.form = { id, changeAmount, changeNote }; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 异动调整提交 |
|
|
|
|
const AbnormaladjustmentSubmit = async () => { |
|
|
|
|
if (!Abnormaladjustment.value.form.changeNote) { |
|
|
|
|