From 2a1ea6a1c5b2210b3ac751e344517741cfbac2dd Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期五, 19 一月 2024 10:59:31 +0800 Subject: [PATCH] Merge branch 'master' of http://114.132.189.42:9002/r/mes-ocea-before --- src/views/quality/rawMaterial/index.vue | 70 ++++++++++++++++------------------ 1 files changed, 33 insertions(+), 37 deletions(-) diff --git a/src/views/quality/rawMaterial/index.vue b/src/views/quality/rawMaterial/index.vue index 267b919..063bb40 100644 --- a/src/views/quality/rawMaterial/index.vue +++ b/src/views/quality/rawMaterial/index.vue @@ -17,7 +17,7 @@ <template> <div class="mod-config"> <basic-container> - <ttable + <ttable :table="table" :resultData="resultData" @handleSelectionChange="handleSelectionChange" @@ -60,7 +60,7 @@ import { mapGetters } from 'vuex' import PrintJS from 'print-js' import { transformZip } from '@/util/fileTransform' -import printTemplate from './rawMaterial-print.vue' +import printTemplate from './rawMaterial-print' export default { data() { return { @@ -214,38 +214,8 @@ } }, ], - toolbar: [ - { - text: '鏂板', - type: 'primary', - fun: this.addOrUpdateHandle - }, - { - text: '涓嬭浇妫�楠屾姤鍛�', - type: 'primary', - fun: this.downloadReport - } - ], - operator: [ - // { - // text: '鎵撳嵃', - // type: 'text', - // size: 'small', - // fun: this.previewFun, - // show: { - // val: [ - // '1', - // '0' - // ], - // key: 'judgeState' - // } - // }, - { - text: '浣滃簾', - type: 'text', - size: 'small', - fun: this.deleteHandle - }], + toolbar: [], + operator: null, operatorConfig: { fixed: 'right', label: '鎿嶄綔', @@ -262,7 +232,30 @@ RawMaterialForm, printTemplate, }, - created() { }, + created() { + if(this.permissions.quality_rawMaterial_add){ + this.table.toolbar.push({ + text: '鏂板', + type: 'primary', + fun: this.addOrUpdateHandle + }) + } + if(this.permissions.quality_rawMaterial_download){ + this.table.toolbar.push({ + text: '涓嬭浇妫�楠屾姤鍛�', + type: 'primary', + fun: this.downloadReport + }) + } + if(this.permissions.quality_rawMaterial_del){ + this.table.operator = [{ + text: '浣滃簾', + type: 'text', + size: 'small', + fun: this.deleteHandle + }] + } + }, computed: { ...mapGetters(['permissions']) }, @@ -375,9 +368,13 @@ }, // 鏂板 / 淇敼 addOrUpdateHandle(row) { + if(!this.permissions.quality_rawMaterial_edit && row.id!=null){ + this.$message.error("璇ヨ鑹叉病鏈夋搷浣滄潈闄�") + return + } this.$router.push({ name: 'rawMaterialForm', - query: { + query: { id: row == null ? null : row.id, resultVal: row == null ? null : row.judgeState } @@ -438,4 +435,3 @@ } } </script> - \ No newline at end of file -- Gitblit v1.9.3