1、完善发货模板
2、完善运输计划 3、完善运单管理
This commit is contained in:
@@ -54,30 +54,27 @@
|
||||
</template>
|
||||
|
||||
<template #menu="{ row, index }">
|
||||
<el-button
|
||||
<el-link
|
||||
type="primary"
|
||||
text
|
||||
v-if="hasPermission('common_address_view')"
|
||||
@click="$refs.crud.rowView(row, index)"
|
||||
>
|
||||
查看
|
||||
</el-button>
|
||||
<el-button
|
||||
</el-link>
|
||||
<el-link
|
||||
type="primary"
|
||||
text
|
||||
v-if="hasPermission('common_address_edit') && !row.readonly"
|
||||
@click="$refs.crud.rowEdit(row, index)"
|
||||
>
|
||||
编辑
|
||||
</el-button>
|
||||
<el-button
|
||||
</el-link>
|
||||
<el-link
|
||||
type="primary"
|
||||
text
|
||||
v-if="hasPermission('common_address_delete') && !row.readonly"
|
||||
@click="rowDel(row)"
|
||||
>
|
||||
删除
|
||||
</el-button>
|
||||
</el-link>
|
||||
</template>
|
||||
|
||||
<template #addressType-form>
|
||||
@@ -462,7 +459,9 @@ export default {
|
||||
status: 1,
|
||||
})
|
||||
.then(res => {
|
||||
this.terminalOptions = this.normalizeSourceOptions(this.getRecords(res));
|
||||
this.terminalOptions = this.normalizeSourceOptions(this.getRecords(res)).filter(item =>
|
||||
this.sameId(item.parentId, this.form.portId)
|
||||
);
|
||||
})
|
||||
.finally(() => {
|
||||
this.terminalLoading = false;
|
||||
|
||||
Reference in New Issue
Block a user