Browse Source

优化删除功能,支持通过索引删除项目,调整标签切换逻辑

master
parent
commit
33f1649f0a
  1. 25
      src/views/enterprises/update.vue
  2. 4
      src/views/screen/compenonts/tabber.vue

25
src/views/enterprises/update.vue

@ -164,7 +164,11 @@
<Icon icon="ep:zoom-in" :size="24" /> <Icon icon="ep:zoom-in" :size="24" />
放大 放大
</section> </section>
<section class="item" @click.stop="deleteProve(prove.id)" v-if="!isView"> <section
class="item"
@click.stop="deleteProve({ id: prove.id, index })"
v-if="!isView"
>
<Icon icon="ep:delete" :size="24" /> <Icon icon="ep:delete" :size="24" />
删除 删除
</section> </section>
@ -207,7 +211,9 @@
<el-table-column label="结果反馈" width="100" align="center"> <el-table-column label="结果反馈" width="100" align="center">
<template #default="{ row }"> <template #default="{ row }">
<span v-if="row.status === 1">-</span> <span v-if="row.status === 1">-</span>
<el-link type="primary" v-else @click="showInspection(row.inspectionsId)">详情 </el-link> <el-link type="primary" v-else @click="showInspection(row.inspectionsId)"
>详情
</el-link>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -459,11 +465,16 @@ const getProveList = () => {
}) })
} }
const deleteProve = (id: any) => { const deleteProve = (params) => {
EnterpriseQualificationApi.deleteEnterpriseQualification(id).then(() => { if (params.id) {
message.success('删除成功') EnterpriseQualificationApi.deleteEnterpriseQualification(params.id).then(() => {
getProveList() message.success('删除成功')
}) getProveList()
})
} else {
proveList.value.splice(params.index, 1)
message.success('删除成功')
}
} }
const getLogList = () => { const getLogList = () => {

4
src/views/screen/compenonts/tabber.vue

@ -13,10 +13,10 @@
<section class="tabs-box"> <section class="tabs-box">
<section <section
:class="['item', curTab == index ? 'item-active' : '']" :class="['item', curTab == item.value ? 'item-active' : '']"
v-for="(item, index) in tabberList" v-for="(item, index) in tabberList"
:key="index" :key="index"
@click="curTab = index" @click="curTab = item.value "
style="padding: 12px 16px" style="padding: 12px 16px"
> >
{{ item }} {{ item }}

Loading…
Cancel
Save