赫艾前端
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.
 
 
 
 
 

784 lines
25 KiB

<template>
<div class="mod-config">
<!-- 条件查询 -->
<el-form :inline="true" label-position="top" :model="searchData">
<!-- <el-form-item :label="'BU'">-->
<!-- <el-select v-model="searchData.buDesc" placeholder="请选择" clearable style="width: 80px">-->
<!-- <el-option-->
<!-- v-for = "i in userBuList"-->
<!-- :key = "i.buNo"-->
<!-- :label = "i.buDesc"-->
<!-- :value = "i.buDesc">-->
<!-- </el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<el-form-item :label="'工厂编码'">
<el-input v-model="searchData.site" clearable style="width: 120px"></el-input>
</el-form-item>
<el-form-item :label="'样本量编码'">
<el-input v-model="searchData.samplingQtyNo" clearable style="width: 120px"></el-input>
</el-form-item>
<el-form-item :label="'样本量字码'">
<el-input v-model="searchData.samplingQtyDesc" clearable style="width: 120px"></el-input>
</el-form-item>
<el-form-item :label="'样本量'">
<el-input v-model="searchData.samplingQty" clearable style="width: 120px"></el-input>
</el-form-item>
<el-form-item :label="'是否可用'">
<el-select v-model="searchData.samplingQtyActive" style="width: 80px">
<el-option label="全部" value=""></el-option>
<el-option label="是" value="Y"></el-option>
<el-option label="否" value="N"></el-option>
</el-select>
</el-form-item>
<el-form-item :label="' '">
<el-button v-if="!authSearch" type="primary" @click="getDataList()">查询</el-button>
<el-button v-if="!authSave" type="primary" @click="addModal()">新增</el-button>
<el-button @click="exportExcel()" type="primary" style="margin-left: 2px">{{'导出'}}</el-button>
<!-- <download-excel-->
<!-- :fields="fields()"-->
<!-- :data="exportData"-->
<!-- type="xls"-->
<!-- :name="exportName"-->
<!-- :header="exportHeader"-->
<!-- :footer="exportFooter"-->
<!-- :fetch="createExportData"-->
<!-- :before-generate="startDownload"-->
<!-- :before-finish="finishDownload"-->
<!-- worksheet="导出信息"-->
<!-- class="el-button el-button&#45;&#45;primary el-button&#45;&#45;medium">-->
<!-- {{ "导出" }}-->
<!-- </download-excel>-->
</el-form-item>
</el-form>
<!-- 展示列表 -->
<el-table
:height="height"
:data="dataList"
border
style="width: 100%;">
<el-table-column
v-for="(item,index) in columnList" :key="index"
:sortable="item.columnSortable"
:prop="item.columnProp"
:header-align="item.headerAlign"
:show-overflow-tooltip="item.showOverflowTooltip"
:align="item.align"
:fixed="item.fixed===''?false:item.fixed"
:min-width="item.columnWidth"
:label="item.columnLabel">
<template slot-scope="scope">
<span v-if="!item.columnHidden">
<span v-if="columnsProp.includes(item.columnProp)">{{ scope.row[`${item.columnProp}Desc`] }}</span>
<span v-else>
{{ scope.row[item.columnProp] }}
</span>
</span>
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
</template>
</el-table-column>
<el-table-column
fixed="right"
header-align="center"
align="center"
width="160"
label="操作">
<template slot-scope="scope">
<a v-if="!authUpdate" type="text" size="small" @click="updateModal(scope.row)">修改</a>
<a v-if="!authDelete" type="text" size="small" @click="deleteModal(scope.row)">删除</a>
</template>
</el-table-column>
</el-table>
<el-pagination
@size-change="sizeChangeHandle"
@current-change="currentChangeHandle"
:current-page="pageIndex"
:page-sizes="[20, 50, 100, 200, 500]"
:page-size="pageSize"
:total="totalPage"
layout="total, sizes, prev, pager, next, jumper">
</el-pagination>
<!-- 新增和修改 -->
<el-dialog title="检验方法" :close-on-click-modal="false" v-drag :visible.sync="modalFlag" width="430px">
<el-form :inline="true" label-position="top" :model="modalData" :rules="rules" style="margin-left: 7px;margin-top: -5px;">
<!-- <el-form-item label="BU" prop="bu" :rules="rules.bu">-->
<!-- <el-select v-model="modalData.bu" placeholder="请选择" :disabled="modalDisableFlag" style="width: 390px">-->
<!-- <el-option-->
<!-- v-for = "i in userBuList"-->
<!-- :key = "i.buNo"-->
<!-- :label = "i.sitename"-->
<!-- :value = "i.buNo">-->
<!-- <span style="float: left;width: 100px">{{ i.sitename }}</span>-->
<!-- <span style="float: right; color: #8492a6;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; font-size: 11px;width: 60px">-->
<!-- {{ i.buDesc }}-->
<!-- </span>-->
<!-- </el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<el-form-item label="工厂编码:" prop="site" :rules="rules.site">
<el-input v-model="modalData.site" disabled style="width: 120px"></el-input>
</el-form-item>
</el-form>
<el-form :inline="true" label-position="top" :model="modalData" :rules="rules" style="margin-left: 7px;margin-top: -5px;">
<el-form-item label="样本量字码:" prop="samplingQtyDesc" :rules="rules.samplingQtyDescType">
<el-input v-model="modalData.samplingQtyDesc" style="width: 120px"></el-input>
</el-form-item>
<el-form-item label="样本量:" prop="samplingQty" :rules="rules.samplingQtyType">
<el-input v-model="modalData.samplingQty" type="number" style="width: 120px"></el-input>
</el-form-item>
<el-form-item :label="'是否可用'" prop="samplingQtyActive" :rules="rules.samplingQtyActiveType">
<el-select filterable v-model="modalData.samplingQtyActive" style="width: 120px">
<el-option label="是" value="Y"></el-option>
<el-option label="否" value="N"></el-option>
</el-select>
</el-form-item>
</el-form>
<el-form :inline="true" label-position="top" style="margin-left: 7px;margin-top: -5px;">
<el-form-item label="样本量说明:">
<el-input v-model="modalData.samplingQtyRemark" style="width: 390px"></el-input>
</el-form-item>
</el-form>
<el-footer style="height:40px;margin-top: 20px;text-align:center">
<el-button type="primary" @click="saveData()">保存</el-button>
<el-button type="primary" @click="modalFlag = false">关闭</el-button>
</el-footer>
</el-dialog>
</div>
</template>
<script>
import {
samplingQtySearch, // 查询样本量
samplingQtySave, // 新增样本量
samplingQtyUpdate, // 修改样本量
samplingQtyDelete, // 删除样本量
getSiteAndBuByUserName
} from "@/api/qc/qc.js"
import excel from "@/utils/excel-util.js";
import {getTableDefaultListLanguage, getTableUserListLanguage} from "@/api/table.js"
import {userFavoriteList, saveUserFavorite, removeUserFavorite} from '@/api/userFavorite.js'
export default {
watch: {
searchData: {
deep: true,
handler: function (newV, oldV) {
this.searchData.samplingQtyDesc = this.searchData.samplingQtyDesc.toUpperCase()
}
},
modalData: {
deep: true,
handler: function (newV, oldV) {
this.modalData.samplingQtyDesc = this.modalData.samplingQtyDesc.toUpperCase()
}
}
},
data () {
return {
columnsProp:['createBy', 'samplingQtyActive', 'updateBy'],
// 是否收藏
favorite: false,
// 导出 start
exportData: [],
exportName: "样本量" + this.dayjs().format('YYYYMMDDHHmmss'),
exportHeader: ["样本量"],
exportFooter: [],
exportList: [],
// 导出 end
searchData: {
site: '',
userName: this.$store.state.user.name,
samplingQtyNo: '',
samplingQtyDesc: '',
samplingQty: '',
samplingQtyActive: '',
buDesc: '',
page: 1,
limit: 10,
},
pageIndex: 1,
pageSize: 20,
totalPage: 0,
height: 200,
dataList: [],
modalFlag: false,
modalDisableFlag: false,
modalData: {
flag: '',
site: '',
bu: '',
samplingQtyNo: '',
samplingQtyDesc: '',
samplingQty: '',
samplingQtyRemark: '',
samplingQtyActive: '',
createBy: this.$store.state.user.name,
updateBy: this.$store.state.user.name
},
// 标头展示
columnList: [
{
userId: this.$store.state.user.name,
functionId: 301009,
serialNumber: '301009TableSite',
tableId: "301009Table",
tableName: "样本大小表",
columnProp: 'site',
headerAlign: 'center',
align: "center",
columnLabel: '工厂编码',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301009,
serialNumber: '301009TableSamplingQtyNo',
tableId: "301009Table",
tableName: "样本大小表",
columnProp: 'samplingQtyNo',
headerAlign: 'center',
align: "center",
columnLabel: '样本量编码',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301009,
serialNumber: '301009TableSamplingQtyDesc',
tableId: "301009Table",
tableName: "样本大小表",
columnProp: 'samplingQtyDesc',
headerAlign: 'center',
align: "center",
columnLabel: '样本量字码',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301009,
serialNumber: '301009TableSamplingQty',
tableId: "301009Table",
tableName: "样本大小表",
columnProp: 'samplingQty',
headerAlign: 'center',
align: "right",
columnLabel: '样本量',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301009,
serialNumber: '301009TableSamplingQtyRemark',
tableId: "301009Table",
tableName: "样本大小表",
columnProp: 'samplingQtyRemark',
headerAlign: 'center',
align: "left",
columnLabel: '样本量说明',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 200,
},
{
userId: this.$store.state.user.name,
functionId: 301009,
serialNumber: '301009TableSamplingQtyActive',
tableId: "301009Table",
tableName: "样本大小表",
columnProp: 'samplingQtyActive',
headerAlign: 'center',
align: "center",
columnLabel: '是否可用',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301009,
serialNumber: '301009TableCreateDate',
tableId: "301009Table",
tableName: "样本大小表",
columnProp: 'createDate',
headerAlign: 'center',
align: "center",
columnLabel: '创建时间',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 170,
},
{
userId: this.$store.state.user.name,
functionId: 301009,
serialNumber: '301009TableCreateBy',
tableId: "301009Table",
tableName: "样本大小表",
columnProp: 'createBy',
headerAlign: 'center',
align: "center",
columnLabel: '创建人',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301009,
serialNumber: '301009TableUpdateDate',
tableId: "301009Table",
tableName: "样本大小表",
columnProp: 'updateDate',
headerAlign: 'center',
align: "center",
columnLabel: '更新时间',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 170,
},
{
userId: this.$store.state.user.name,
functionId: 301009,
serialNumber: '301009TableUpdateBy',
tableId: "301009Table",
tableName: "样本大小表",
columnProp: 'updateBy',
headerAlign: 'center',
align: "center",
columnLabel: '更新人',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
],
rules: {
site:[
{
required: true,
message: ' ',
trigger: ['blur','change']
}
],
samplingQtyDescType:[
{
required: true,
message: ' ',
trigger: ['blur','change']
}
],
samplingQtyType:[
{
required: true,
message: ' ',
trigger: ['blur','change']
}
],
samplingQtyActiveType:[
{
required: true,
message: ' ',
trigger: ['blur','change']
}
],
bu:[
{
required: true,
message: ' ',
trigger: ['blur','change']
}
]
},
userBuList: [],
authSearch: false,
authSave: false,
authUpdate: false,
authDelete: false,
menuId: this.$route.meta.menuId,
}
},
mounted () {
this.$nextTick(() => {
this.height = window.innerHeight - 180
})
},
created () {
// 按钮控制
this.getButtonAuthData()
// 获取用户的 site 和 bu
// this.getSiteAndBuByUserName()
// 校验用户是否收藏
// this.favoriteIsOk()
// 动态列
// this.getTableUserColumn(this.$route.meta.menuId+'table',1)
if (!this.authSearch) {
// 获取数据列表
this.getDataList()
}
},
methods: {
// 获取用户的bu
getSiteAndBuByUserName () {
let tempData = {
username: this.$store.state.user.name,
}
getSiteAndBuByUserName(tempData).then(({data}) => {
if (data.code === 0) {
this.userBuList = data.rows
}
})
},
// 每页数
sizeChangeHandle (val) {
this.pageSize = val
this.pageIndex = 1
this.getDataList()
},
// 当前页
currentChangeHandle (val) {
this.pageIndex = val
this.getDataList()
},
// 查询获取数据列表
getDataList () {
this.searchData.limit = this.pageSize
this.searchData.page = this.pageIndex
samplingQtySearch(this.searchData).then(({data}) => {
if (data.code === 0) {
this.dataList = data.page.list
this.pageIndex = data.page.currPage
this.pageSize = data.page.pageSize
this.totalPage = data.page.totalCount
}
})
},
// 新增按钮
addModal () {
this.modalData = {
flag: '1',
site: this.$store.state.user.site,
buNo: '*',
// bu: this.userBuList[0].buNo,
samplingQtyNo: '',
samplingQtyDesc: '',
samplingQty: '',
samplingQtyRemark: '',
samplingQtyActive: 'Y',
createBy: this.$store.state.user.name,
updateBy: this.$store.state.user.name
}
this.modalDisableFlag = false
this.modalFlag = true
},
// 修改按钮
updateModal (row) {
this.modalData = {
flag: '2',
bu: row.site + '_' + row.buNo,
site: row.site,
samplingQtyNo: row.samplingQtyNo,
samplingQtyDesc: row.samplingQtyDesc,
samplingQty: row.samplingQty,
samplingQtyRemark: row.samplingQtyRemark,
samplingQtyActive: row.samplingQtyActive,
createBy: this.$store.state.user.name,
updateBy: this.$store.state.user.name
}
this.modalDisableFlag = true
this.modalFlag = true
},
// 删除方法
deleteModal (row) {
this.$confirm(`是否删除这个样本量?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
samplingQtyDelete(row).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
onClose: () => {}
})
} else {
this.$alert(data.msg, '错误', {
confirmButtonText: '确定'
})
}
})
}).catch(() => {
})
},
// 新增/修改方法
saveData () {
if (this.modalData.samplingQtyDesc === '' || this.modalData.samplingQtyDesc == null) {
this.$message.warning('请输入样本量字码!')
return
}
if (this.modalData.samplingQty === '' || this.modalData.samplingQty == null) {
this.$message.warning('请输入样本量!')
return
}
if (this.modalData.samplingQtyActive === '' || this.modalData.samplingQtyActive == null) {
this.$message.warning('请选择是否在用!')
return
}
if (this.modalData.flag === '1') { // 新增
samplingQtySave(this.modalData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
this.modalFlag = false
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
onClose: () => {}
})
} else {
this.$alert(data.msg, '错误', {
confirmButtonText: '确定'
})
}
})
} else { // 修改
samplingQtyUpdate(this.modalData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
this.modalFlag = false
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
onClose: () => {}
})
} else {
this.$alert(data.msg, '错误', {
confirmButtonText: '确定'
})
}
})
}
},
// 校验用户是否收藏
favoriteIsOk () {
let userFavorite = {
userId: this.$store.state.user.id,
languageCode: this.$i18n.locale
}
userFavoriteList(userFavorite).then(({data}) => {
for (let i = 0; i < data.list.length; i++) {
if (this.$route.meta.menuId === data.list[i].menuId) {
this.favorite = true
}
}
})
},
// 收藏 OR 取消收藏
favoriteFunction () {
let userFavorite = {
userId: this.$store.state.user.id,
functionId: this.$route.meta.menuId,
}
if (this.favorite) {
removeUserFavorite(userFavorite).then(({data}) => {
this.$message.success(data.msg)
this.favorite = false
})
} else {
// 收藏
saveUserFavorite(userFavorite).then(({data}) => {
this.$message.success(data.msg)
this.favorite = true
})
}
},
// 导出excel
async createExportData () {
this.searchData.limit = -1
this.searchData.page = 1
await samplingQtySearch(this.searchData).then(({data}) => {
this.exportList = data.rows
})
return this.exportList
},
async exportExcel() {
this.searchData.limit = -1
this.searchData.page = 1
excel.exportTable({
url: "/pms/qc/samplingQtySearch",
columnMapping: this.columnList,//可以直接用table,不需要的列就剔除
mergeSetting: [],//需要合并的列
params: this.searchData,
fileName: this.exportName+".xlsx",
rowFetcher: res => res.data,
columnFormatter: [],
dropColumns: [],//需要剔除的列,例如dropColumns: ["netWeight"],即剔除净重列
})
},
startDownload () {},
finishDownload () {},
fields () {
let json = "{"
this.columnList.forEach((item, index) => {
if (index == this.columnList.length - 1) {
json += "\"" + item.columnLabel + "\"" + ":" + "\"" + item.columnProp + "\""
} else {
json += "\"" + item.columnLabel + "\"" + ":" + "\"" + item.columnProp + "\"" + ","
}
})
json += "}"
let s = eval("(" + json + ")")
return s
},
// 动态列开始 获取 用户保存的 格式列
async getTableUserColumn (tableId, columnId) {
let queryTableUser = {
userId: this.$store.state.user.name,
functionId: this.$route.meta.menuId,
tableId: tableId,
status: true,
languageCode: this.$i18n.locale
}
await getTableUserListLanguage(queryTableUser).then(({data}) => {
if (data.rows.length > 0) {
//this.columnList1 = []
switch (columnId) {
case 1:
this.columnList = data.rows
break;
// case 2:
// this.columnDetailList = data.rows
// break;
// case 3:
// this.columnList2 = data.rows
// break;
// case 4:
// this.columnList3 = data.rows
// break;
}
} else {
this.getColumnList(tableId, columnId)
}
})
},
// 获取 tableDefault 列
async getColumnList (tableId, columnId) {
let queryTable = {
functionId: this.$route.meta.menuId,
tableId: tableId,
languageCode: this.$i18n.locale
}
await getTableDefaultListLanguage(queryTable).then(({data}) => {
if (!data.rows.length == 0) {
switch (columnId) {
case 1:
this.columnList = data.rows
break;
// case 2:
// this.columnDetailList = data.rows
// break;
// case 3:
// this.columnList2 = data.rows
// break;
// case 4:
// this.columnList3 = data.rows
// break;
}
} else {
// this.showDefault = true.
}
})
},
//获取按钮的权限数据
getButtonAuthData () {
let searchFlag = this.isAuth(this.menuId+":search")
let saveFlag = this.isAuth(this.menuId+":save")
let updateFlag = this.isAuth(this.menuId+":update")
let deleteFlag = this.isAuth(this.menuId+":delete")
//处理页面的权限数据
this.authSearch = !searchFlag
this.authSave = !saveFlag
this.authUpdate = !updateFlag
this.authDelete = !deleteFlag
},
}
}
</script>
<style scoped>
.el-table /deep/ .cell{
height: auto;
line-height: 1.5;
}
</style>