|
|
|
|
@ -1,17 +1,19 @@ |
|
|
|
|
<template> |
|
|
|
|
<el-dialog title="增加" append-to-body :modelValue="openShow" width="90%" @close="closeDialog" fullscreen> |
|
|
|
|
<el-form :model="form" label-width="auto" > |
|
|
|
|
<el-form-item label="月份" required> |
|
|
|
|
<el-dialog title="申请" append-to-body :modelValue="openShow" width="90%" @close="closeDialog" fullscreen> |
|
|
|
|
<el-form ref="form" :model="submitForm" label-width="auto" :rules="rules" > |
|
|
|
|
<el-form-item label="月份" required prop="date"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="value5" |
|
|
|
|
v-model="submitForm.date" |
|
|
|
|
format="YYYY-MM" |
|
|
|
|
value-format="YYYY-MM" |
|
|
|
|
type="month" |
|
|
|
|
placeholder="请选择" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<div style="margin-bottom: 12px;"> |
|
|
|
|
<el-button type="danger" @click="addEdit()">删除选择行</el-button> |
|
|
|
|
<el-button type="primary" @click="addEdit()">保存</el-button> |
|
|
|
|
<el-button type="danger" @click="deleteTable">删除选择行</el-button> |
|
|
|
|
<!-- <el-button type="primary" @click="addEdit()">保存</el-button> --> |
|
|
|
|
</div> |
|
|
|
|
<avue-crud :option="option" :table-loading="loading" :data="data" v-model="form" v-model:page="page" ref="crud" |
|
|
|
|
@row-del="rowDel" @search-change="searchChange" @search-reset="searchReset" |
|
|
|
|
@ -21,15 +23,17 @@ |
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|
</avue-crud> |
|
|
|
|
<!-- <template #footer> |
|
|
|
|
<template #footer> |
|
|
|
|
<span class="dialog-footer"> |
|
|
|
|
<el-button @click="closeDialog">取 消</el-button> |
|
|
|
|
<el-button type="primary" @click="submit">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</template> --> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
</template> |
|
|
|
|
<script> |
|
|
|
|
import {getList} from "@/api/outsourcingManagement/baseTemplate" |
|
|
|
|
import {performanceApply} from "@/api/outsourcingManagement/performanceApplication" |
|
|
|
|
export default { |
|
|
|
|
props: { |
|
|
|
|
showDialog: { |
|
|
|
|
@ -39,7 +43,14 @@ export default { |
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
rules:{ |
|
|
|
|
date:[ { required: true, message: '请选择月份', trigger: 'blur' }] |
|
|
|
|
}, |
|
|
|
|
openShow: false, |
|
|
|
|
loading:false, |
|
|
|
|
submitForm:{ |
|
|
|
|
date:'', |
|
|
|
|
}, |
|
|
|
|
option: { |
|
|
|
|
height: 'auto', |
|
|
|
|
page:false, |
|
|
|
|
@ -95,7 +106,7 @@ export default { |
|
|
|
|
column: [ |
|
|
|
|
{ |
|
|
|
|
label: '工艺能力', |
|
|
|
|
prop: 'plate', |
|
|
|
|
prop: 'caName', |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
span: 24, |
|
|
|
|
@ -104,8 +115,8 @@ export default { |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '厂家代码', |
|
|
|
|
prop: 'bsOemCustomer.ocCode', |
|
|
|
|
bind: 'bsOemCustomer.ocCode', |
|
|
|
|
prop: 'oemCode', |
|
|
|
|
// bind: 'bsOemCustomer.ocCode', |
|
|
|
|
search: false, |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
@ -114,8 +125,8 @@ export default { |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '厂家名称', |
|
|
|
|
prop: 'bsOemCustomer.ocName', |
|
|
|
|
bind: 'bsOemCustomer.ocName', |
|
|
|
|
prop: 'oemName', |
|
|
|
|
// bind: 'bsOemCustomer.ocName', |
|
|
|
|
search: false, |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
@ -144,9 +155,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入实际值', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -172,9 +183,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -200,9 +211,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -228,9 +239,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -257,9 +268,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -285,9 +296,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -313,9 +324,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -341,9 +352,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -369,9 +380,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -397,9 +408,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -425,9 +436,9 @@ export default { |
|
|
|
|
span: 24, |
|
|
|
|
width: 120, |
|
|
|
|
cell: true, |
|
|
|
|
rules: [ |
|
|
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
] |
|
|
|
|
// rules: [ |
|
|
|
|
// { required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
|
|
// ] |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
@ -453,217 +464,300 @@ export default { |
|
|
|
|
}, |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
data:[], |
|
|
|
|
form: { |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
page: { |
|
|
|
|
pageSize: 10, |
|
|
|
|
pageSize: 9999, |
|
|
|
|
currentPage: 1, |
|
|
|
|
total: 0, |
|
|
|
|
}, |
|
|
|
|
selectionList:[] |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
this.openShow = this.showDialog |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
closeDialog() { |
|
|
|
|
closeDialog(val) { |
|
|
|
|
this.openShow = false |
|
|
|
|
this.$emit('closeDialog'); |
|
|
|
|
this.$emit('closeDialog',val); |
|
|
|
|
}, |
|
|
|
|
selectionChange(list){ |
|
|
|
|
this.selectionList = list |
|
|
|
|
}, |
|
|
|
|
deleteTable(){ |
|
|
|
|
if(this.selectionList.length == 0){ |
|
|
|
|
this.$message.error('请选择要删除的行') |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
const idsToRemove = new Set(this.selectionList.map(i => i.id)); |
|
|
|
|
const resultNum = this.data.filter(i => !idsToRemove.has(i.id)); |
|
|
|
|
console.log('resultNum==========',resultNum) |
|
|
|
|
this.data = resultNum |
|
|
|
|
}, |
|
|
|
|
submit(){ |
|
|
|
|
console.log('111111111111') |
|
|
|
|
this.$refs.form.validate(valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
this.data.map(item =>{ |
|
|
|
|
item.ocId = parseInt(item.ocId) |
|
|
|
|
}) |
|
|
|
|
let params = { |
|
|
|
|
date:this.submitForm.date, |
|
|
|
|
oemMeritsEntities:this.data |
|
|
|
|
} |
|
|
|
|
console.log('param---------',params) |
|
|
|
|
// performanceApply(params).then(res =>{ |
|
|
|
|
// if(res.data.code == 200){ |
|
|
|
|
// this.$message.success('申请成功') |
|
|
|
|
// this.closeDialog(true) |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
onLoad() { |
|
|
|
|
this.loading = true |
|
|
|
|
this.data = [ |
|
|
|
|
{ |
|
|
|
|
$cellEdit: true, |
|
|
|
|
"bsOemCustomer": { |
|
|
|
|
"abbreviation": "L076", |
|
|
|
|
"address": "aaa", |
|
|
|
|
"codeAndName": "L076/L076", |
|
|
|
|
"contactMan": "aaa", |
|
|
|
|
"contactPhone": "aaa", |
|
|
|
|
"craftAbility": "镀银、挂镀银、喷砂、涂色标、铜合金化学镀镍、电镀镍、DL零件包装", |
|
|
|
|
"curStatus": 0, |
|
|
|
|
"curStatusText": "正常供货", |
|
|
|
|
"email": "aaa", |
|
|
|
|
"keyValue": 21, |
|
|
|
|
"limitType": 0, |
|
|
|
|
"ocCode": "L076", |
|
|
|
|
"ocId": 21, |
|
|
|
|
"ocName": "L076", |
|
|
|
|
"oemPassword": null, |
|
|
|
|
"partCodeYesOrNo": false, |
|
|
|
|
"qualification": 10, |
|
|
|
|
"qualificationTitle": null, |
|
|
|
|
"region": "陕西省", |
|
|
|
|
"updateTime": "2023-04-14 18:33:49" |
|
|
|
|
}, |
|
|
|
|
"createMan": { |
|
|
|
|
"userId": 541, |
|
|
|
|
"userName": "崔殿龙" |
|
|
|
|
}, |
|
|
|
|
"createTime": "2023-11-10 18:06:40", |
|
|
|
|
"keyValue": 1, |
|
|
|
|
"oaaId": 1, |
|
|
|
|
"plate": "222", |
|
|
|
|
jhzsTarget: 85, |
|
|
|
|
zdljTarget: 92, |
|
|
|
|
qqxTarget: 0, |
|
|
|
|
produceTsTarget: 0, |
|
|
|
|
djcwTarget: 0, |
|
|
|
|
djcwReality: 0, |
|
|
|
|
qualityTsTarget: 0, |
|
|
|
|
qualityTsReality: 0, |
|
|
|
|
qualityMerits: 0, |
|
|
|
|
payMerits: 0, |
|
|
|
|
qualityTsNum: 0, |
|
|
|
|
djcwNum: 0, |
|
|
|
|
dppmNum: 0, |
|
|
|
|
hgxNum: 0, |
|
|
|
|
produceTsNum: 0, |
|
|
|
|
qqxNum: 0, |
|
|
|
|
zdljNum: 0, |
|
|
|
|
jhzsNum: 0, |
|
|
|
|
ajorIssues: 0, |
|
|
|
|
qqxReality: 0, |
|
|
|
|
growAbility: 0, |
|
|
|
|
produceTsReality: 0, |
|
|
|
|
pcxTarget: 0, |
|
|
|
|
pcxReality: 0, |
|
|
|
|
dywTarget: 0, |
|
|
|
|
dywReality: 0, |
|
|
|
|
qlwtTarget: 0, |
|
|
|
|
qlwtReality: 0 |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
$cellEdit: true, |
|
|
|
|
"bsOemCustomer": { |
|
|
|
|
"abbreviation": "L120", |
|
|
|
|
"address": "aaa", |
|
|
|
|
"codeAndName": "L120/L120", |
|
|
|
|
"contactMan": "aaa", |
|
|
|
|
"contactPhone": "aaa", |
|
|
|
|
"craftAbility": "不锈钢涂福斯润滑剂、DL零件包装、", |
|
|
|
|
"curStatus": 0, |
|
|
|
|
"curStatusText": "正常供货", |
|
|
|
|
"email": "aaa", |
|
|
|
|
"keyValue": 2, |
|
|
|
|
"limitType": 0, |
|
|
|
|
"ocCode": "L120", |
|
|
|
|
"ocId": 2, |
|
|
|
|
"ocName": "L120", |
|
|
|
|
"oemPassword": null, |
|
|
|
|
"partCodeYesOrNo": false, |
|
|
|
|
"qualification": 0, |
|
|
|
|
"qualificationTitle": "民品&普军", |
|
|
|
|
"region": "江苏省", |
|
|
|
|
"updateTime": "2023-04-14 18:33:49" |
|
|
|
|
}, |
|
|
|
|
"createMan": { |
|
|
|
|
"userId": 541, |
|
|
|
|
"userName": "崔殿龙" |
|
|
|
|
}, |
|
|
|
|
"createTime": "2023-11-10 18:06:40", |
|
|
|
|
"keyValue": 4, |
|
|
|
|
"oaaId": 4, |
|
|
|
|
"plate": "222", |
|
|
|
|
jhzsTarget: 85, |
|
|
|
|
zdljTarget: 92, |
|
|
|
|
qqxTarget: 0, |
|
|
|
|
produceTsTarget: 0, |
|
|
|
|
djcwTarget: 0, |
|
|
|
|
djcwReality: 0, |
|
|
|
|
qualityTsTarget: 0, |
|
|
|
|
qualityTsReality: 0, |
|
|
|
|
qualityMerits: 0, |
|
|
|
|
payMerits: 0, |
|
|
|
|
qualityTsNum: 0, |
|
|
|
|
djcwNum: 0, |
|
|
|
|
dppmNum: 0, |
|
|
|
|
hgxNum: 0, |
|
|
|
|
produceTsNum: 0, |
|
|
|
|
qqxNum: 0, |
|
|
|
|
zdljNum: 0, |
|
|
|
|
jhzsNum: 0, |
|
|
|
|
ajorIssues: 0, |
|
|
|
|
qqxReality: 0, |
|
|
|
|
growAbility: 0, |
|
|
|
|
produceTsReality: 0, |
|
|
|
|
pcxTarget: 0, |
|
|
|
|
pcxReality: 0, |
|
|
|
|
dywTarget: 0, |
|
|
|
|
dywReality: 0, |
|
|
|
|
qlwtTarget: 0, |
|
|
|
|
qlwtReality: 0 |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
$cellEdit: true, |
|
|
|
|
"bsOemCustomer": { |
|
|
|
|
"abbreviation": "L120", |
|
|
|
|
"address": "aaa", |
|
|
|
|
"codeAndName": "L120/L120", |
|
|
|
|
"contactMan": "aaa", |
|
|
|
|
"contactPhone": "aaa", |
|
|
|
|
"craftAbility": "不锈钢涂福斯润滑剂、DL零件包装、", |
|
|
|
|
"curStatus": 0, |
|
|
|
|
"curStatusText": "正常供货", |
|
|
|
|
"email": "aaa", |
|
|
|
|
"keyValue": 2, |
|
|
|
|
"limitType": 0, |
|
|
|
|
"ocCode": "L120", |
|
|
|
|
"ocId": 2, |
|
|
|
|
"ocName": "L120", |
|
|
|
|
"oemPassword": null, |
|
|
|
|
"partCodeYesOrNo": false, |
|
|
|
|
"qualification": 0, |
|
|
|
|
"qualificationTitle": "民品&普军", |
|
|
|
|
"region": "江苏省", |
|
|
|
|
"updateTime": "2023-04-14 18:33:49" |
|
|
|
|
}, |
|
|
|
|
"createMan": { |
|
|
|
|
"userId": 541, |
|
|
|
|
"userName": "崔殿龙" |
|
|
|
|
}, |
|
|
|
|
"createTime": "2023-12-07 09:53:47", |
|
|
|
|
"keyValue": 41, |
|
|
|
|
"oaaId": 41, |
|
|
|
|
"plate": "222", |
|
|
|
|
jhzsTarget: 85, |
|
|
|
|
zdljTarget: 92, |
|
|
|
|
qqxTarget: 0, |
|
|
|
|
produceTsTarget: 0, |
|
|
|
|
djcwTarget: 0, |
|
|
|
|
djcwReality: 0, |
|
|
|
|
qualityTsTarget: 0, |
|
|
|
|
qualityTsReality: 0, |
|
|
|
|
qualityMerits: 0, |
|
|
|
|
payMerits: 0, |
|
|
|
|
qualityTsNum: 0, |
|
|
|
|
djcwNum: 0, |
|
|
|
|
dppmNum: 0, |
|
|
|
|
hgxNum: 0, |
|
|
|
|
produceTsNum: 0, |
|
|
|
|
qqxNum: 0, |
|
|
|
|
zdljNum: 0, |
|
|
|
|
jhzsNum: 0, |
|
|
|
|
ajorIssues: 0, |
|
|
|
|
qqxReality: 0, |
|
|
|
|
growAbility: 0, |
|
|
|
|
produceTsReality: 0, |
|
|
|
|
pcxTarget: 0, |
|
|
|
|
pcxReality: 0, |
|
|
|
|
dywTarget: 0, |
|
|
|
|
dywReality: 0, |
|
|
|
|
qlwtTarget: 0, |
|
|
|
|
qlwtReality: 0 |
|
|
|
|
}, |
|
|
|
|
getList({ |
|
|
|
|
current: this.page.currentPage, |
|
|
|
|
size: this.page.pageSize, |
|
|
|
|
...this.query, |
|
|
|
|
}).then((res) => { |
|
|
|
|
// if(res.data.data.records.length > 0){ |
|
|
|
|
const obj = { |
|
|
|
|
jhzsTarget: 85, |
|
|
|
|
zdljTarget: 92, |
|
|
|
|
qqxTarget: 0, |
|
|
|
|
produceTsTarget: 0, |
|
|
|
|
djcwTarget: 0, |
|
|
|
|
djcwReality: 0, |
|
|
|
|
qualityTsTarget: 0, |
|
|
|
|
qualityTsReality: 0, |
|
|
|
|
qualityMerits: 0, |
|
|
|
|
payMerits: 0, |
|
|
|
|
qualityTsNum: 0, |
|
|
|
|
djcwNum: 0, |
|
|
|
|
dppmNum: 0, |
|
|
|
|
hgxNum: 0, |
|
|
|
|
produceTsNum: 0, |
|
|
|
|
qqxNum: 0, |
|
|
|
|
zdljNum: 0, |
|
|
|
|
jhzsNum: 0, |
|
|
|
|
ajorIssues: 0, |
|
|
|
|
qqxReality: 0, |
|
|
|
|
growAbility: 0, |
|
|
|
|
produceTsReality: 0, |
|
|
|
|
pcxTarget: 0, |
|
|
|
|
pcxReality:0, |
|
|
|
|
dywTarget: 0, |
|
|
|
|
dywReality:0, |
|
|
|
|
qlwtTarget: 0, |
|
|
|
|
qlwtReality:0, |
|
|
|
|
$cellEdit:true |
|
|
|
|
}; |
|
|
|
|
// .map(item => { |
|
|
|
|
// ...item,...obj |
|
|
|
|
// }) |
|
|
|
|
this.data = res.data.data.records.map(item => ({ ...obj, ...item })); |
|
|
|
|
// } |
|
|
|
|
// this.data = res.data.data.records |
|
|
|
|
console.log('data===========',this.data) |
|
|
|
|
this.loading = false |
|
|
|
|
}) |
|
|
|
|
// this.data = [ |
|
|
|
|
// { |
|
|
|
|
// $cellEdit: true, |
|
|
|
|
// "bsOemCustomer": { |
|
|
|
|
// "abbreviation": "L076", |
|
|
|
|
// "address": "aaa", |
|
|
|
|
// "codeAndName": "L076/L076", |
|
|
|
|
// "contactMan": "aaa", |
|
|
|
|
// "contactPhone": "aaa", |
|
|
|
|
// "craftAbility": "镀银、挂镀银、喷砂、涂色标、铜合金化学镀镍、电镀镍、DL零件包装", |
|
|
|
|
// "curStatus": 0, |
|
|
|
|
// "curStatusText": "正常供货", |
|
|
|
|
// "email": "aaa", |
|
|
|
|
// "keyValue": 21, |
|
|
|
|
// "limitType": 0, |
|
|
|
|
// "ocCode": "L076", |
|
|
|
|
// "ocId": 21, |
|
|
|
|
// "ocName": "L076", |
|
|
|
|
// "oemPassword": null, |
|
|
|
|
// "partCodeYesOrNo": false, |
|
|
|
|
// "qualification": 10, |
|
|
|
|
// "qualificationTitle": null, |
|
|
|
|
// "region": "陕西省", |
|
|
|
|
// "updateTime": "2023-04-14 18:33:49" |
|
|
|
|
// }, |
|
|
|
|
// "createMan": { |
|
|
|
|
// "userId": 541, |
|
|
|
|
// "userName": "崔殿龙" |
|
|
|
|
// }, |
|
|
|
|
// "createTime": "2023-11-10 18:06:40", |
|
|
|
|
// "keyValue": 1, |
|
|
|
|
// "oaaId": 1, |
|
|
|
|
// "plate": "222", |
|
|
|
|
// jhzsTarget: 85, |
|
|
|
|
// zdljTarget: 92, |
|
|
|
|
// qqxTarget: 0, |
|
|
|
|
// produceTsTarget: 0, |
|
|
|
|
// djcwTarget: 0, |
|
|
|
|
// djcwReality: 0, |
|
|
|
|
// qualityTsTarget: 0, |
|
|
|
|
// qualityTsReality: 0, |
|
|
|
|
// qualityMerits: 0, |
|
|
|
|
// payMerits: 0, |
|
|
|
|
// qualityTsNum: 0, |
|
|
|
|
// djcwNum: 0, |
|
|
|
|
// dppmNum: 0, |
|
|
|
|
// hgxNum: 0, |
|
|
|
|
// produceTsNum: 0, |
|
|
|
|
// qqxNum: 0, |
|
|
|
|
// zdljNum: 0, |
|
|
|
|
// jhzsNum: 0, |
|
|
|
|
// ajorIssues: 0, |
|
|
|
|
// qqxReality: 0, |
|
|
|
|
// growAbility: 0, |
|
|
|
|
// produceTsReality: 0, |
|
|
|
|
// pcxTarget: 0, |
|
|
|
|
// pcxReality: 0, |
|
|
|
|
// dywTarget: 0, |
|
|
|
|
// dywReality: 0, |
|
|
|
|
// qlwtTarget: 0, |
|
|
|
|
// qlwtReality: 0 |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// $cellEdit: true, |
|
|
|
|
// "bsOemCustomer": { |
|
|
|
|
// "abbreviation": "L120", |
|
|
|
|
// "address": "aaa", |
|
|
|
|
// "codeAndName": "L120/L120", |
|
|
|
|
// "contactMan": "aaa", |
|
|
|
|
// "contactPhone": "aaa", |
|
|
|
|
// "craftAbility": "不锈钢涂福斯润滑剂、DL零件包装、", |
|
|
|
|
// "curStatus": 0, |
|
|
|
|
// "curStatusText": "正常供货", |
|
|
|
|
// "email": "aaa", |
|
|
|
|
// "keyValue": 2, |
|
|
|
|
// "limitType": 0, |
|
|
|
|
// "ocCode": "L120", |
|
|
|
|
// "ocId": 2, |
|
|
|
|
// "ocName": "L120", |
|
|
|
|
// "oemPassword": null, |
|
|
|
|
// "partCodeYesOrNo": false, |
|
|
|
|
// "qualification": 0, |
|
|
|
|
// "qualificationTitle": "民品&普军", |
|
|
|
|
// "region": "江苏省", |
|
|
|
|
// "updateTime": "2023-04-14 18:33:49" |
|
|
|
|
// }, |
|
|
|
|
// "createMan": { |
|
|
|
|
// "userId": 541, |
|
|
|
|
// "userName": "崔殿龙" |
|
|
|
|
// }, |
|
|
|
|
// "createTime": "2023-11-10 18:06:40", |
|
|
|
|
// "keyValue": 4, |
|
|
|
|
// "oaaId": 4, |
|
|
|
|
// "plate": "222", |
|
|
|
|
// jhzsTarget: 85, |
|
|
|
|
// zdljTarget: 92, |
|
|
|
|
// qqxTarget: 0, |
|
|
|
|
// produceTsTarget: 0, |
|
|
|
|
// djcwTarget: 0, |
|
|
|
|
// djcwReality: 0, |
|
|
|
|
// qualityTsTarget: 0, |
|
|
|
|
// qualityTsReality: 0, |
|
|
|
|
// qualityMerits: 0, |
|
|
|
|
// payMerits: 0, |
|
|
|
|
// qualityTsNum: 0, |
|
|
|
|
// djcwNum: 0, |
|
|
|
|
// dppmNum: 0, |
|
|
|
|
// hgxNum: 0, |
|
|
|
|
// produceTsNum: 0, |
|
|
|
|
// qqxNum: 0, |
|
|
|
|
// zdljNum: 0, |
|
|
|
|
// jhzsNum: 0, |
|
|
|
|
// ajorIssues: 0, |
|
|
|
|
// qqxReality: 0, |
|
|
|
|
// growAbility: 0, |
|
|
|
|
// produceTsReality: 0, |
|
|
|
|
// pcxTarget: 0, |
|
|
|
|
// pcxReality: 0, |
|
|
|
|
// dywTarget: 0, |
|
|
|
|
// dywReality: 0, |
|
|
|
|
// qlwtTarget: 0, |
|
|
|
|
// qlwtReality: 0 |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// $cellEdit: true, |
|
|
|
|
// "bsOemCustomer": { |
|
|
|
|
// "abbreviation": "L120", |
|
|
|
|
// "address": "aaa", |
|
|
|
|
// "codeAndName": "L120/L120", |
|
|
|
|
// "contactMan": "aaa", |
|
|
|
|
// "contactPhone": "aaa", |
|
|
|
|
// "craftAbility": "不锈钢涂福斯润滑剂、DL零件包装、", |
|
|
|
|
// "curStatus": 0, |
|
|
|
|
// "curStatusText": "正常供货", |
|
|
|
|
// "email": "aaa", |
|
|
|
|
// "keyValue": 2, |
|
|
|
|
// "limitType": 0, |
|
|
|
|
// "ocCode": "L120", |
|
|
|
|
// "ocId": 2, |
|
|
|
|
// "ocName": "L120", |
|
|
|
|
// "oemPassword": null, |
|
|
|
|
// "partCodeYesOrNo": false, |
|
|
|
|
// "qualification": 0, |
|
|
|
|
// "qualificationTitle": "民品&普军", |
|
|
|
|
// "region": "江苏省", |
|
|
|
|
// "updateTime": "2023-04-14 18:33:49" |
|
|
|
|
// }, |
|
|
|
|
// "createMan": { |
|
|
|
|
// "userId": 541, |
|
|
|
|
// "userName": "崔殿龙" |
|
|
|
|
// }, |
|
|
|
|
// "createTime": "2023-12-07 09:53:47", |
|
|
|
|
// "keyValue": 41, |
|
|
|
|
// "oaaId": 41, |
|
|
|
|
// "plate": "222", |
|
|
|
|
// jhzsTarget: 85, |
|
|
|
|
// zdljTarget: 92, |
|
|
|
|
// qqxTarget: 0, |
|
|
|
|
// produceTsTarget: 0, |
|
|
|
|
// djcwTarget: 0, |
|
|
|
|
// djcwReality: 0, |
|
|
|
|
// qualityTsTarget: 0, |
|
|
|
|
// qualityTsReality: 0, |
|
|
|
|
// qualityMerits: 0, |
|
|
|
|
// payMerits: 0, |
|
|
|
|
// qualityTsNum: 0, |
|
|
|
|
// djcwNum: 0, |
|
|
|
|
// dppmNum: 0, |
|
|
|
|
// hgxNum: 0, |
|
|
|
|
// produceTsNum: 0, |
|
|
|
|
// qqxNum: 0, |
|
|
|
|
// zdljNum: 0, |
|
|
|
|
// jhzsNum: 0, |
|
|
|
|
// ajorIssues: 0, |
|
|
|
|
// qqxReality: 0, |
|
|
|
|
// growAbility: 0, |
|
|
|
|
// produceTsReality: 0, |
|
|
|
|
// pcxTarget: 0, |
|
|
|
|
// pcxReality: 0, |
|
|
|
|
// dywTarget: 0, |
|
|
|
|
// dywReality: 0, |
|
|
|
|
// qlwtTarget: 0, |
|
|
|
|
// qlwtReality: 0 |
|
|
|
|
// }, |
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
this.page.total = this.data.length |
|
|
|
|
this.loading = false |
|
|
|
|
setTimeout(() => { |
|
|
|
|
this.selectionClear() |
|
|
|
|
}, 500) |
|
|
|
|
// ] |
|
|
|
|
// this.page.total = this.data.length |
|
|
|
|
// this.loading = false |
|
|
|
|
// setTimeout(() => { |
|
|
|
|
// this.selectionClear() |
|
|
|
|
// }, 500) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|