[update] 修改自测bug
This commit is contained in:
@@ -114,7 +114,8 @@
|
|||||||
<template v-slot:standard_number="{text, record}">
|
<template v-slot:standard_number="{text, record}">
|
||||||
<a-tooltip overlay-class-name="tooltip-style">
|
<a-tooltip overlay-class-name="tooltip-style">
|
||||||
<template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template>
|
<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>
|
<div class="table-text" v-else>{{ global.emptyLine }}</div>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
</template>
|
</template>
|
||||||
@@ -123,7 +124,8 @@
|
|||||||
<template v-slot:standard_name="{text, record}">
|
<template v-slot:standard_name="{text, record}">
|
||||||
<a-tooltip overlay-class-name="tooltip-style">
|
<a-tooltip overlay-class-name="tooltip-style">
|
||||||
<template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template>
|
<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>
|
<div class="table-text" v-else>{{ global.emptyLine }}</div>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -75,6 +75,7 @@ export default {
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
url: {
|
url: {
|
||||||
|
// todo: 没有数据
|
||||||
list: '/personal/lawsBrowsingHistory/page',
|
list: '/personal/lawsBrowsingHistory/page',
|
||||||
deleteBatch: '/personal/lawsBrowsingHistory/deleteBatch'
|
deleteBatch: '/personal/lawsBrowsingHistory/deleteBatch'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -110,6 +110,7 @@ export default {
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
url: {
|
url: {
|
||||||
|
// todo: 没有做数据权限
|
||||||
list: '/personal/lawsStandardSharing/issued/page',
|
list: '/personal/lawsStandardSharing/issued/page',
|
||||||
deleteBatch: '/personal/lawsStandardSharing/deleteBatch'
|
deleteBatch: '/personal/lawsStandardSharing/deleteBatch'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user