Merge remote-tracking branch 'origin/dev_2307' into dev_2307

dev
shiji 1 year ago
commit d4078248cb
  1. 31
      ant-design-vue-jeecg/src/views/requirementitem/RequirementItemList.vue

@ -87,9 +87,16 @@
<template slot="htmlSlot" slot-scope="text"> <template slot="htmlSlot" slot-scope="text">
<div v-html="text"></div> <div v-html="text"></div>
</template> </template>
<!-- <template slot="imgSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
<img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;" />
</template> -->
<template slot="imgSlot" slot-scope="text"> <template slot="imgSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
<img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> <img v-else :src="getImgView(text)" height="25px" @click="handlePictureCardPreview(getImgView(text))" style="max-width:80px;font-size: 12px;font-style: italic;" />
<a-modal :visible.sync="dialogVisible" :footer="null" @cancel="handleCancel" :mask="false" >
<img width="100%" :src="dialogImageUrl" >
</a-modal>
</template> </template>
<template slot="fileSlot" slot-scope="text"> <template slot="fileSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
@ -156,6 +163,7 @@ import FunctionxModal1 from "../functionx/modules/FunctionxModal1";
import RulexModal1 from "../rulex/modules/RulexModal1"; import RulexModal1 from "../rulex/modules/RulexModal1";
import RequirementEntityList1 from "../requiremententity/RequirementEntityList1"; import RequirementEntityList1 from "../requiremententity/RequirementEntityList1";
import { Tooltip, Typography } from 'ant-design-vue'; import { Tooltip, Typography } from 'ant-design-vue';
import { Modal } from 'ant-design-vue';
export default { export default {
name: 'RequirementItemList', name: 'RequirementItemList',
mixins: [JeecgListMixin, mixinDevice], mixins: [JeecgListMixin, mixinDevice],
@ -164,6 +172,9 @@ export default {
}, },
data() { data() {
return { return {
//
dialogImageUrl: '',
dialogVisible: false,
description: '需求管理管理页面', description: '需求管理管理页面',
// //
columns: [ columns: [
@ -205,7 +216,7 @@ export default {
dataIndex: 'requirementCode', dataIndex: 'requirementCode',
customRender: (text) => { customRender: (text) => {
if (text) { if (text) {
const truncatedText = text.length > 10 ? text.substring(0, 10) : text; const truncatedText = text.length > 10 ? text.substring(0, 10) + '...' : text;
return ( return (
<Tooltip title={text}> <Tooltip title={text}>
<span>{truncatedText}</span> <span>{truncatedText}</span>
@ -256,6 +267,7 @@ export default {
<span>{strippedText.slice(0, 20)}</span> <span>{strippedText.slice(0, 20)}</span>
<br /> <br />
<span>{strippedText.slice(20, 40)}</span> <span>{strippedText.slice(20, 40)}</span>
{strippedText.length > 40 && '...'}
</div> </div>
</Tooltip> </Tooltip>
); );
@ -279,7 +291,7 @@ export default {
title: '图片', title: '图片',
align: "center", align: "center",
dataIndex: 'requirementPic', dataIndex: 'requirementPic',
scopedSlots: {customRender: 'imgSlot'} scopedSlots: { customRender: 'imgSlot' }
}, },
{ {
title: '文件', title: '文件',
@ -337,6 +349,16 @@ export default {
}, },
}, },
methods: { methods: {
//
handlePictureCardPreview(text) {
this.dialogImageUrl = text
console.log('s', text)
this.dialogVisible = true;
},
//
handleCancel() {
this.dialogVisible = false;
},
// 1020 // 1020
renderTextColumn(text) { renderTextColumn(text) {
if (text) { if (text) {
@ -465,4 +487,5 @@ export default {
.button-group a { .button-group a {
margin-right: 8px; margin-right: 8px;
white-space: nowrap; white-space: nowrap;
}</style> }
</style>

Loading…
Cancel
Save