部分页面权限问题去除

This commit is contained in:
hongchao 2025-04-28 09:47:39 +08:00
parent 018978b954
commit a732a51b9a
3 changed files with 1 additions and 5 deletions

View File

@ -11,7 +11,6 @@
size="mini" size="mini"
type="primary" type="primary"
@click="handleExportAll()" @click="handleExportAll()"
v-hasPermi="['cost:settlement:export']"
>导出全部明细表</el-button >导出全部明细表</el-button
> >
</div> </div>

View File

@ -34,7 +34,6 @@
type="warning" type="warning"
v-if="!isEdit" v-if="!isEdit"
@click="handleExport" @click="handleExport"
v-hasPermi="['cost:settlement:export']"
>导出</el-button >导出</el-button
> >
<el-button <el-button

View File

@ -102,7 +102,6 @@
type="primary" type="primary"
style="padding: 5px 10px" style="padding: 5px 10px"
@click="handleMonthRecord(row)" @click="handleMonthRecord(row)"
v-hasPermi="['month:record:query']"
>月结记录</el-button >月结记录</el-button
> >
<el-button <el-button
@ -110,7 +109,6 @@
:type="row.isSlt == 1 ? 'success' : 'primary'" :type="row.isSlt == 1 ? 'success' : 'primary'"
style="padding: 5px 10px" style="padding: 5px 10px"
@click="handleFinishCostAndDetails(row, row.isSlt)" @click="handleFinishCostAndDetails(row, row.isSlt)"
v-hasPermi="['finis:record:details']"
>{{ row.isSlt == 1 ? '结算明细' : '完工结算' }}</el-button >{{ row.isSlt == 1 ? '结算明细' : '完工结算' }}</el-button
> >
</template> </template>