gaoluyang
9 小时以前 5ee2390929e041409ec1fde9829c8261fc050a33
新疆马铃薯
1.删除按钮添加操作权限
已修改5个文件
11 ■■■■■ 文件已修改
src/views/collaborativeApproval/approvalProcess/fileList.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/officeProcessAutomation/ReimburseManage/travel-reimburse/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/productionProcess/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionPlan/productionPlan/components/PIMTable.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/collaborativeApproval/approvalProcess/fileList.vue
@@ -6,7 +6,7 @@
        <template #default="scope">
          <el-button link type="primary" @click="downLoadFile(scope.row)">下载</el-button>
          <el-button link type="primary" @click="lookFile(scope.row)">预览</el-button>
          <el-button link type="danger" @click="handleDelete(scope.row)" v-hasPermi="['collaborativeApproval:approvalProcessFile:remove']">删除</el-button>
          <el-button link type="danger" @click="handleDelete(scope.row)">删除</el-button>
        </template>
      </el-table-column>
    </el-table>
src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/index.vue
@@ -239,7 +239,7 @@
            </el-table-column>
            <el-table-column v-if="!formDialog.readonly" label="操作" width="70" align="center">
              <template #default="{ $index }">
                <el-button type="danger" link size="small" @click="removeExpenseDetail($index)" v-hasPermi="['officeProcessAutomation:reimburseManage:remove']">删除</el-button>
                <el-button type="danger" link size="small" @click="removeExpenseDetail($index)">删除</el-button>
              </template>
            </el-table-column>
          </el-table>
src/views/officeProcessAutomation/ReimburseManage/travel-reimburse/index.vue
@@ -319,7 +319,7 @@
          </el-table-column>
          <el-table-column v-if="!formDialog.readonly" label="操作" width="70" align="center">
            <template #default="{ $index }">
              <el-button type="danger" link size="small" @click="removeExpenseDetail($index)" v-hasPermi="['officeProcessAutomation:reimburseManage:remove']">删除</el-button>
              <el-button type="danger" link size="small" @click="removeExpenseDetail($index)">删除</el-button>
            </template>
          </el-table-column>
        </el-table>
src/views/productionManagement/productionProcess/index.vue
@@ -33,7 +33,8 @@
                </el-button>
                <el-button link
                           type="danger"
                           @click.stop="handleDeleteProcess(process)">
                           @click.stop="handleDeleteProcess(process)"
                           v-hasPermi="['productionManagement:productionProcess:remove']">
                  <el-icon>
                    <Delete />
                  </el-icon>
@@ -482,6 +483,7 @@
        {
          name: "删除",
          clickFun: row => handleDeleteParam(row),
          hasPermi: ['productionManagement:productionProcess:remove']
        },
      ],
    },
src/views/productionPlan/productionPlan/components/PIMTable.vue
@@ -135,6 +135,7 @@
              }"
                       link
                       @click.stop="o.clickFun(scope.row)"
                       v-hasPermi="o.hasPermi"
                       :key="key">
              {{ o.name }}
            </el-button>