|
@@ -143,7 +143,7 @@
|
|
|
</el-select>
|
|
|
<div style="margin-top: 20px" v-show="importData.warehouseId">
|
|
|
<el-upload
|
|
|
- :action="actionUrl+'/jdBack/excelImport'"
|
|
|
+ :action="actionUrl + '/jdBack/excelImport'"
|
|
|
:data="importData"
|
|
|
:headers="headers"
|
|
|
:on-success="handleSuccess"
|
|
@@ -393,6 +393,8 @@ let formConfig = reactive([
|
|
|
prop: "logisticsCompanyCode",
|
|
|
itemWidth: 50,
|
|
|
placeholder: "物流/快递公司",
|
|
|
+ filterable: true,
|
|
|
+ data: [],
|
|
|
style: {
|
|
|
width: "100%",
|
|
|
},
|
|
@@ -566,7 +568,8 @@ const handleEdit = (row, status) => {
|
|
|
const logisticsData = ref([]);
|
|
|
const getLogisticsData = (row) => {
|
|
|
proxy.post("/companyInfo/list", { pageNum: 1, pageSize: 999 }).then((res) => {
|
|
|
- logisticsData.value = res.reverse().slice(0, 100); //截取前100
|
|
|
+ // logisticsData.value = res.reverse().slice(0, 100); //截取前100
|
|
|
+ logisticsData.value = res.reverse();
|
|
|
formConfig[2].data = logisticsData.value.map((x) => ({
|
|
|
label: x.name,
|
|
|
value: x.code,
|