diff --git a/src/page/index/index.vue b/src/page/index/index.vue
index 48577e25..5cd8b93f 100644
--- a/src/page/index/index.vue
+++ b/src/page/index/index.vue
@@ -15,7 +15,7 @@
-
+
diff --git a/src/views/aftersales/VueTemp.vue b/src/views/aftersales/VueTemp.vue
index 782e94aa..dfb3077f 100644
--- a/src/views/aftersales/VueTemp.vue
+++ b/src/views/aftersales/VueTemp.vue
@@ -100,38 +100,54 @@
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- 搜 索
+ 搜 索
清 空
@@ -398,12 +414,21 @@
label="配送司机"
v-if="groundlineSet || groundlineType == 3 || groundlineType == 4"
>
-
+ >
+
+
@@ -530,7 +555,7 @@
-
+
{
let data = {
...val,
};
- columnList[2].checkarr = [];//重置下拉搜索框
+ columnList[2].checkarr = []; //重置下拉搜索框
columnList[3].checkarr = [];
data.current = page.value.currentPage; //页码
data.size = page.value.pageSize; //条数
@@ -1303,7 +1343,7 @@ const IndexTable = val => {
} else if (item.workOrderType == 5) {
item.workOrderTypeName = columnList[2].checkarr[4].label; //其他
}
-
+ // 提货环节下拉赋值
if (item.discoveryNode == 1) {
item.discoveryNodeName = columnList[3].checkarr[0].label; //提货环节
} else if (item.discoveryNode == 2) {
@@ -1385,42 +1425,99 @@ const AddInfo = () => {
// 首页新增表单确定
const ConfirmForm = () => {
- console.log(Indexform.value.processor, 'Indexform.value.processor');
+ console.log(warehouseData.value, '准备好的数据');
+ console.log(Indexform.value.duty, '要筛选的数据');
+ let filteredB = warehouseData.value.filter(item => Indexform.value.duty.includes(item.id));
+ console.log(filteredB);
+ // 匹配司机名字
+
+ Indexform.value.deliveryDriver = DeliveryDriver.value.find(
+ item => item.value == Indexform.value.deliveryDriver
+ ).label;
+ console.log(Indexform.value.deliveryDriver); // 输出李华
FromDisabled.value = false; //启用输入框
let processorEntityList = [];
+
+ const matchingObjects = warehouseData.value.filter(obj =>
+ Indexform.value.processor.includes(obj.value)
+ );
+ let name = matchingObjects.map(item => item.label);
+ name = name.join(',');
+
+ const matchingObjectsT = warehouseData.value.filter(obj =>
+ Indexform.value.duty.includes(obj.value)
+ );
+ let nameS = matchingObjectsT.map(item => item.label);
+ nameS = nameS.join(',');
+ //处理方
let ProcessingParty = {
- //处理方
- businessName: warehouseData.value.find(row => row.value == Indexform.value.processor)?.label,
- businessId: Indexform.value.processor,
+ businessName: name,
+ businessId: Indexform.value.processor.join(','),
conditions: 1,
typesOf: 2,
};
processorEntityList.push(ProcessingParty);
+ //责任方
let ResponsibleParty = {
- //责任方
- businessName: warehouseData.value.find(row => row.value == Indexform.value.duty).label,
- businessId: Indexform.value.duty,
+ businessName: nameS,
+ businessId: Indexform.value.duty.join(','),
conditions: 1,
typesOf: 1,
};
+ let a = [
+ {
+ value: '1',
+ label: '张三',
+ },
+ {
+ value: '2',
+ label: '张四',
+ },
+ {
+ value: '3',
+ label: '张五',
+ },
+ {
+ value: '4',
+ label: '张六',
+ },
+ ];
+ let Tc = [2, 4];
+ Tc.forEach(item => {
+ console.log(item, '责任方');
+ processorEntityList.push({
+ businessName: nameS,
+ businessId: item,
+ conditions: 1,
+ typesOf: 1,
+ });
+ });
processorEntityList.push(ResponsibleParty);
- Indexform.value.processorEntityList = processorEntityList;
- let DataSubmit = { ...Indexform.value };
+ console.log(processorEntityList, 'processorEntityList');
+ let DataSubmit = { ...Indexform.value }; //定义初始化
+ DataSubmit.processorEntityList = processorEntityList;
delete DataSubmit.duty, //移除多余字段
delete DataSubmit.processor; //移除多余字段
console.log(DataSubmit, '处理好的表单信息');
+ console.log(warehouseData.value, 'warehouseData.value');
+
Indexdialog.value = false; //关闭表单弹窗
- $_submit(DataSubmit).then(res => {
- if (res.data.code == 200) {
- ElMessage({
- message: res.data.msg,
- type: 'success',
- });
- IndexTable();
- }
- });
+ // $_submit(DataSubmit).then(res => {
+ // if (res.data.code == 200) {
+ // ElMessage({
+ // message: res.data.msg,
+ // type: 'success',
+ // });
+ // Indexform.value = {}; //重置表单
+ // IndexTable();
+ // }
+ // });
+};
+// 顶部搜索
+const searchHide = () => {
+ console.log(details);
+ details.search = !details.search;
};
-
// 首页查看详情按钮
const view = val => {
console.log(val, '当前行数据');
@@ -1564,8 +1661,6 @@ const btnsc = val => {
console.log(val);
};
-
-
// // 下拉框搜索公共函数
// const updateDetailQuery = (index, propName, obj) => {
// // 更新或删除查询参数
@@ -1578,7 +1673,7 @@ const btnsc = val => {
// const processRowProperty = (index, row, details) => {
// const nameRegex = /(\w+)Name$/; // 捕获以'Name'结尾的属性名
// const match = row.prop.match(nameRegex);
-
+
// // 如果属性以'Name'结尾,则更新相应的查询参数
// if (match) {
// const basePropName = match[1]; // 获取不包含'Name'的属性名
@@ -1592,12 +1687,11 @@ const btnsc = val => {
// }
// };
-
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
console.log('index :>> ', index);
console.log('row :>> ', row);
-
+
processRowProperty(index, row, details);
console.log(details.query, details.query);
IndexTable(details.query);
@@ -1612,10 +1706,16 @@ const selectionChange = list => {
};
/** 页码改变执行的回调 */
-const currentChange = () => {
- console.log('');
+const currentChange = val => {
+ page.value.currentPage = val;
+ IndexTable();
+};
+// 每页多少条
+const sizeChange = val => {
+ console.log(val);
+ page.value.pageSize = val;
+ IndexTable();
};
-
const changeProcessingResults = val => {
// 首先删除取消的项目
ProcessingList.value = ProcessingList.value.filter(item => val.includes(item.state - 1));
@@ -1837,7 +1937,7 @@ const changeProcessingResults = val => {
}
.lptime {
margin-top: 30px;
- padding-left: 50px;
+ padding-left: 60px;
display: flex;
flex-direction: column;
font-size: 14px;
@@ -1893,10 +1993,21 @@ const changeProcessingResults = val => {
height: 38px;
}
}
-.el-fy{
+.el-fy {
flex: 1;
- display: flex;
- align-items: flex-end;
- margin-bottom: 10px;
+ display: flex;
+ align-items: flex-end;
+ margin-bottom: 10px;
+}
+.el-times {
+ :deep(.el-input__wrapper) {
+ height: 30px !important;
+ }
+}
+.el_tims_box {
+ display: flex;
+}
+.el-btn {
+ width: 100%;
}
diff --git a/src/views/distribution/checkInventoryTask/createTask.vue b/src/views/distribution/checkInventoryTask/createTask.vue
index 03667a4a..df6f41ff 100644
--- a/src/views/distribution/checkInventoryTask/createTask.vue
+++ b/src/views/distribution/checkInventoryTask/createTask.vue
@@ -31,6 +31,8 @@
创建盘点任务
+ 废弃
+ 延期
@@ -79,7 +81,7 @@
>
-
-
已盘点明细
-
-
未盘点明细
-
废弃
-
延期
-
对比数据
+
+ 已盘点明细
+
+ 未盘点明细
+
+ 对比数据
- {{
- props.row[item.prop] ? props.row[item.prop] : '/'
- }}
+ {{ props.row[item.prop] ? props.row[item.prop] : '/' }}
导出
-
{{
props.row[item.prop] == 1 ? '全部' : props.row[item.prop] == 2 ? '全仓' : '/'
@@ -163,7 +142,13 @@
-
+
@@ -179,10 +164,9 @@
盘点
-
@@ -229,7 +213,7 @@
@@ -250,9 +234,22 @@
:value="item.value"
/>
+
+
+
-
+
{{
props.row[item.prop] == 0
? '待盘点'
@@ -278,7 +275,7 @@
}}
-
+
-
-
-
-
-
-
+
+
+
+
+
-
-
-
+ v-model="WrapBarEditing.groundingPositionCode"
+ style="width: 240px"
+ filterable
+ remote
+ :remote-method="remoteMethod"
+ clearable
+ :options="optionss"
+ placeholder="请输入货位"
+ />
@@ -519,19 +519,14 @@
-
+
-
+
-