This commit is contained in:
parent
591c91363a
commit
f00bb5f4a4
|
|
@ -123,7 +123,8 @@ export default {
|
|||
url: this.actions.get,
|
||||
loading: "加载中...",
|
||||
data: {
|
||||
id: this.dataId
|
||||
id: this.dataId,
|
||||
target_uid: this.dataId
|
||||
}
|
||||
}).then(a => {
|
||||
this.formOptions.data = a.data.BaseAdmin;
|
||||
|
|
@ -179,6 +180,4 @@ export default {
|
|||
};
|
||||
|
||||
</script>
|
||||
<style>
|
||||
|
||||
</style>
|
||||
<style></style>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<basic-page-list ref="listPage" :desc="desc" :options="pageOptions" @loadData="loadData">
|
||||
<template v-slot:column1="{ row }">
|
||||
<a-button @click.stop="pageDetail(row)">查看详情</a-button>
|
||||
<a-button @click.stop="pageDetail(row)">布产单详情</a-button>
|
||||
</template>
|
||||
|
||||
<template v-slot:column2="{ row }">
|
||||
|
|
@ -135,8 +135,6 @@ export default {
|
|||
//搜索区
|
||||
searchFormItems: [ // 子项
|
||||
|
||||
|
||||
|
||||
{
|
||||
title: '部门', span: 5,
|
||||
field: 'department_id',
|
||||
|
|
@ -201,7 +199,7 @@ export default {
|
|||
sortConfig: {
|
||||
defaultSort: {
|
||||
field: 'complete_time',
|
||||
order: 'asc'
|
||||
order: 'desc'
|
||||
},
|
||||
trigger: 'cell', // 触发排序的方式
|
||||
remote: true // 是否远程排序
|
||||
|
|
@ -216,7 +214,7 @@ export default {
|
|||
|
||||
|
||||
{ slots: { default: 'column1' }, title: '查看详情', width: 120 },
|
||||
{ field: 'department_name', title: '部门', sortable: true, width: 100 },
|
||||
{ field: 'department_name', title: '部门', sortable: true, width: 140 },
|
||||
{ field: 'process_name', title: '工序名称', sortable: true, width: 100 },
|
||||
{ title: '模具图片', slots: { default: 'column4' }, width: 90 },
|
||||
{ field: 'production_code', title: '布产单号', sortable: true, width: 100 },
|
||||
|
|
|
|||
|
|
@ -224,7 +224,6 @@
|
|||
</template>
|
||||
</vxe-column>
|
||||
|
||||
<vxe-column field="department_name" title="部门" align="center" width="150"></vxe-column>
|
||||
<vxe-column field="process_name" title="工序名称" align="center" width="110"></vxe-column>
|
||||
<vxe-column title="图片" width="75">
|
||||
<template #default="{ row }">
|
||||
|
|
|
|||
Loading…
Reference in New Issue