heyang 1 year ago
parent
commit
4dfd38422c

+ 4 - 2
README.md

@@ -145,8 +145,10 @@
     
 ### 2.功能标识表
 
-| 功能标识 | 功能名称 | 备注 |
-|  ---- | ---- |  ---- | 
+| 功能标识      | 功能名称 | 备注 |
+|-----------| -- |  ---- | 
+| type == 10 | 实验室危险源 | 前端生成 |
+| type == 9 | 化学品 | 前端生成 |
 | type == 8 | 化学品柜 | 前端生成 |
 | type == 7 | 培训课程 | 前端生成 |
 | type == 6 | 专项检查 | 前端生成 |

+ 1 - 1
src/views/comprehensive/laboratoryManagement/subject/associationConfiguration.vue

@@ -330,7 +330,7 @@
       qrCodeDialogButton(type,id,name){
         if(type == 1){
           this.$set(this,'qrCodeDialogData',{
-            type:'7',          //二维码类型 用于区分二维码功能类型
+            type:'10',          //二维码类型 用于区分二维码功能类型
             parameter:id,                     //二维码参数
             name:name,                        //二维码名称用于下载时命名
           });

+ 2 - 1
src/views/comprehensive/system/handheldEquipmentUsers/index.vue

@@ -15,7 +15,7 @@
         <p class="reset-button-one" @click="resetQuery">重置</p>
       </el-form-item>
       <el-form-item style="float: right;">
-        <p class="inquire-button-one" style="width:80px;margin-right:0!important;" @click="addButton">新增</p>
+        <p class="inquire-button-one" v-hasPermi="['system:pda:add']" style="width:80px;margin-right:0!important;" @click="addButton">新增</p>
       </el-form-item>
     </el-form>
     <el-table v-loading="loading" border :data="dataList" >
@@ -28,6 +28,7 @@
           <div class="table-button-box">
             <p class="table-button-null"></p>
             <p class="table-button-p"
+               v-hasPermi="['system:pda:remove']"
                @click="delButton(scope.row)"
             >移除</p>
             <p class="table-button-null"></p>