1、完善发货模板

2、完善运输计划
3、完善运单管理
This commit is contained in:
2026-08-05 15:52:24 +08:00
parent e683c2cc00
commit 433c611195
72 changed files with 7556 additions and 772 deletions
+12 -18
View File
@@ -333,54 +333,48 @@
</template>
<template #menu="{ row, index }">
<el-button
<el-link
type="primary"
text
v-if="hasPermission('process_config_view')"
@click="$refs.crud.rowView(row, index)"
>
查看
</el-button>
<el-button
</el-link>
<el-link
type="primary"
text
v-if="canEdit(row)"
@click="$refs.crud.rowEdit(row, index)"
>
编辑
</el-button>
<el-button
</el-link>
<el-link
type="primary"
text
v-if="hasPermission('process_config_copy')"
@click="handleCopy(row)"
>
复制
</el-button>
<el-button
</el-link>
<el-link
type="primary"
text
v-if="canEnable(row)"
@click="handleAction('enable', row)"
>
启用
</el-button>
<el-button
</el-link>
<el-link
type="primary"
text
v-if="canDisable(row)"
@click="handleAction('disable', row)"
>
停用
</el-button>
<el-button
</el-link>
<el-link
type="primary"
text
v-if="canDelete(row)"
@click="rowDel(row)"
>
删除
</el-button>
</el-link>
</template>
</avue-crud>