Browse Source

2025-06-03

master
fengyuan_yang 7 months ago
parent
commit
1e493dfafc
  1. 4
      src/views/modules/part/partInformation.vue

4
src/views/modules/part/partInformation.vue

@ -571,7 +571,7 @@
</el-tab-pane>
<el-tab-pane v-if="modalDisableFlag" style="margin-top: -10px" label="Revisions" name="Revisions">
<el-button type="primary" @click="savePartRevisionModal">新增</el-button>
<el-button v-if="modalData.flag !== '4'" type="primary" @click="savePartRevisionModal">新增</el-button>
<el-table
:data="revisionList"
height="355px"
@ -599,7 +599,7 @@
align="center"
width="100"
label="操作">
<template slot-scope="scope">
<template v-if="modalData.flag !== '4'" slot-scope="scope">
<el-link style="cursor: pointer" @click="updateRevisionModal(scope.row)">编辑</el-link>
<el-link style="cursor: pointer" @click="deleteRevisionModal(scope.row)">删除</el-link>
</template>

Loading…
Cancel
Save