This commit is contained in:
wangchengming 2024-12-06 17:28:21 +08:00
parent ff25c321e6
commit d171c3e2fe
5 changed files with 433 additions and 6 deletions

View File

@ -2,7 +2,6 @@ import request from '@/utils/request'
// 查询列表
export function listFeedBack(query) {
console.log('weweweewew', query)
return request({
url: '/official/message/list',
method: 'get',

View File

@ -0,0 +1,18 @@
import request from '@/utils/request'
// 查询列表
export function listPartnerSupplier(query) {
return request({
url: '/official/companymessage/list',
method: 'get',
params: query
})
}
// 删除
export function delPartnerSupplier(id) {
return request({
url: '/official/companymessage/' + id,
method: 'delete'
})
}

View File

@ -0,0 +1,197 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="120px">
<el-form-item label="公司名称(个人)" prop="companyName">
<el-input
v-model="queryParams.companyName"
placeholder="请输入公司名称(个人)"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['official:businessPartner:remove']"
>删除</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="slideshowList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键id" align="center" prop="id" v-if="false"/>
<el-table-column label="公司名称(个人)" width="130" align="center" prop="companyName" />
<el-table-column label="地址" width="230" align="center" prop="address" />
<el-table-column label="联系电话" width="110" align="center" prop="phoneNumber" />
<el-table-column label="电子邮箱" width="180" align="center" prop="email" />
<el-table-column label="擅长方向" align="center" prop="fieldType" />
<el-table-column label="优势概念" align="center" prop="advantageConcept">
<template slot-scope="{ row }">
<div class="multiple-line-content-show" style="cursor: pointer;" @click="dialogContent(row.advantageConcept, '优势概念')" v-html="row.advantageConcept"></div>
</template>
</el-table-column>
<el-table-column label="合作意向概述" align="center" prop="cooperationIntention">
<template slot-scope="{ row }">
<div class="multiple-line-content-show" style="cursor: pointer;" @click="dialogContent(row.cooperationIntention, '合作意向概述')" v-html="row.cooperationIntention"></div>
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" width="100" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['official:businessPartner:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import { listPartnerSupplier, delPartnerSupplier } from "@/api/official/partnerSupplier";
export default {
name: "FeedBack",
data() {
return {
// loading
buttonLoading: false,
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
slideshowList: [],
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
propertiesType: 1,
companyName: undefined,
},
};
},
created() {
this.getList();
},
methods: {
/**
列表 */
getList() {
this.loading = true;
listPartnerSupplier(this.queryParams).then(response => {
this.slideshowList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: undefined,
captionName: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除编号为"' + ids + '"的数据项?').then(() => {
this.loading = true;
return delPartnerSupplier(ids);
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
dialogContent(feedContent, title) {
this.$alert(feedContent, title, {
confirmButtonText: '确定',
callback: action => {}
});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .multiple-line-content-show p {
margin: 0;
}
//
::v-deep .el-dialog {
height: 92%;
overflow: hidden;
}
::v-deep .el-dialog__body {
padding: 30px 20px 0;
height: 89%;
overflow-y: auto;
}
</style>

View File

@ -35,12 +35,12 @@
<el-table v-loading="loading" :data="slideshowList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键id" align="center" prop="id" v-if="false"/>
<el-table-column label="标题" align="center" prop="captionName" />
<el-table-column label="反馈人" align="center" prop="userName" />
<el-table-column label="联系方式" align="center" prop="phoneNumber" />
<el-table-column label="标题" width="130" align="center" prop="captionName" />
<el-table-column label="反馈人" width="100" align="center" prop="userName" />
<el-table-column label="联系方式" width="110" align="center" prop="phoneNumber" />
<el-table-column label="反馈内容" align="center" prop="abstracts">
<template slot-scope="{ row }">
<div class="multiple-line-content-show" v-html="row.abstracts"></div>
<div class="multiple-line-content-show" style="cursor: pointer;" @click="dialogContent(row.abstracts)" v-html="row.abstracts"></div>
</template>
</el-table-column>
<el-table-column label="反馈时间" align="center" prop="createTime" width="180">
@ -48,7 +48,7 @@
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<el-table-column label="操作" width="100" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
@ -162,6 +162,12 @@ export default {
this.loading = false;
});
},
dialogContent(feedContent) {
this.$alert(feedContent, '反馈内容', {
confirmButtonText: '确定',
callback: action => {}
});
}
}
};
</script>

View File

@ -0,0 +1,207 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="80px">
<el-form-item label="公司名称" prop="companyName">
<el-input
v-model="queryParams.companyName"
placeholder="请输入公司名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['official:supplier:remove']"
>删除</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="slideshowList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键id" align="center" prop="id" v-if="false"/>
<el-table-column label="公司名称" width="130" align="center" prop="companyName" />
<el-table-column label="公司地址" width="230" align="center" prop="address" />
<el-table-column label="统一社会信用代码" width="230" align="center" prop="identifierCode" />
<el-table-column label="联系电话" width="110" align="center" prop="phoneNumber" />
<el-table-column label="电子邮箱" width="180" align="center" prop="email" />
<el-table-column label="企业性质" width="100" align="center" prop="businessNature" />
<el-table-column label="行业领域" width="180" align="center" prop="fieldIndustry" />
<el-table-column label="主要产品" width="180" align="center" prop="mainProducts" />
<el-table-column label="网址" width="120" align="center" prop="webAddress" />
<el-table-column label="设计开发能力" width="180" align="center" prop="developmentCapability" />
<el-table-column label="遵守标准" width="180" align="center" prop="complianceStandards" />
<el-table-column label="产品已获得的认证" width="180" align="center" prop="productCertification" />
<el-table-column label="其他认证" width="180" align="center" prop="otherNotes" />
<el-table-column label="质量体系情况" width="320" align="center" prop="qualitySystem" />
<el-table-column label="相关资质" width="320" align="center" prop="relevantQualifications" />
<el-table-column label="优势概念" width="320" align="center" prop="advantageConcept">
<template slot-scope="{ row }">
<div class="multiple-line-content-show" style="cursor: pointer;" @click="dialogContent(row.advantageConcept, '优势概念')" v-html="row.advantageConcept"></div>
</template>
</el-table-column>
<el-table-column label="合作意向概述" width="320" align="center" prop="cooperationIntention">
<template slot-scope="{ row }">
<div class="multiple-line-content-show" style="cursor: pointer;" @click="dialogContent(row.cooperationIntention, '合作意向概述')" v-html="row.cooperationIntention"></div>
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" width="100" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['official:supplier:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import { listPartnerSupplier, delPartnerSupplier } from "@/api/official/partnerSupplier";
export default {
name: "FeedBack",
data() {
return {
// loading
buttonLoading: false,
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
slideshowList: [],
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
propertiesType: 2,
companyName: undefined,
},
};
},
created() {
this.getList();
},
methods: {
/**
列表 */
getList() {
this.loading = true;
listPartnerSupplier(this.queryParams).then(response => {
this.slideshowList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: undefined,
captionName: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除编号为"' + ids + '"的数据项?').then(() => {
this.loading = true;
return delPartnerSupplier(ids);
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
dialogContent(feedContent, title) {
this.$alert(feedContent, title, {
confirmButtonText: '确定',
callback: action => {}
});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .multiple-line-content-show p {
margin: 0;
}
//
::v-deep .el-dialog {
height: 92%;
overflow: hidden;
}
::v-deep .el-dialog__body {
padding: 30px 20px 0;
height: 89%;
overflow-y: auto;
}
</style>