This commit is contained in:
顾有鑫 2025-02-21 17:31:17 +08:00
parent 11da57f4af
commit 08098a0826
11 changed files with 1603 additions and 16 deletions

View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询供应商评估列表
export function listAssessment(query) {
return request({
url: '/md/assessment/list',
method: 'get',
params: query
})
}
// 查询供应商评估详细
export function getAssessment(assessmentId) {
return request({
url: '/md/assessment/' + assessmentId,
method: 'get'
})
}
// 新增供应商评估
export function addAssessment(data) {
return request({
url: '/md/assessment',
method: 'post',
data: data
})
}
// 修改供应商评估
export function updateAssessment(data) {
return request({
url: '/md/assessment',
method: 'put',
data: data
})
}
// 删除供应商评估
export function delAssessment(assessmentId) {
return request({
url: '/md/assessment/' + assessmentId,
method: 'delete'
})
}

View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询供应商类别列表
export function listCategory(query) {
return request({
url: '/md/category/list',
method: 'get',
params: query
})
}
// 查询供应商类别详细
export function getCategory(categoryId) {
return request({
url: '/md/category/' + categoryId,
method: 'get'
})
}
// 新增供应商类别
export function addCategory(data) {
return request({
url: '/md/category',
method: 'post',
data: data
})
}
// 修改供应商类别
export function updateCategory(data) {
return request({
url: '/md/category',
method: 'put',
data: data
})
}
// 删除供应商类别
export function delCategory(categoryId) {
return request({
url: '/md/category/' + categoryId,
method: 'delete'
})
}

View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询供应商资质列表
export function listQualification(query) {
return request({
url: '/md/qualification/list',
method: 'get',
params: query
})
}
// 查询供应商资质详细
export function getQualification(qualId) {
return request({
url: '/md/qualification/' + qualId,
method: 'get'
})
}
// 新增供应商资质
export function addQualification(data) {
return request({
url: '/md/qualification',
method: 'post',
data: data
})
}
// 修改供应商资质
export function updateQualification(data) {
return request({
url: '/md/qualification',
method: 'put',
data: data
})
}
// 删除供应商资质
export function delQualification(qualId) {
return request({
url: '/md/qualification/' + qualId,
method: 'delete'
})
}

