|
@@ -47,6 +47,18 @@
|
|
|
highlight-current-row
|
|
|
@get-list="getListTwo"
|
|
|
@clickReset="clickResetTwo">
|
|
|
+ <template #blueprint="{ item }">
|
|
|
+ <div>
|
|
|
+ <img
|
|
|
+ v-if="item.blueprint"
|
|
|
+ style="margin-top: 3px; width: 40px; height: 40px; cursor: pointer; object-fit: contain; vertical-align: middle"
|
|
|
+ v-lazy="item.blueprint"
|
|
|
+ @click="openFile(item.blueprint)" />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template #size="{ item }">
|
|
|
+ <div>{{ item.length }} * {{ item.width }} * {{ item.height }}</div>
|
|
|
+ </template>
|
|
|
</byTable>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
@@ -389,9 +401,10 @@ const clickAccomplish = () => {
|
|
|
"/stockPreparation/submit",
|
|
|
selectData.value.map((item) => item.orderSkuId)
|
|
|
)
|
|
|
- .then();
|
|
|
- ElMessage({ message: "提交完成", type: "success" });
|
|
|
- getList();
|
|
|
+ .then(() => {
|
|
|
+ ElMessage({ message: "提交完成", type: "success" });
|
|
|
+ getList();
|
|
|
+ });
|
|
|
} else {
|
|
|
return ElMessage("请选择操作的数据");
|
|
|
}
|