This commit is contained in:
‘937886381’
2024-04-08 13:55:22 +08:00
parent ac4cea0c7e
commit b2cc509f8e
18 changed files with 188 additions and 165 deletions

View File

@@ -218,7 +218,11 @@ export default {
width: 350,
},
{
type: 'button',
type: this.$auth.hasPermi(
'monitoring:device-parameters:query'
)
? 'button'
: '',
btnName: '查询',
name: 'search',
color: 'primary',

View File

@@ -260,17 +260,24 @@ export default {
// ],
// },
{
type: 'button',
type: this.$auth.hasPermi(
'monitoring:equipment-traceability:query'
)
? 'button'
: '',
btnName: '查询',
name: 'search',
color: 'primary',
},
{
type: 'button',
type: this.$auth.hasPermi(
'monitoring:equipment-traceability:export'
)
? 'button'
: '',
btnName: '导出',
name: 'export',
color: 'warning',
},
// {
// type: 'separate',

View File

@@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2023-08-01 14:55:51
* @LastEditors: zhp
* @LastEditTime: 2024-03-29 14:08:18
* @LastEditTime: 2024-04-07 16:19:18
* @Description:
-->
<template>
@@ -84,21 +84,21 @@ export default {
// },
tableProps,
// tableH: this.tableHeight(260),
tableBtn: [
this.$auth.hasPermi(`base:packaging-print-log:update`)
? {
type: 'edit',
btnName: '编辑',
}
: undefined,
this.$auth.hasPermi(`base:packaging-print-log:delete`)
? {
type: 'delete',
btnName: '删除',
}
: undefined,
// tableBtn: [
// this.$auth.hasPermi(`base:packaging-print-log:update`)
// ? {
// type: 'edit',
// btnName: '编辑',
// }
// : undefined,
// this.$auth.hasPermi(`base:packaging-print-log:delete`)
// ? {
// type: 'delete',
// btnName: '删除',
// }
// : undefined,
].filter((v) => v),
// ].filter((v) => v),
list: [],
listQuery: {
pageSize: 10,
@@ -131,7 +131,7 @@ export default {
width: 250
},
{
type: 'button',
type: this.$auth.hasPermi('monitoring:materiel-date-from:query') ? 'button' : '',
btnName: '查询',
name: 'search',
color: 'primary',

View File

@@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2023-08-01 14:55:51
* @LastEditors: zhp
* @LastEditTime: 2024-03-29 14:08:30
* @LastEditTime: 2024-04-07 16:25:19
* @Description:
-->
<template>
@@ -147,7 +147,8 @@ export default {
// width: 250
// },
{
type: 'button',
type: this.$auth.hasPermi('monitoring:rawMaterial-traceability:query') ? 'button' : '',
btnName: '查询',
name: 'search',
color: 'primary',

View File

@@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2023-08-01 14:55:51
* @LastEditors: zhp
* @LastEditTime: 2024-03-29 15:32:33
* @LastEditTime: 2024-04-07 16:26:56
* @Description:
-->
<template>
@@ -135,7 +135,12 @@ export default {
width: 250
},
{
type: 'button',
type: this.$auth.hasPermi(
'monitoring:process-traceability:query'
)
? 'button'
: '',
btnName: '查询',
name: 'search',
color: 'primary',

View File

@@ -159,7 +159,11 @@ export default {
// width: 350,
},
{
type: 'button',
type: this.$auth.hasPermi(
'base:quality-inspection-record:query'
)
? 'button'
: '',
btnName: '查询',
name: 'search',
color: 'primary',