44
src/api/mes/gys/record.js Normal file
View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询供应商合作记录列表
export function listRecord(query) {
return request({
url: '/md/record/list',
method: 'get',
params: query
})
}
// 查询供应商合作记录详细
export function getRecord(recordId) {
return request({
url: '/md/record/' + recordId,
method: 'get'
})
}
// 新增供应商合作记录
export function addRecord(data) {
return request({
url: '/md/record',
method: 'post',
data: data
})
}
// 修改供应商合作记录
export function updateRecord(data) {
return request({
url: '/md/record',
method: 'put',
data: data
})
}
// 删除供应商合作记录
export function delRecord(recordId) {
return request({
url: '/md/record/' + recordId,
method: 'delete'
})
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 227 KiB

After

Width:  |  Height:  |  Size: 883 KiB

View File

@ -36,7 +36,7 @@ $base-sub-menu-background:#000c17;
$base-sub-menu-hover:#001528; $base-sub-menu-hover:#001528;
*/ */
$base-sidebar-width: 200px; $base-sidebar-width: 250px;
// the :export directive is the magic sauce for webpack // the :export directive is the magic sauce for webpack
// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass // https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass

View File

@ -1,44 +1,80 @@
<template> <template>
<div class="sidebar-logo-container" :class="{'collapse':collapse}" :style="{ backgroundColor: sideTheme === 'theme-dark' ? variables.menuBackground : variables.menuLightBackground }"> <div
class="sidebar-logo-container"
:class="{ collapse: collapse }"
:style="{
backgroundColor:
sideTheme === 'theme-dark'
? variables.menuBackground
: variables.menuLightBackground,
}"
>
<transition name="sidebarLogoFade"> <transition name="sidebarLogoFade">
<router-link v-if="collapse" key="collapse" class="sidebar-logo-link" to="/"> <router-link
v-if="collapse"
key="collapse"
class="sidebar-logo-link"
to="/"
>
<img v-if="logo" :src="logo" class="sidebar-logo" /> <img v-if="logo" :src="logo" class="sidebar-logo" />
<h1 v-else class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }} </h1> <h1
v-else
class="sidebar-title"
:style="{
color:
sideTheme === 'theme-dark'
? variables.logoTitleColor
: variables.logoLightTitleColor,
}"
>
{{ title }}
</h1>
</router-link> </router-link>
<router-link v-else key="expand" class="sidebar-logo-link" to="/"> <router-link v-else key="expand" class="sidebar-logo-link" to="/">
<img v-if="logo" :src="logo" class="sidebar-logo" /> <img v-if="logo" :src="logo" class="sidebar-logo" />
<h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }} </h1> <h1
class="sidebar-title"
:style="{
color:
sideTheme === 'theme-dark'
? variables.logoTitleColor
: variables.logoLightTitleColor,
}"
>
{{ title }}
</h1>
</router-link> </router-link>
</transition> </transition>
</div> </div>
</template> </template>
<script> <script>
import logoImg from '@/assets/logo/logo.png' import logoImg from "@/assets/logo/logo.png";
import variables from '@/assets/styles/variables.scss' import variables from "@/assets/styles/variables.scss";
export default { export default {
name: 'SidebarLogo', name: "SidebarLogo",
props: { props: {
collapse: { collapse: {
type: Boolean, type: Boolean,
required: true required: true,
} },
}, },
computed: { computed: {
variables() { variables() {
return variables; return variables;
}, },
sideTheme() { sideTheme() {
return this.$store.state.settings.sideTheme return this.$store.state.settings.sideTheme;
} },
}, },
data() { data() {
return { return {
title: '龙翔商贸一体化平台', title: "龙翔商贸一体化平台",
} logo: logoImg,
} };
} },
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>

View File

@ -0,0 +1,352 @@
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="100px"
>
<el-form-item label="供应商名称" prop="supplierName">
<el-input
v-model="queryParams.supplierName"
placeholder="请输入供应商名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="评估时间" prop="assessmentTime">
<el-date-picker
clearable
v-model="queryParams.assessmentTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择评估时间"
>
</el-date-picker>
</el-form-item>
<el-form-item label="评分" prop="score">
<el-input
v-model="queryParams.score"
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="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['md:assessment:add']"
>新增</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['md:assessment:edit']"
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['md:assessment:remove']"
>删除</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['md:assessment:export']"
>导出</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="assessmentList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="供应商名称" align="center" prop="supplierName" />
<el-table-column
label="评估时间"
align="center"
prop="assessmentTime"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.assessmentTime, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<el-table-column label="评分" align="center" prop="score" />
<el-table-column label="评估备注" align="center" prop="remarks" />
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['md:assessment:edit']"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['md:assessment: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"
/>
<!-- 添加或修改供应商评估对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="供应商名称" prop="supplierName">
<el-input
v-model="form.supplierName"
placeholder="请输入供应商名称"
/>
</el-form-item>
<el-form-item label="评估时间" prop="assessmentTime">
<el-date-picker
clearable
v-model="form.assessmentTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择评估时间"
>
</el-date-picker>
</el-form-item>
<el-form-item label="评分" prop="score">
<el-input v-model="form.score" placeholder="请输入评分" />
</el-form-item>
<el-form-item label="评估备注" prop="remarks">
<el-input v-model="form.remarks" placeholder="请输入评估备注" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listAssessment,
getAssessment,
delAssessment,
addAssessment,
updateAssessment,
} from "@/api/mes/gys/assessment";
export default {
name: "Assessment",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
assessmentList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
supplierName: null,
supplierId: null,
assessmentTime: null,
score: null,
remarks: null,
isDeleted: null,
},
//
form: {},
//
rules: {},
};
},
created() {
this.getList();
},
methods: {
/** 查询供应商评估列表 */
getList() {
this.loading = true;
listAssessment(this.queryParams).then((response) => {
this.assessmentList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
assessmentId: null,
supplierName: null,
supplierId: null,
assessmentTime: null,
score: null,
remarks: null,
createTime: null,
updateTime: null,
isDeleted: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.assessmentId);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加供应商评估";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const assessmentId = row.assessmentId || this.ids;
getAssessment(assessmentId).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改供应商评估";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.assessmentId != null) {
updateAssessment(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addAssessment(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const assessmentIds = row.assessmentId || this.ids;
this.$modal
.confirm(
'是否确认删除供应商评估编号为"' + assessmentIds + '"的数据项?'
)
.then(function () {
return delAssessment(assessmentIds);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download(
"md/assessment/export",
{
...this.queryParams,
},
`assessment_${new Date().getTime()}.xlsx`
);
},
},
};
</script>

View File

@ -0,0 +1,311 @@
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="类别名称" prop="categoryName">
<el-input
v-model="queryParams.categoryName"
placeholder="请输入类别名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="类别描述" prop="description">
<el-input
v-model="queryParams.description"
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="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['md:category:add']"
>新增</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['md:category:edit']"
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['md:category:remove']"
>删除</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['md:category:export']"
>导出</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="categoryList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="类别名称" align="center" prop="categoryName" />
<el-table-column label="类别描述" align="center" prop="description" />
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['md:category:edit']"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['md:category: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"
/>
<!-- 添加或修改供应商类别对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="类别名称" prop="categoryName">
<el-input v-model="form.categoryName" placeholder="请输入类别名称" />
</el-form-item>
<el-form-item label="类别描述" prop="description">
<el-input v-model="form.description" placeholder="请输入类别描述" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listCategory,
getCategory,
delCategory,
addCategory,
updateCategory,
} from "@/api/mes/gys/category";
export default {
name: "Category",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
categoryList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
categoryName: null,
description: null,
isDeleted: null,
},
//
form: {},
//
rules: {
categoryName: [
{ required: true, message: "类别名称不能为空", trigger: "blur" },
],
},
};
},
created() {
this.getList();
},
methods: {
/** 查询供应商类别列表 */
getList() {
this.loading = true;
listCategory(this.queryParams).then((response) => {
this.categoryList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
categoryId: null,
categoryName: null,
description: null,
createTime: null,
updateTime: null,
isDeleted: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.categoryId);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加供应商类别";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const categoryId = row.categoryId || this.ids;
getCategory(categoryId).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改供应商类别";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.categoryId != null) {
updateCategory(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addCategory(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const categoryIds = row.categoryId || this.ids;
this.$modal
.confirm('是否确认删除供应商类别编号为"' + categoryIds + '"的数据项?')
.then(function () {
return delCategory(categoryIds);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download(
"md/category/export",
{
...this.queryParams,
},
`category_${new Date().getTime()}.xlsx`
);
},
},
};
</script>

View File

@ -0,0 +1,354 @@
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="资质名称" prop="qualName">
<el-input
v-model="queryParams.qualName"
placeholder="请输入资质名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="资质类型" prop="qualType">
<el-select
v-model="queryParams.qualType"
placeholder="请选择资质类型"
clearable
>
<el-option label="请选择字典生成" value="" />
</el-select>
</el-form-item>
<el-form-item label="有效期" prop="validDate">
<el-date-picker
clearable
v-model="queryParams.validDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择有效期"
>
</el-date-picker>
</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="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['md:qualification:add']"
>新增</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['md:qualification:edit']"
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['md:qualification:remove']"
>删除</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['md:qualification:export']"
>导出</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="qualificationList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="资质名称" align="center" prop="qualName" />
<el-table-column label="资质类型" align="center" prop="qualType" />
<el-table-column
label="有效期"
align="center"
prop="validDate"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.validDate, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<el-table-column label="附件" align="center" prop="filePath" />
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['md:qualification:edit']"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['md:qualification: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"
/>
<!-- 添加或修改供应商资质对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="资质名称" prop="qualName">
<el-input v-model="form.qualName" placeholder="请输入资质名称" />
</el-form-item>
<el-form-item label="资质类型" prop="qualType">
<el-select v-model="form.qualType" placeholder="请选择资质类型">
<el-option label="请选择字典生成" value="" />
</el-select>
</el-form-item>
<el-form-item label="有效期" prop="validDate">
<el-date-picker
clearable
v-model="form.validDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择有效期"
>
</el-date-picker>
</el-form-item>
<el-form-item label="附件" prop="filePath">
<el-input
v-model="form.filePath"
type="textarea"
placeholder="请输入内容"
/>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listQualification,
getQualification,
delQualification,
addQualification,
updateQualification,
} from "@/api/mes/gys/qualification";
export default {
name: "Qualification",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
qualificationList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
supplierId: null,
qualName: null,
qualType: null,
validDate: null,
filePath: null,
isDeleted: null,
},
//
form: {},
//
rules: {},
};
},
created() {
this.getList();
},
methods: {
/** 查询供应商资质列表 */
getList() {
this.loading = true;
listQualification(this.queryParams).then((response) => {
this.qualificationList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
qualId: null,
supplierId: null,
qualName: null,
qualType: null,
validDate: null,
filePath: null,
createTime: null,
updateTime: null,
isDeleted: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.qualId);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加供应商资质";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const qualId = row.qualId || this.ids;
getQualification(qualId).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改供应商资质";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.qualId != null) {
updateQualification(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addQualification(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const qualIds = row.qualId || this.ids;
this.$modal
.confirm('是否确认删除供应商资质编号为"' + qualIds + '"的数据项?')
.then(function () {
return delQualification(qualIds);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download(
"md/qualification/export",
{
...this.queryParams,
},
`qualification_${new Date().getTime()}.xlsx`
);
},
},
};
</script>

View File

@ -0,0 +1,358 @@
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="100px"
>
<el-form-item label="供应商名称" prop="supplierName">
<el-input
v-model="queryParams.supplierName"
placeholder="请输入供应商名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="合作时间" prop="cooperationTime">
<el-date-picker
clearable
v-model="queryParams.cooperationTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择合作时间"
>
</el-date-picker>
</el-form-item>
<el-form-item label=" 合作金额" prop="amount">
<el-input
v-model="queryParams.amount"
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="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['md:record:add']"
>新增</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['md:record:edit']"
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['md:record:remove']"
>删除</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['md:record:export']"
>导出</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="recordList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="供应商名称" align="center" prop="supplierName" />
<el-table-column
label="合作时间"
align="center"
prop="cooperationTime"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.cooperationTime, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<el-table-column label=" 合作内容" align="center" prop="content" />
<el-table-column label=" 合作金额" align="center" prop="amount" />
<el-table-column label="备注" align="center" prop="remarks" />
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['md:record:edit']"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['md:record: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"
/>
<!-- 添加或修改供应商合作记录对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="供应商名称" prop="supplierName">
<el-input
v-model="form.supplierName"
placeholder="请输入供应商名称"
/>
</el-form-item>
<el-form-item label="合作时间" prop="cooperationTime">
<el-date-picker
clearable
v-model="form.cooperationTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择合作时间"
>
</el-date-picker>
</el-form-item>
<el-form-item label=" 合作内容">
<editor v-model="form.content" :min-height="192" />
</el-form-item>
<el-form-item label=" 合作金额" prop="amount">
<el-input v-model="form.amount" placeholder="请输入 合作金额" />
</el-form-item>
<el-form-item label="备注" prop="remarks">
<el-input v-model="form.remarks" placeholder="请输入备注" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listRecord,
getRecord,
delRecord,
addRecord,
updateRecord,
} from "@/api/mes/gys/record";
export default {
name: "Record",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
recordList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
supplierName: null,
supplierId: null,
cooperationTime: null,
content: null,
amount: null,
remarks: null,
isDeleted: null,
},
//
form: {},
//
rules: {},
};
},
created() {
this.getList();
},
methods: {
/** 查询供应商合作记录列表 */
getList() {
this.loading = true;
listRecord(this.queryParams).then((response) => {
this.recordList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
recordId: null,
supplierName: null,
supplierId: null,
cooperationTime: null,
content: null,
amount: null,
remarks: null,
createTime: null,
updateTime: null,
isDeleted: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.recordId);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加供应商合作记录";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const recordId = row.recordId || this.ids;
getRecord(recordId).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改供应商合作记录";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.recordId != null) {
updateRecord(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addRecord(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const recordIds = row.recordId || this.ids;
this.$modal
.confirm(
'是否确认删除供应商合作记录编号为"' + recordIds + '"的数据项?'
)
.then(function () {
return delRecord(recordIds);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download(
"md/record/export",
{
...this.queryParams,
},
`record_${new Date().getTime()}.xlsx`
);
},
},
};
</script>