6 changed files with 4312 additions and 0 deletions
-
3src/api/chooselist/chooselist.js
-
9src/api/orderIssure/soIssueNotify.js
-
271src/views/modules/common/Chooselist_eam.vue
-
2147src/views/modules/orderIssure/newSoIssueNotify.vue
-
1726src/views/modules/orderIssure/searchIssureNotify.vue
-
156src/views/modules/orderIssure/walmart_upload_excel.vue
@ -0,0 +1,9 @@ |
|||||
|
import { createAPI } from "@/utils/httpRequest.js"; |
||||
|
|
||||
|
export const getSOScheduledRoutingListForIssure= data => createAPI(`/orderIssure/issureNotify/getSOScheduledRoutingListForIssure`,'post',data) |
||||
|
export const saveIssureNotifyByExcel = data => createAPI(`/orderIssure/issureNotify/saveIssureNotifyByExcel`,'post',data) |
||||
|
export const createNotify = data => createAPI(`/orderIssure/issureNotify/createNotify`,'post',data) |
||||
|
export const getUserNotifyNo = data => createAPI(`/orderIssure/issureNotify/getUserNotifyNo`,'post',data) |
||||
|
export const deleteNotify = data => createAPI(`/orderIssure/issureNotify/deleteNotify`,'post',data) |
||||
|
export const getNotifyNoDetail = data => createAPI(`/orderIssure/issureNotify/getNotifyNoDetail`,'post',data) |
||||
|
export const getAllNotifyStatus = data => createAPI(`/sys/enum/list`,'get',data) |
||||
@ -0,0 +1,271 @@ |
|||||
|
<template> |
||||
|
<el-dialog class="yzzInput" :title="baseListData.description" append-to-body :close-on-click-modal="false" :close-on-press-escape="false" @close="closeDialog" :visible.sync="visible" width="685px" v-drag> |
||||
|
<el-form label-position="top" inline="inline" size="mini" > |
||||
|
<el-row :gutter="10"> |
||||
|
<el-col :span="6" > |
||||
|
<el-form-item :label="baseListData.caption1" v-if="baseListData.caption1 != '' && baseListData.caption1 != null"> |
||||
|
<el-input v-model="param1"></el-input> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="6" > |
||||
|
<el-form-item :label="baseListData.caption2" v-if="baseListData.caption2 != '' && baseListData.caption2 != null"> |
||||
|
<el-input v-model="param2"></el-input> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="6" > |
||||
|
<el-form-item :label="baseListData.caption3" v-if="baseListData.caption3 != '' && baseListData.caption3 != null"> |
||||
|
<el-input v-model="param3"></el-input> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="6" > |
||||
|
<el-form-item :label="baseListData.caption4" v-if="baseListData.caption4 != '' && baseListData.caption4 != null"> |
||||
|
<el-input v-model="param4"></el-input> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="6" > |
||||
|
<el-form-item :label="baseListData.caption5" v-if="baseListData.caption5 != '' && baseListData.caption5 != null"> |
||||
|
<el-input v-model="param5"></el-input> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="6" > |
||||
|
<el-form-item :label="baseListData.caption6" v-if="baseListData.caption6 != '' && baseListData.caption6 != null "> |
||||
|
<el-select v-model="param6" style="width: 120px"> |
||||
|
<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-col> |
||||
|
<el-col :span="6" > |
||||
|
<el-form-item :label="baseListData.caption7" v-if="baseListData.caption7 != '' && baseListData.caption7 != null"> |
||||
|
<el-input v-model="param7"></el-input> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="6" > |
||||
|
<el-button style="margin-top: 18px" type="primary" @click="getDataList(false)">查询 |
||||
|
</el-button> |
||||
|
</el-col> |
||||
|
|
||||
|
</el-row> |
||||
|
</el-form> |
||||
|
|
||||
|
<el-table |
||||
|
:height="height" |
||||
|
:data="dataList" |
||||
|
border |
||||
|
@row-dblclick="getRowData" |
||||
|
v-loading="dataListLoading" |
||||
|
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"> |
||||
|
{{ scope.row[item.columnProp] }} |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
|
||||
|
<span slot="footer" class="dialog-footer"> |
||||
|
<el-button @click="visible = false" type="primary">关闭</el-button> |
||||
|
</span> |
||||
|
</el-dialog> |
||||
|
|
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
|
||||
|
|
||||
|
import { |
||||
|
getChooselistEam, |
||||
|
getChooselistDataEam, |
||||
|
} from "@/api/chooselist/chooselist.js" |
||||
|
|
||||
|
export default { |
||||
|
data() { |
||||
|
return { |
||||
|
height: 200, |
||||
|
tagNo: '', |
||||
|
title: '列表', |
||||
|
columnList: [], |
||||
|
queryTable: {}, |
||||
|
visible: false, |
||||
|
dataListLoading: true, |
||||
|
fullscreenLoading: false, |
||||
|
param1: '', |
||||
|
param2: '', |
||||
|
param3: '', |
||||
|
param4: '', |
||||
|
param5: '', |
||||
|
param6: '', |
||||
|
param7: this.$store.state.user.name, |
||||
|
param: '', |
||||
|
conSql: '', |
||||
|
dataList: [], |
||||
|
baseListData: { |
||||
|
caption1: '', |
||||
|
caption2: '', |
||||
|
caption3: '', |
||||
|
caption4: '', |
||||
|
caption5: '', |
||||
|
caption6: '', |
||||
|
caption7: '', |
||||
|
description: '', |
||||
|
fieldname1: '', |
||||
|
fieldname2: '', |
||||
|
fieldname3: '', |
||||
|
fieldname4: '', |
||||
|
fieldname5: '', |
||||
|
fieldname6: '', |
||||
|
sqlcode: '', |
||||
|
tagno: '', |
||||
|
}, |
||||
|
defaultParam: false |
||||
|
} |
||||
|
}, |
||||
|
methods: { |
||||
|
|
||||
|
// 获取 用户的配置 |
||||
|
init (tagNo, param, conSql) { |
||||
|
this.tagNo = tagNo |
||||
|
this.visible = true |
||||
|
this.param = param |
||||
|
this.conSql = conSql ? conSql : '' |
||||
|
// 根据 tagNo 获取列表 |
||||
|
getChooselistEam({"tagNo": tagNo}).then(({data}) => { |
||||
|
this.columnList = [] |
||||
|
this.baseListData = data.data |
||||
|
let start = data.data.sqlcode.toUpperCase().indexOf("Select".toUpperCase()) |
||||
|
let end = data.data.sqlcode.toUpperCase().indexOf("from".toUpperCase()) |
||||
|
let length = end - start |
||||
|
let columns = data.data.sqlcode.trim().substring(start + 6, length).trim() |
||||
|
let props = columns.split(",") |
||||
|
props.forEach((item, index) => { |
||||
|
let name = '信息列' |
||||
|
switch (index) { |
||||
|
case 0: |
||||
|
name = this.baseListData.caption1 |
||||
|
break; |
||||
|
case 1: |
||||
|
name = this.baseListData.caption2 |
||||
|
break; |
||||
|
case 2: |
||||
|
name = this.baseListData.caption3 |
||||
|
break; |
||||
|
case 3: |
||||
|
name = this.baseListData.caption4 |
||||
|
break; |
||||
|
case 4: |
||||
|
name = this.baseListData.caption5 |
||||
|
break; |
||||
|
case 5: |
||||
|
name = this.baseListData.caption6 |
||||
|
break; |
||||
|
case 6: |
||||
|
name = this.baseListData.caption7 |
||||
|
break; |
||||
|
} |
||||
|
let index1 = item.indexOf(" as ") |
||||
|
let index2 = item.indexOf(".") |
||||
|
let l = item.length |
||||
|
let prop = item |
||||
|
if (index1 > 0) { |
||||
|
prop = item.substring(index1 + 3, l).trim() |
||||
|
} |
||||
|
if (index1 < 0 && index2 > 0) { |
||||
|
prop = item.substring(index2 + 1, l) |
||||
|
} |
||||
|
let column = { |
||||
|
"columnProp": prop.trim(), |
||||
|
"columnLabel": name, |
||||
|
"columnHidden": false, |
||||
|
"columnImage": false, |
||||
|
"columnSortable": false, |
||||
|
"columnWidth": null, |
||||
|
"format": null, |
||||
|
"sortLv": index, |
||||
|
"status": true, |
||||
|
"fixed": false, |
||||
|
"serialNumber": null, |
||||
|
"columnType": null, |
||||
|
"align": null |
||||
|
} |
||||
|
this.columnList.push(column) |
||||
|
}) |
||||
|
this.getDataList(true) |
||||
|
}) |
||||
|
this.dataListLoading = false |
||||
|
}, |
||||
|
|
||||
|
getDataList (bool) { |
||||
|
let sql = this.baseListData.sqlcode |
||||
|
if (bool) { |
||||
|
sql += " and (" + this.baseListData.fieldname1 + " like '%" + this.param + "%' OR " + this.baseListData.fieldname2 + " like '%" + this.param + "%'" + " ) " |
||||
|
} |
||||
|
if (this.param1) { |
||||
|
sql += " and " + this.baseListData.fieldname1 + " like '%" + this.param1 + "%'" |
||||
|
} |
||||
|
if (this.param2) { |
||||
|
sql += " and " + this.baseListData.fieldname2 + " like '%" + this.param2 + "%'" |
||||
|
} |
||||
|
if (this.param3) { |
||||
|
sql += " and " + this.baseListData.fieldname3 + " like '%" + this.param3 + "%'" |
||||
|
} |
||||
|
if (this.param4) { |
||||
|
sql += " and " + this.baseListData.fieldname4 + " like '%" + this.param4 + "%'" |
||||
|
} |
||||
|
if (this.param5) { |
||||
|
sql += " and " + this.baseListData.fieldname5 + " like '%" + this.param5 + "%'" |
||||
|
} |
||||
|
if (this.param6 ) { |
||||
|
sql += " and active like '%" + this.param6 + "%'" |
||||
|
} |
||||
|
if (this.tagNo <= 500 && this.tagNo !== 93 && this.tagNo !== 201) { |
||||
|
if (this.param7) { |
||||
|
sql += " and site in (select site from eam_access_site where username = '" + this.param7 + "') " + " and (site + '-' + bu_no) in (select (a.site + '-' + a.bu_no) from AccessBu as a left join eam_access_site as b on a.site = b.site and a.username = b.username where a.username = '" + this.param7 + "')" |
||||
|
} |
||||
|
} |
||||
|
if (this.tagNo > 500 && this.tagNo < 1000) { |
||||
|
if (this.param7) { |
||||
|
sql += " and site in (select site from eam_access_site where username = '" + this.param7 + "') " |
||||
|
} |
||||
|
} |
||||
|
sql += this.conSql |
||||
|
getChooselistDataEam({"sqlcode": sql}).then(({data}) => { |
||||
|
if (data.code == 0) { |
||||
|
this.dataList = data.baseListData; |
||||
|
} else { |
||||
|
this.$message.error(data.msg) |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
getRowData (row) { |
||||
|
this.visible = false |
||||
|
this.$emit('getBaseData',row) |
||||
|
}, |
||||
|
|
||||
|
closeDialog () { |
||||
|
this.param1 = '' |
||||
|
this.param2 = '' |
||||
|
this.param3 = '' |
||||
|
this.param4 = '' |
||||
|
this.param5 = '' |
||||
|
this.param6 = '' |
||||
|
this.param7 = this.$store.state.user.name |
||||
|
this.param = '' |
||||
|
this.dataList = [] |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
<style> |
||||
|
|
||||
|
|
||||
|
</style> |
||||
2147
src/views/modules/orderIssure/newSoIssueNotify.vue
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1726
src/views/modules/orderIssure/searchIssureNotify.vue
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,156 @@ |
|||||
|
<template> |
||||
|
<div class="customer-css"> |
||||
|
<el-dialog :title="titleCon" :close-on-click-modal="false" :visible.sync="visible" width="390px" style="height: 520px;" class="customer-dialog" @close="deleteFile"> |
||||
|
<el-form :inline="true" label-position="top" label-width="80px"> |
||||
|
<el-row> |
||||
|
<el-form-item label=" "> |
||||
|
<el-button type="primary" @click="downloadFile()">下载文件模板</el-button> |
||||
|
</el-form-item> |
||||
|
</el-row> |
||||
|
<el-row> |
||||
|
<el-col :span="24"> |
||||
|
<el-upload class="customer-upload" drag action="javascript:void(0);" ref="uploadFile" :limit="1" accept=".xlsx,.xls" |
||||
|
:before-upload="beforeUploadHandle" :on-change="onChange" :auto-upload="false" style="text-align: left;"> |
||||
|
<i class="el-icon-upload"></i> |
||||
|
<div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div> |
||||
|
</el-upload> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
</el-form> |
||||
|
<span slot="footer" class="dialog-footer"> |
||||
|
<el-button type="primary" @click="saveUploadFile">保存</el-button> |
||||
|
<el-button type="primary" @click="closeDialog">关闭</el-button> |
||||
|
</span> |
||||
|
</el-dialog> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
/* import {queryFileId} from "@/api/qc/qc.js" |
||||
|
import {saveWalMartOrderByExcel} from '@/api/ecss/ecss.js' |
||||
|
import {downLoadObjectFile} from '@/api/eam/eam_object_list.js' */ |
||||
|
import {saveIssureNotifyByExcel} from '@/api/orderIssure/soIssueNotify.js' |
||||
|
export default { |
||||
|
name: 'bomComponentUpload', |
||||
|
data() { |
||||
|
return { |
||||
|
buList: [], |
||||
|
titleCon: '文件导入', |
||||
|
visible: false, |
||||
|
fileList: [], |
||||
|
pageData: { |
||||
|
site: '', |
||||
|
buNo: '', |
||||
|
createBy: this.$store.state.user.name, |
||||
|
|
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
methods: { |
||||
|
|
||||
|
// 初始化组件的参数 |
||||
|
init () { |
||||
|
this.fileList = [] |
||||
|
// 打开页面 |
||||
|
this.visible = true |
||||
|
}, |
||||
|
|
||||
|
// 上传之前 |
||||
|
beforeUploadHandle (file) { |
||||
|
let extName = file[0].name.substring(file[0].name.lastIndexOf('.')).toLowerCase() |
||||
|
if (!(extName === '.xlsx' || extName === '.xls')) { |
||||
|
this.$message.error('数据导入失败,请选择正确的xlsx模板文件') |
||||
|
return false |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
// 选择上传文件时 |
||||
|
onChange (file) { |
||||
|
this.fileList.push(file) |
||||
|
}, |
||||
|
|
||||
|
// 关闭modal |
||||
|
closeDialog () { |
||||
|
this.deleteFile() |
||||
|
// 关闭当前的页面 |
||||
|
this.visible = false |
||||
|
}, |
||||
|
deleteFile(){ |
||||
|
this.fileList = [] |
||||
|
// 清空文件上传记录 |
||||
|
this.$refs.uploadFile.clearFiles() |
||||
|
// 刷新报工的页面 |
||||
|
this.$emit('refreshTable') |
||||
|
|
||||
|
}, |
||||
|
|
||||
|
// 保修当前的数据 |
||||
|
saveUploadFile () { |
||||
|
// 判断文件是否上传 |
||||
|
if (null == this.fileList || 0 === this.fileList.length) { |
||||
|
this.$message.error("请先上传文件!") |
||||
|
return false |
||||
|
} |
||||
|
const formData = new FormData() |
||||
|
formData.append("buNo",'03-RFID') |
||||
|
formData.append("username",this.$store.state.user.name) |
||||
|
formData.append("file", this.fileList[0].raw) |
||||
|
saveIssureNotifyByExcel(formData).then(({data}) => { |
||||
|
if (data.code === 0) { |
||||
|
if (data.errorMsg) { |
||||
|
this.$message.warning(data.errorMsg) |
||||
|
} else { |
||||
|
this.$message.success(data.msg) |
||||
|
} |
||||
|
// 关闭窗口并刷新页面 |
||||
|
this.closeDialog() |
||||
|
} else { |
||||
|
this.$message.error(data.msg) |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
// 下载 |
||||
|
async downloadFile () { |
||||
|
let file = { |
||||
|
id: 0, |
||||
|
fileName: '' |
||||
|
} |
||||
|
let tempData = { |
||||
|
orderRef1: 'ecss', |
||||
|
orderRef2: 'upLoadWalMart' |
||||
|
} |
||||
|
await queryFileId(tempData).then(({data}) => { |
||||
|
if (data && data.code === 0) { |
||||
|
file.id = data.data.id |
||||
|
file.fileName = data.data.fileName |
||||
|
} else { |
||||
|
this.$alert(data.msg, '错误', { |
||||
|
confirmButtonText: '确定' |
||||
|
}) |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
await downLoadObjectFile(file).then(({data}) => { |
||||
|
// 不限制文件下载类型 |
||||
|
const blob = new Blob([data], {type: "application/octet-stream"}) |
||||
|
// 下载文件名称 |
||||
|
const fileName = file.fileName |
||||
|
// a标签下载 |
||||
|
const linkNode = document.createElement('a') |
||||
|
// a标签的download属性规定下载文件的名称 |
||||
|
linkNode.download = fileName |
||||
|
linkNode.style.display = 'none' |
||||
|
// 生成一个Blob URL |
||||
|
linkNode.href = URL.createObjectURL(blob) |
||||
|
document.body.appendChild(linkNode) |
||||
|
// 模拟在按钮上的一次鼠标单击 |
||||
|
linkNode.click() |
||||
|
// 释放URL 对象 |
||||
|
URL.revokeObjectURL(linkNode.href) |
||||
|
document.body.removeChild(linkNode) |
||||
|
}) |
||||
|
}, |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue