parent
fd931f6dba
commit
6fb9df8a63
8 changed files with 708 additions and 11 deletions
@ -0,0 +1,331 @@ |
|||||||
|
<template> |
||||||
|
<a-card :bordered="false"> |
||||||
|
<!-- 查询区域 --> |
||||||
|
<div class="table-page-search-wrapper"> |
||||||
|
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
||||||
|
<a-row :gutter="24"> |
||||||
|
</a-row> |
||||||
|
</a-form> |
||||||
|
</div> |
||||||
|
<!-- 查询区域-END --> |
||||||
|
<div class="table-operator"> |
||||||
|
<!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>--> |
||||||
|
<!-- <a-button @click="zyStyleFabricHandleAdd(stationId)" type="primary" icon="plus">新增</a-button>--> |
||||||
|
<a-button type="primary" icon="download" @click="handleExportXls('1')">导出</a-button> |
||||||
|
<a-button type="primary" @click="fanHui()">返回</a-button> |
||||||
|
</div> |
||||||
|
|
||||||
|
<!-- table区域-begin --> |
||||||
|
<div> |
||||||
|
<!-- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">--> |
||||||
|
<!-- <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a--> |
||||||
|
<!-- style="font-weight: 600">{{ selectedRowKeys.length }}</a>项--> |
||||||
|
<!-- <a style="margin-left: 24px" @click="onClearSelected">清空</a>--> |
||||||
|
<!-- </div>--> |
||||||
|
|
||||||
|
<a-table |
||||||
|
ref="table" |
||||||
|
size="middle" |
||||||
|
:scroll="{x:true}" |
||||||
|
bordered |
||||||
|
rowKey="id" |
||||||
|
:columns="columns" |
||||||
|
:dataSource="dataSource" |
||||||
|
:pagination="ipagination" |
||||||
|
:loading="loading" |
||||||
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
||||||
|
class="j-table-force-nowrap" |
||||||
|
@change="handleTableChange"> |
||||||
|
<!-- <span slot="machineIds_dictText" slot-scope="text, record">--> |
||||||
|
<span slot="groupMemberList" slot-scope="record,text"> |
||||||
|
<a-select mode="multiple" |
||||||
|
@select="selectData($event,text)" |
||||||
|
style="width: 220px" |
||||||
|
placeholder="请选择"> |
||||||
|
<a-select-option v-for="item in record" :value="item.id"> |
||||||
|
{{ item.userId }} |
||||||
|
</a-select-option> |
||||||
|
</a-select> |
||||||
|
</span> |
||||||
|
|
||||||
|
<!-- <span slot="toolsList" slot-scope="toolsList">--> |
||||||
|
<!-- <a-select style="width: 180px" placeholder="请选择">--> |
||||||
|
<!-- <a-select-option v-for="item in toolsList" :value="item.id">--> |
||||||
|
<!-- {{ item.name }}--> |
||||||
|
<!-- </a-select-option>--> |
||||||
|
<!-- </a-select>--> |
||||||
|
<!-- </span>--> |
||||||
|
|
||||||
|
<!-- <span slot="machineList" slot-scope="machineList">--> |
||||||
|
<!-- <a-select style="width: 180px" placeholder="请选择">--> |
||||||
|
<!-- <a-select-option v-for="item in machineList" :value="item.id">--> |
||||||
|
<!-- {{ item.name }}--> |
||||||
|
<!-- </a-select-option>--> |
||||||
|
<!-- </a-select>--> |
||||||
|
<!-- </span>--> |
||||||
|
</a-table> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div class="table-operator" style="text-align: right"> |
||||||
|
<a-button type="primary" @click="saveBatch">提交</a-button> |
||||||
|
</div> |
||||||
|
|
||||||
|
<!-- <zy-plan-process-modal @valueChange="valueChange" ref="modalForm" @ok="modalFormOk"></zy-plan-process-modal>--> |
||||||
|
</a-card> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
|
||||||
|
import '@/assets/less/TableExpand.less' |
||||||
|
import {mixinDevice} from '@/utils/mixin' |
||||||
|
import {JeecgListMixin} from '@/mixins/JeecgListMixin' |
||||||
|
import ZyPlanProcessModal from './modules/ZyPlanProcessModal2' |
||||||
|
import {getAction, httpAction, downFile, postAction} from "@api/manage"; |
||||||
|
import {filterObj} from "@/utils/util"; |
||||||
|
|
||||||
|
export default { |
||||||
|
name: 'ZyPlanProcessList', |
||||||
|
mixins: [JeecgListMixin, mixinDevice], |
||||||
|
components: { |
||||||
|
ZyPlanProcessModal |
||||||
|
}, |
||||||
|
data() { |
||||||
|
return { |
||||||
|
description: '生产计划班组管理页面', |
||||||
|
// 表头 |
||||||
|
columns: [ |
||||||
|
{ |
||||||
|
title: '#', |
||||||
|
dataIndex: '', |
||||||
|
key: 'rowIndex', |
||||||
|
width: 60, |
||||||
|
align: "center", |
||||||
|
customRender: function (t, r, index) { |
||||||
|
return parseInt(index) + 1; |
||||||
|
} |
||||||
|
}, |
||||||
|
// { |
||||||
|
// title: '计划id', |
||||||
|
// align: "center", |
||||||
|
// dataIndex: 'planId' |
||||||
|
// }, |
||||||
|
{ |
||||||
|
title: '工单编号', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'workOrderId' |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '产品id', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'productId' |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '产品', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'productName' |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '车间', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'departName' |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '工序', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'processName' |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '班组成员', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'groupMemberList', |
||||||
|
width: 150, |
||||||
|
scopedSlots: {customRender: 'groupMemberList'} |
||||||
|
}, |
||||||
|
// { |
||||||
|
// title: '工位工具列表', |
||||||
|
// align: "center", |
||||||
|
// dataIndex: 'toolsList', |
||||||
|
// width: 150, |
||||||
|
// scopedSlots: {customRender: 'toolsList'} |
||||||
|
// // scopedSlots: {customRender: this.toolsList} |
||||||
|
// }, |
||||||
|
// { |
||||||
|
// title: '工具设备列表', |
||||||
|
// align: "center", |
||||||
|
// dataIndex: 'machineList', |
||||||
|
// width: 150, |
||||||
|
// scopedSlots: {customRender: 'machineList'} |
||||||
|
// }, |
||||||
|
{ |
||||||
|
title: '操作', |
||||||
|
dataIndex: 'action', |
||||||
|
align: "center", |
||||||
|
fixed: "right", |
||||||
|
width: 147, |
||||||
|
scopedSlots: {customRender: 'action'} |
||||||
|
} |
||||||
|
], |
||||||
|
url: { |
||||||
|
list: "/org.jeecg.modules.productplan/zyPlanProcess/getTeamDatalist", |
||||||
|
// getTeamDatalistByPlanId: "/org.jeecg.modules.productplan/zyPlanProcess/getTeamDatalistByPlanId", |
||||||
|
groupMemberlist: "/groupxMember/list", |
||||||
|
addTeamBatch: "/org.jeecg.modules.productplan/zyPlanProcess/addTeamBatch", |
||||||
|
// stationMachinelist: "/stationMachine/list", |
||||||
|
// productPlanlist: "/org.jeecg.modules.productplan/zyProductPlan/list", |
||||||
|
delete: "/org.jeecg.modules.productplan/zyPlanProcess/delete", |
||||||
|
// deleteBatch: "/org.jeecg.modules.productplan/zyPlanProcess/deleteBatch", |
||||||
|
// exportXlsUrl: "/org.jeecg.modules.productplan/zyPlanProcess/exportXls", |
||||||
|
// importExcelUrl: "org.jeecg.modules.productplan/zyPlanProcess/importExcel", |
||||||
|
}, |
||||||
|
loadRouteType: false, |
||||||
|
planId: "", |
||||||
|
dictOptions: {}, |
||||||
|
superFieldList: [], |
||||||
|
toolsList: [], |
||||||
|
machineList: [], |
||||||
|
processIds: [], |
||||||
|
memberIds: [], |
||||||
|
} |
||||||
|
}, |
||||||
|
created() { |
||||||
|
this.getSuperFieldList(); |
||||||
|
// this.model = Object.assign({}, record); |
||||||
|
}, |
||||||
|
computed: { |
||||||
|
importExcelUrl: function () { |
||||||
|
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||||
|
}, |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
saveBatch() { |
||||||
|
alert("保存开始") |
||||||
|
postAction(this.url.addTeamBatch, this.processIds).then((res) => { |
||||||
|
if (res.success) { |
||||||
|
this.$message.success(res.message) |
||||||
|
this.$emit('ok') |
||||||
|
this.close() |
||||||
|
} else { |
||||||
|
this.$message.warning(res.message) |
||||||
|
} |
||||||
|
}).finally(() => { |
||||||
|
this.confirmLoading = false |
||||||
|
}) |
||||||
|
}, |
||||||
|
fanHui() { |
||||||
|
this.$router.push({ |
||||||
|
path: '/productplan/ZyPlanTeamList', |
||||||
|
}); |
||||||
|
}, |
||||||
|
//$event为当前所选的key |
||||||
|
selectData($event, row) { |
||||||
|
console.log("group_member key $event=" + $event); |
||||||
|
// console.log("group_member key row=" + JSON.stringify(row)); |
||||||
|
console.log("productProcessId=" + JSON.stringify(row.productProcessId)); |
||||||
|
this.processIds.push({"processId": row.productProcessId, "userIds": $event}); |
||||||
|
|
||||||
|
// for (var i = 0; i < processIds.length; i++) { |
||||||
|
console.log("the processIds length:" + this.processIds.length); |
||||||
|
}, |
||||||
|
//加载传递参数 |
||||||
|
loadParameter() { |
||||||
|
if (this.loadRouteType === false) { |
||||||
|
this.planId = this.$route.query.planId; |
||||||
|
// this.biaoTi = this.$route.query.styleNames+"款式面料管理"; |
||||||
|
console.log("*******传递的planId:" + this.planId) |
||||||
|
this.loadRouteType = true; |
||||||
|
} |
||||||
|
}, |
||||||
|
loadData(arg) { |
||||||
|
if (!this.url.list) { |
||||||
|
this.$message.error("请设置url.list属性!") |
||||||
|
return |
||||||
|
} |
||||||
|
//加载数据 若传入参数1则加载第一页的内容 |
||||||
|
if (arg === 1) { |
||||||
|
this.ipagination.current = 1; |
||||||
|
} |
||||||
|
this.loadParameter(); |
||||||
|
var params = this.getQueryParams();//查询条件 |
||||||
|
this.loading = true; |
||||||
|
console.log("----------------the params:", params); |
||||||
|
getAction(this.url.list, params).then((res) => { |
||||||
|
if (res.success) { |
||||||
|
this.dataSource = res.result.records || res.result; |
||||||
|
if (res.result.total) { |
||||||
|
this.ipagination.total = res.result.total; |
||||||
|
} else { |
||||||
|
this.ipagination.total = 0; |
||||||
|
} |
||||||
|
} else { |
||||||
|
this.$message.warning(res.message) |
||||||
|
} |
||||||
|
}).finally(() => { |
||||||
|
// this.dataSource.forEach(item => { |
||||||
|
// item['stationName'] = this.stationName; |
||||||
|
// item['stationNum'] = this.stationNum; |
||||||
|
// }) |
||||||
|
this.loading = false |
||||||
|
}) |
||||||
|
}, |
||||||
|
getQueryParams() { |
||||||
|
//获取查询条件 |
||||||
|
let sqp = {} |
||||||
|
if (this.superQueryParams) { |
||||||
|
sqp['superQueryParams'] = encodeURI(this.superQueryParams) |
||||||
|
sqp['superQueryMatchType'] = this.superQueryMatchType |
||||||
|
} |
||||||
|
var param = Object.assign(sqp, this.queryParam, this.isorter, this.filters); |
||||||
|
param.field = this.getQueryField(); |
||||||
|
param.pageNo = this.ipagination.current; |
||||||
|
param.pageSize = this.ipagination.pageSize; |
||||||
|
param.planId = this.planId; |
||||||
|
return filterObj(param); |
||||||
|
}, |
||||||
|
// initDictConfig() { |
||||||
|
// }, |
||||||
|
getSuperFieldList() { |
||||||
|
let fieldList = []; |
||||||
|
fieldList.push({type: 'string', value: 'planId', text: '生产计划id', dictCode: ''}) |
||||||
|
fieldList.push({type: 'string', value: 'stationId', text: '工位id', dictCode: ''}) |
||||||
|
fieldList.push({type: 'string', value: 'machineIds', text: '设备id列表', dictCode: ''}) |
||||||
|
fieldList.push({type: 'string', value: 'toolsIds', text: '工具id列表', dictCode: ''}) |
||||||
|
fieldList.push({type: 'string', value: 'processIds', text: '工序id列表', dictCode: ''}) |
||||||
|
fieldList.push({type: 'string', value: 'userIds', text: '成员id列表', dictCode: ''}) |
||||||
|
this.superFieldList = fieldList |
||||||
|
}, |
||||||
|
// jumpPage1(record) { |
||||||
|
// this.$router.push({ |
||||||
|
// // path: '/productplan/ZyProductPlanList', |
||||||
|
// path: '/productplan/ZyPlanProcessDataList', |
||||||
|
// |
||||||
|
// // query: { // 路由携带参数 |
||||||
|
// // 'stationId': record.id, |
||||||
|
// // 'stationName': record.stationName, |
||||||
|
// // }, |
||||||
|
// }); |
||||||
|
// }, |
||||||
|
// pf(record) { |
||||||
|
// this.$router.push({ |
||||||
|
// path: '/productplan/ZyPlanProcessAddList', |
||||||
|
// query: { // 路由携带参数 |
||||||
|
// } |
||||||
|
// }); |
||||||
|
|
||||||
|
// getAction("productPlanlist", {id: record.id}).then((res) => { |
||||||
|
// if (res.success) { |
||||||
|
// this.$router.push({ |
||||||
|
// path: '/src/views/processassessment/assessmentCourse/ClassOpeningTaskList', |
||||||
|
// query: { // 路由携带参数 |
||||||
|
// } |
||||||
|
// }); |
||||||
|
// } else { |
||||||
|
// this.$message.error(res.message) |
||||||
|
// } |
||||||
|
// }); |
||||||
|
// }, |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
<style scoped> |
||||||
|
@import '~@assets/less/common.less'; |
||||||
|
</style> |
@ -0,0 +1,257 @@ |
|||||||
|
<template> |
||||||
|
<a-card :bordered="false"> |
||||||
|
<!-- 查询区域 --> |
||||||
|
<div class="table-page-search-wrapper"> |
||||||
|
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
||||||
|
<a-row :gutter="24"> |
||||||
|
</a-row> |
||||||
|
</a-form> |
||||||
|
</div> |
||||||
|
<!-- 查询区域-END --> |
||||||
|
|
||||||
|
<!-- 操作按钮区域 --> |
||||||
|
<div class="table-operator"> |
||||||
|
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> |
||||||
|
<a-button type="primary" icon="download" @click="handleExportXls('生产计划工序')">导出</a-button> |
||||||
|
<!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl"--> |
||||||
|
<!-- @change="handleImportExcel">--> |
||||||
|
<!-- <a-button type="primary" icon="import">导入</a-button>--> |
||||||
|
<!-- </a-upload>--> |
||||||
|
<!-- 高级查询区域 --> |
||||||
|
<j-super-query :fieldList="superFieldList" ref="superQueryModal" |
||||||
|
@handleSuperQuery="handleSuperQuery"></j-super-query> |
||||||
|
<a-dropdown v-if="selectedRowKeys.length > 0"> |
||||||
|
<a-menu slot="overlay"> |
||||||
|
<a-menu-item key="1" @click="batchDel"> |
||||||
|
<a-icon type="delete"/> |
||||||
|
删除 |
||||||
|
</a-menu-item> |
||||||
|
</a-menu> |
||||||
|
<a-button style="margin-left: 8px"> 批量操作 |
||||||
|
<a-icon type="down"/> |
||||||
|
</a-button> |
||||||
|
</a-dropdown> |
||||||
|
</div> |
||||||
|
|
||||||
|
<!-- table区域-begin --> |
||||||
|
<div> |
||||||
|
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> |
||||||
|
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a |
||||||
|
style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 |
||||||
|
<a style="margin-left: 24px" @click="onClearSelected">清空</a> |
||||||
|
</div> |
||||||
|
|
||||||
|
<a-table |
||||||
|
ref="table" |
||||||
|
size="middle" |
||||||
|
:scroll="{x:true}" |
||||||
|
bordered |
||||||
|
rowKey="id" |
||||||
|
:columns="columns" |
||||||
|
:dataSource="dataSource" |
||||||
|
:pagination="ipagination" |
||||||
|
:loading="loading" |
||||||
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
||||||
|
class="j-table-force-nowrap" |
||||||
|
@change="handleTableChange"> |
||||||
|
|
||||||
|
<span slot="processId_dictText" slot-scope="text, record"> |
||||||
|
<a-popover> |
||||||
|
<template slot="content"> |
||||||
|
<p>{{ text }}</p> |
||||||
|
</template> |
||||||
|
<a style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;display: inline-block;width: 100px">{{ text }}</a> |
||||||
|
</a-popover> |
||||||
|
</span> |
||||||
|
<span slot="stationId_dictText" slot-scope="text, record"> |
||||||
|
<a-popover> |
||||||
|
<template slot="content"> |
||||||
|
<p>{{ text }}</p> |
||||||
|
</template> |
||||||
|
<a style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;display: inline-block;width: 100px">{{ text }}</a> |
||||||
|
</a-popover> |
||||||
|
</span> |
||||||
|
|
||||||
|
<span slot="toolsIds_dictText" slot-scope="text, record"> |
||||||
|
<a-popover> |
||||||
|
<template slot="content"> |
||||||
|
<p>{{ text }}</p> |
||||||
|
</template> |
||||||
|
<a style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;display: inline-block;width: 100px">{{ text }}</a> |
||||||
|
</a-popover> |
||||||
|
</span> |
||||||
|
|
||||||
|
<span slot="machineIds_dictText" slot-scope="text, record"> |
||||||
|
<a-popover> |
||||||
|
<template slot="content"> |
||||||
|
<p>{{ text }}</p> |
||||||
|
</template> |
||||||
|
<a style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;display: inline-block;width: 100px">{{ text }}</a> |
||||||
|
</a-popover> |
||||||
|
</span> |
||||||
|
|
||||||
|
<span slot="userIds" slot-scope="text, record"> |
||||||
|
<a-popover> |
||||||
|
<template slot="content"> |
||||||
|
<p>{{ text }}</p> |
||||||
|
</template> |
||||||
|
<a style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;display: inline-block;width: 100px">{{ text }}</a> |
||||||
|
</a-popover> |
||||||
|
</span> |
||||||
|
|
||||||
|
<span slot="action" slot-scope="text, record"> |
||||||
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> |
||||||
|
<a>删除</a> |
||||||
|
</a-popconfirm> |
||||||
|
<a-divider type="vertical"/> |
||||||
|
<a @click="jumpPage1(record)">制定计划班组</a> |
||||||
|
</span> |
||||||
|
|
||||||
|
</a-table> |
||||||
|
</div> |
||||||
|
|
||||||
|
<zy-plan-process-modal ref="modalForm" @ok="modalFormOk"></zy-plan-process-modal> |
||||||
|
</a-card> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
|
||||||
|
import '@/assets/less/TableExpand.less' |
||||||
|
import {mixinDevice} from '@/utils/mixin' |
||||||
|
import {JeecgListMixin} from '@/mixins/JeecgListMixin' |
||||||
|
import ZyPlanProcessModal from './modules/ZyPlanProcessModal2' |
||||||
|
|
||||||
|
export default { |
||||||
|
name: 'ZyPlanProcessList', |
||||||
|
mixins: [JeecgListMixin, mixinDevice], |
||||||
|
components: { |
||||||
|
ZyPlanProcessModal |
||||||
|
}, |
||||||
|
data() { |
||||||
|
return { |
||||||
|
description: '生产计划工序管理页面', |
||||||
|
// 表头 |
||||||
|
columns: [ |
||||||
|
{ |
||||||
|
title: '#', |
||||||
|
dataIndex: '', |
||||||
|
key: 'rowIndex', |
||||||
|
width: 60, |
||||||
|
align: "center", |
||||||
|
customRender: function (t, r, index) { |
||||||
|
return parseInt(index) + 1; |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '生产计划', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'planId' |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '工序', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'processId_dictText', |
||||||
|
scopedSlots: {customRender: 'stationId_dictText'} |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '工位', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'stationId_dictText', |
||||||
|
scopedSlots: {customRender: 'stationId_dictText'} |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '设备', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'machineIds_dictText', |
||||||
|
scopedSlots: {customRender: 'machineIds_dictText'} |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '工具', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'toolsIds_dictText', |
||||||
|
scopedSlots: {customRender: 'toolsIds_dictText'} |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '成员', |
||||||
|
align: "center", |
||||||
|
dataIndex: 'userIds_dictText', |
||||||
|
scopedSlots: {customRender: 'userIds_dictText'} |
||||||
|
}, |
||||||
|
{ |
||||||
|
title: '操作', |
||||||
|
dataIndex: 'action', |
||||||
|
align: "center", |
||||||
|
fixed: "right", |
||||||
|
width: 147, |
||||||
|
scopedSlots: {customRender: 'action'} |
||||||
|
} |
||||||
|
], |
||||||
|
url: { |
||||||
|
list: "/org.jeecg.modules.productplan/zyPlanProcess/list", |
||||||
|
// list: "/org.jeecg.modules.productplan/zyPlanProcess/list2", |
||||||
|
productPlanlist: "/org.jeecg.modules.productplan/zyProductPlan/list", |
||||||
|
delete: "/org.jeecg.modules.productplan/zyPlanProcess/delete", |
||||||
|
deleteBatch: "/org.jeecg.modules.productplan/zyPlanProcess/deleteBatch", |
||||||
|
exportXlsUrl: "/org.jeecg.modules.productplan/zyPlanProcess/exportXls", |
||||||
|
importExcelUrl: "org.jeecg.modules.productplan/zyPlanProcess/importExcel", |
||||||
|
|
||||||
|
}, |
||||||
|
dictOptions: {}, |
||||||
|
superFieldList: [], |
||||||
|
} |
||||||
|
}, |
||||||
|
created() { |
||||||
|
this.getSuperFieldList(); |
||||||
|
}, |
||||||
|
computed: { |
||||||
|
importExcelUrl: function () { |
||||||
|
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||||
|
}, |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
initDictConfig() { |
||||||
|
}, |
||||||
|
getSuperFieldList() { |
||||||
|
let fieldList = []; |
||||||
|
fieldList.push({type: 'string', value: 'planId', text: '生产计划id', dictCode: ''}) |
||||||
|
fieldList.push({type: 'string', value: 'stationId', text: '工位id', dictCode: ''}) |
||||||
|
fieldList.push({type: 'string', value: 'machineIds', text: '设备id列表', dictCode: ''}) |
||||||
|
fieldList.push({type: 'string', value: 'toolsIds', text: '工具id列表', dictCode: ''}) |
||||||
|
fieldList.push({type: 'string', value: 'processIds', text: '工序id列表', dictCode: ''}) |
||||||
|
fieldList.push({type: 'string', value: 'userIds', text: '成员id列表', dictCode: ''}) |
||||||
|
this.superFieldList = fieldList |
||||||
|
}, |
||||||
|
jumpPage1(record) { |
||||||
|
this.$router.push({ |
||||||
|
path: '/productplan/ZyPlanTeamDataList', |
||||||
|
query: { // 路由携带参数 |
||||||
|
'planId': record.planId, |
||||||
|
// 'stationName': record.stationName, |
||||||
|
}, |
||||||
|
}); |
||||||
|
}, |
||||||
|
// pf(record) { |
||||||
|
// this.$router.push({ |
||||||
|
// path: '/productplan/ZyPlanProcessAddList', |
||||||
|
// query: { // 路由携带参数 |
||||||
|
// } |
||||||
|
// }); |
||||||
|
|
||||||
|
// getAction("productPlanlist", {id: record.id}).then((res) => { |
||||||
|
// if (res.success) { |
||||||
|
// this.$router.push({ |
||||||
|
// path: '/src/views/processassessment/assessmentCourse/ClassOpeningTaskList', |
||||||
|
// query: { // 路由携带参数 |
||||||
|
// } |
||||||
|
// }); |
||||||
|
// } else { |
||||||
|
// this.$message.error(res.message) |
||||||
|
// } |
||||||
|
// }); |
||||||
|
// }, |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
<style scoped> |
||||||
|
@import '~@assets/less/common.less'; |
||||||
|
</style> |
Loading…
Reference in new issue