You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

331 lines
8.8 KiB

2 months ago
<template>
1 month ago
<div class="container">
<!-- 顶部信息 -->
<div class="containertop">
<div class="topleft">
<img src="../../../assets/images/detailsicon/1.png" alt="">
<span>其他信息</span>
2 months ago
</div>
1 month ago
<div class="topright" v-if="action === 'fill' || !action">
4 weeks ago
<el-button type="primary" size="medium" plain v-if="checkRole(['admin', 'common'])"
1 month ago
style="border: none;background-color: rgba(43,98,241,0.1);color: #2B62F1;" @click="openDialog('add')">
<img src="../../../assets/images/detailsicon/icon-bj@2x.png" alt="新增"
style="width: 0.6rem; height: 0.6rem; margin-right: 4px;">
新增
</el-button>
1 month ago
<el-button type="primary" size="medium" plain
4 weeks ago
style="border: none;background-color: rgba(43,98,241,0.1);color: #2B62F1;" @click="toggleEditMode"
1 month ago
:loading="saveLoading">
1 month ago
<img src="../../../assets/images/detailsicon/icon-bj@2x.png" alt="编辑"
style="width: 0.6rem; height: 0.6rem; margin-right: 4px;">
1 month ago
{{ isEditMode ? '保存' : '编辑' }}
</el-button>
4 weeks ago
<el-button type="primary" size="medium" plain v-if="checkRole(['admin', 'common'])"
style="border: none;background-color: rgba(43,98,241,0.1);color: #2B62F1;" @click="handleExport">
1 month ago
<img src="../../../assets/images/detailsicon/icon-dc@2x.png" alt="导出"
style="width: 0.6rem; height: 0.6rem; margin-right: 4px;">
导出
</el-button>
2 months ago
</div>
</div>
1 month ago
<!-- 数据展示表格 -->
<div class="tagdiv">
<div class="descriptionsdiv">
<el-descriptions class="margin-top" :column="4" border>
1 month ago
<el-descriptions-item v-for="(item, index) in anotherInfo" :key="index" :label="item.zdname">
1 month ago
<template v-if="isEditMode">
4 weeks ago
<el-input v-model="item.zdinfor" size="small" @change="handleFieldChange(item)"
style="width:8rem;"></el-input>
1 month ago
</template>
<template v-else>
{{ item.zdinfor }}
</template>
4 weeks ago
<el-button v-if="isEditMode" type="text" size="small" @click="handleDeleteField(item)"
style="margin-left: 1rem;color: #F25353;">删除</el-button>
1 month ago
</el-descriptions-item>
</el-descriptions>
</div>
</div>
1 month ago
<!-- 新增表单弹窗 -->
1 month ago
<el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="30%">
<el-form :model="form" label-width="80px">
1 month ago
<el-form-item label="字段名称">
<el-input v-model="form.zdname" placeholder="请输入字段名称"></el-input>
1 month ago
</el-form-item>
1 month ago
<el-form-item label="字段内容">
<el-input v-model="form.zdinfor" placeholder="请输入字段内容 "></el-input>
1 month ago
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false">取消</el-button>
<el-button type="primary" @click="submitForm"></el-button>
</span>
</el-dialog>
</div>
</template>
<script>
4 weeks ago
import { checkPermi, checkRole } from "@/utils/permission";
4 weeks ago
import { addxmqt, deletexmqt } from "@/api/ManageApi";
1 month ago
1 month ago
export default {
props: {
1 month ago
anotherInfo: {
type: Array,
required: true,
1 month ago
default: () => []
1 month ago
},
action: {
type: String,
required: true
4 weeks ago
},
4 weeks ago
xmId: {
4 weeks ago
type: Number,
default: 0
1 month ago
}
},
1 month ago
created() {
console.log('anotherInfo 内容:', this.anotherInfo);
},
1 month ago
data() {
return {
dialogVisible: false, // 控制弹窗显示
dialogTitle: '', // 弹窗标题
1 month ago
form: {
1 month ago
zdname: '',
zdinfor: ''
},
1 month ago
isEditMode: false, // 是否为编辑模式
saveLoading: false, // 保存加载状态
editedData: [] // 存储编辑后的数据
1 month ago
};
},
methods: {
1 month ago
checkPermi,
checkRole,
4 weeks ago
1 month ago
// 打开新增对话框
openDialog(type) {
if (type === 'add') {
this.dialogTitle = '新增信息';
this.form = {
zdname: '',
zdinfor: ''
};
this.dialogVisible = true;
2 months ago
}
1 month ago
},
4 weeks ago
1 month ago
// 切换编辑模式
toggleEditMode() {
1 month ago
if (this.isEditMode) {
1 month ago
// 保存操作
this.saveChanges();
1 month ago
} else {
1 month ago
// 进入编辑模式
this.isEditMode = true;
// 创建编辑数据的副本
this.editedData = JSON.parse(JSON.stringify(this.anotherInfo));
}
},
4 weeks ago
1 month ago
// 处理字段变化
handleFieldChange(item) {
const index = this.editedData.findIndex(i => i.zdname === item.zdname);
if (index !== -1) {
this.editedData[index] = { ...item };
2 months ago
}
1 month ago
},
4 weeks ago
1 month ago
// 保存修改
saveChanges() {
this.saveLoading = true;
4 weeks ago
1 month ago
try {
// 准备要发送给父组件的数据
const updatedData = this.editedData.map(item => ({
...item,
}));
4 weeks ago
1 month ago
// 发送给父组件
this.$emit('update-info', updatedData);
4 weeks ago
1 month ago
// 退出编辑模式
this.isEditMode = false;
} catch (error) {
console.error('保存失败:', error);
} finally {
this.saveLoading = false;
}
},
4 weeks ago
/**导出 */
handleExport() {
this.download(
"/gysl/projectOtherInfo/export",
{
xmId: this.xmId,
},
`其他信息${new Date().getTime()}.xlsx`
);
},
4 weeks ago
// 删除字段
async handleDeleteField(item) {
this.$confirm(`确定要删除字段 "${item.zdname}" 吗?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {
try {
// 调用删除API
await deletexmqt([item.id]);
// 如果是编辑模式直接从editedData中移除
if (this.isEditMode) {
this.editedData = this.editedData.filter(i => i.id !== item.id);
}
// 通知父组件更新数据
this.$emit('delete-info', item.id);
this.$message.success('删除成功');
location.reload(); // 直接刷新页面
} catch (error) {
this.$message.error('删除失败: ' + (error.message || '请检查网络连接'));
}
}).catch(() => {
this.$message.info('已取消删除');
});
},
1 month ago
// 提交新增表单
4 weeks ago
async submitForm() {
if (!this.form.zdname || !this.form.zdinfor) {
this.$message.warning('请填写完整的字段名称和内容');
return;
}
try {
// 打印检查 xmId
console.log('当前项目ID:', this.xmId);
4 weeks ago
4 weeks ago
// 准备请求数据
const requestData = {
xmId: this.xmId, // 使用父组件传递的项目ID
zdname: this.form.zdname,
zdinfor: this.form.zdinfor,
// 其他字段使用默认值或空值
createBy: "",
createId: 0,
createTime: "",
updateBy: "",
updateId: 0,
updateTime: ""
};
4 weeks ago
4 weeks ago
// 调用API新增数据
const response = await addxmqt(requestData);
console.log('新增成功:', response);
this.dialogVisible = false;
this.$message.success('新增成功');
location.reload(); // 直接刷新页面
} catch (error) { }
1 month ago
},
4 weeks ago
1 month ago
// 删除数据
1 month ago
deleteData() {
1 month ago
this.$confirm('确定要删除这些信息吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$emit('delete-info');
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
4 weeks ago
});
1 month ago
});
2 months ago
}
}
1 month ago
}
1 month ago
</script>
<style scoped>
.container {
display: flex;
flex-direction: column;
width: 100%;
background-color: #FFFFFF;
box-shadow: 0rem 0.13rem 0.63rem 0rem rgba(177, 177, 177, 0.1);
border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}
.content {
padding: 1rem;
display: flex;
}
.containertop {
height: auto;
display: flex;
justify-content: space-between;
padding: .7rem 0;
padding: .5rem;
border-bottom: 1px solid #E5E5E5;
}
.topleft {
width: 8rem;
1 month ago
height: 2rem;
1 month ago
display: flex;
gap: 0.4rem;
align-items: center;
}
.topleft img {
width: 0.81rem;
height: 0.81rem;
}
.topleft span {
width: auto;
height: 0.88rem;
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
font-weight: 500;
font-size: 0.88rem;
color: #3D424C;
line-height: 0.88rem;
text-align: right;
font-style: normal;
text-transform: none;
}
.picturediv {
width: 18.31rem;
height: 25.31rem;
background-color: lightblue;
}
.descriptionsdiv {
width: 100%;
margin-left: 1rem;
height: auto;
4 weeks ago
display: flex;
justify-content: space-between;
1 month ago
}
.two-row-item {
height: 20rem;
}
.tagdiv {
padding: 1rem 3em 1rem 1rem;
}
.block {
width: 100%;
display: flex;
justify-content: space-between;
margin-top: 1rem;
}
</style>