[update] 修改自测bug

This commit is contained in:
lideqin
2023-09-27 18:08:23 +08:00
parent e29dcddb4e
commit 19a6fe9dcd
3 changed files with 6 additions and 2 deletions
@@ -114,7 +114,8 @@
<template v-slot:standard_number="{text, record}">
<a-tooltip overlay-class-name="tooltip-style">
<template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template>
<a class="table-text can-click-table-text" @click="detailClick(record)" v-if="text || text === 0">{{ text }}</a>
<a class="table-text can-click-table-text" @click="detailClick(record)" v-if="(text || text === 0) && record.detailFlag">{{ text }}</a>
<div class="table-text" v-else-if="(text || text === 0) && !record.detailFlag">{{ text }}</div>
<div class="table-text" v-else>{{ global.emptyLine }}</div>
</a-tooltip>
</template>
@@ -123,7 +124,8 @@
<template v-slot:standard_name="{text, record}">
<a-tooltip overlay-class-name="tooltip-style">
<template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template>
<a class="table-text can-click-table-text" @click="detailClick(record)" v-if="text || text === 0">{{ text }}</a>
<a class="table-text can-click-table-text" @click="detailClick(record)" v-if="(text || text === 0) && record.detailFlag">{{ text }}</a>
<div class="table-text" v-else-if="(text || text === 0) && !record.detailFlag">{{ text }}</div>
<div class="table-text" v-else>{{ global.emptyLine }}</div>
</a-tooltip>
</template>
@@ -75,6 +75,7 @@ export default {
}
],
url: {
// todo: 没有数据
list: '/personal/lawsBrowsingHistory/page',
deleteBatch: '/personal/lawsBrowsingHistory/deleteBatch'
}
@@ -110,6 +110,7 @@ export default {
}
],
url: {
// todo: 没有做数据权限
list: '/personal/lawsStandardSharing/issued/page',
deleteBatch: '/personal/lawsStandardSharing/deleteBatch'
}