| | |
| | | @selection-change="selectionChange"> |
| | | |
| | | <template #menu-left> |
| | | <!-- <el-button type="primary" plain @click="exportWebSite">导出回传涉密网</el-button> --> |
| | | |
| | | |
| | | </template> |
| | | <template #menu="scope"> |
| | | <el-button type="primary" text size="default" @click.stop="customView(scope.row, scope.index, 0)">查看 |
| | | </el-button> |
| | | |
| | | |
| | | <!-- |
| | | <el-button type="primary" text size="default" v-if="scope.row.processDefinitionKey === 'dispatch'" |
| | | @click.stop="handleApproveTable(scope.row, scope.index)">审批表 |
| | | </el-button> |
| | | <el-button type="primary" text size="default" v-if="scope.row.processDefinitionKey === 'program-cure'" |
| | | @click.stop="handleConfirmTable(scope.row, scope.index)">确认表 |
| | | </el-button> |
| | | --> |
| | | </template> |
| | | </avue-crud> |
| | | <el-dialog title="指派" append-to-body v-model="reassignBox" width="30%"> |
| | |
| | | // tree: true, |
| | | border: true, |
| | | index: true, |
| | | selection: true, |
| | | selection: false, |
| | | menuWidth: 80, |
| | | // menu: false, |
| | | labelWidth: 90, |
| | |
| | | } |
| | | }, |
| | | { |
| | | label: '工艺版次', |
| | | label: '批次号', |
| | | prop: 'variables.craftEdition', |
| | | width: 80, |
| | | render: ({ row }) => { |
| | |
| | | }, |
| | | |
| | | { |
| | | label: '工艺版次', |
| | | label: '批次号', |
| | | prop: 'variables.craftEdition', |
| | | render: ({ row }) => { |
| | | return h('p',{'class': 'margin0'}, row?.variables?.craftEdition || ''); |
| | |
| | | }) |
| | | }) |
| | | } else if (flag === 1) { |
| | | printRow({ processInstanceId: row.processInstanceId }) |
| | | |
| | | this.$confirm('是否导出?', '提示', { |
| | | confirmButtonText: '确定', |
| | | cancelButtonText: '取消', |
| | |
| | | } |
| | | |
| | | }, |
| | | handleApproveTable(row, index,) { |
| | | //审批表下载 |
| | | this.$confirm('是否导出审批表?', '提示', { |
| | | confirmButtonText: '确定', |
| | | cancelButtonText: '取消', |
| | | type: 'warning', |
| | | }).then(() => { |
| | | console.log(this.selection) |
| | | NProgress.start(); |
| | | exportBlobPost( |
| | | `/blade-mdm/flow/mgr/export-approve-table`, |
| | | { processInstanceId: row.processInstanceId } |
| | | ).then(res => { |
| | | let name = res.headers['content-disposition'].split('filename=')[1] |
| | | console.log(res.headers['content-disposition'].split('filename=')[1]); |
| | | name = decodeURI(name) |
| | | downloadFile(res.data, `${name}`); |
| | | NProgress.done(); |
| | | }); |
| | | }); |
| | | |
| | | |
| | | }, |
| | | handleConfirmTable(row, index,) { |
| | | //确认表下载 |
| | | this.$confirm('是否导出确认表?', '提示', { |
| | | confirmButtonText: '确定', |
| | | cancelButtonText: '取消', |
| | | type: 'warning', |
| | | }).then(() => { |
| | | console.log(this.selection) |
| | | NProgress.start(); |
| | | exportBlobPost( |
| | | `/blade-mdm/flow/mgr/export-confirm-table`, |
| | | { processInstanceId: row.processInstanceId } |
| | | ).then(res => { |
| | | let name = res.headers['content-disposition'].split('filename=')[1] |
| | | console.log(res.headers['content-disposition'].split('filename=')[1]); |
| | | name = decodeURI(name) |
| | | downloadFile(res.data, `${name}`); |
| | | NProgress.done(); |
| | | }); |
| | | }); |
| | | |
| | | |
| | | }, |
| | | |
| | | selectionChange(list) { |
| | | console.log('selectionChange', list); |
| | | this.selectedList = list; |
| | | }, |
| | | // exportWebSite() { |
| | | // if (this.selectedList.length === 0) { |
| | | // this.$message.warning('请先选择需要导出的数据'); |
| | | // return; |
| | | // } |
| | | // this.$confirm('是否导出?', '提示', { |
| | | // confirmButtonText: '确定', |
| | | // cancelButtonText: '取消', |
| | | // type: 'warning', |
| | | // }).then(() => { |
| | | // NProgress.start(); |
| | | // exportBlob( |
| | | // `/blade-mdm/machineback/filehandle/export-to-inner`, |
| | | // { |
| | | // ids: this.selectedList.map(item => item.id).join(','), |
| | | // } |
| | | // ).then(res => { |
| | | // downloadXls(res.data, `导出回传涉密网${this.$dayjs().format('YYYY-MM-DD HH:mm:ss')}.xlsx`); |
| | | // NProgress.done(); |
| | | // }); |
| | | // }); |
| | | // }, |
| | | // exportExcel() { |
| | | // if (this.selectedList.length === 0) { |
| | | // this.$message.warning('请先选择需要导出的数据'); |
| | | // return; |
| | | // } |
| | | // this.$confirm('是否导出?', '提示', { |
| | | // confirmButtonText: '确定', |
| | | // cancelButtonText: '取消', |
| | | // type: 'warning', |
| | | // }).then(() => { |
| | | // NProgress.start(); |
| | | // exportBlob( |
| | | // `/blade-mdm/machineback/filehandle/export-excel?${this.website.tokenHeader}=${getToken()}` |
| | | // ).then(res => { |
| | | // downloadXls(res.data, `导出机床回传程序${this.$dayjs().format('YYYY-MM-DD HH:mm:ss')}.xlsx`); |
| | | // NProgress.done(); |
| | | // }); |
| | | // }); |
| | | // }, |
| | | |
| | | searchChange(params, done) { |
| | | let data = {} |
| | | this.query = params; |