fix(ProWorkorder): 调整制造工单号列宽并移除链接功能
移除制造工单号的点击链接功能,改为纯文本显示,同时调整列宽。清理查询参数中的默认排序字段。
This commit is contained in:
@@ -95,9 +95,9 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- <el-table-column prop="sort" label="编号" align="center" /> -->
|
<!-- <el-table-column prop="sort" label="编号" align="center" /> -->
|
||||||
<el-table-column prop="workorder" label="制造工单号" align="center" width="160">
|
<el-table-column prop="workorder" label="制造工单号" align="center" width="180">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-link @click="handleUpdate(scope.row)" type="primary">{{ scope.row.workorder }}</el-link>
|
<el-text type="primary">{{ scope.row.workorder }}</el-text>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="productionName" label="主体品名" width="280" />
|
<el-table-column prop="productionName" label="主体品名" width="280" />
|
||||||
@@ -424,8 +424,8 @@ const queryParams = reactive({
|
|||||||
workorderDate: [proxy.dayjs(), proxy.dayjs()],
|
workorderDate: [proxy.dayjs(), proxy.dayjs()],
|
||||||
status: -1,
|
status: -1,
|
||||||
materialCode: '',
|
materialCode: '',
|
||||||
sort: 'sort',
|
sort: '',
|
||||||
sortType: 'asc'
|
sortType: ''
|
||||||
})
|
})
|
||||||
const columns = ref([])
|
const columns = ref([])
|
||||||
const total = ref(0)
|
const total = ref(0)
|
||||||
|
|||||||
Reference in New Issue
Block a user