| | |
| | | @search-change="searchChange" @search-reset="searchReset" @current-change="currentChange" |
| | | @size-change="sizeChange" @refresh-change="refreshChange" @on-load="onLoad" |
| | | @selection-change="selectionChange"> |
| | | <!-- <template slot="view" slot-scope="{ row }"> |
| | | <div class="custom-view-footer"> |
| | | <p>这是自定义的底部内容</p> |
| | | <p>当前行数据:{{ row }}</p> |
| | | </div> |
| | | </template> --> |
| | | |
| | | <template #menu-left> |
| | | <!-- <el-button type="primary" plain @click="exportWebSite">导出回传涉密网</el-button> --> |
| | | <!-- <el-button type="primary" plain @click="reassign">挂载车床程序库</el-button> --> |
| | | <!-- <el-button type="primary" plain @click="exportExcel">导出到EXCEL</el-button> --> |
| | | <!-- <el-button type="primary" plain @click="reassign">重新指派 |
| | | </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="handleAction(scope.row, scope.index, 1)">审批表打印 |
| | | </el-button> |
| | | <el-button type="danger" text size="default" @click.stop="handleAction(scope.row, scope.index, 0)">删除 |
| | | </el-button> --> |
| | | |
| | | |
| | | </template> |
| | | </avue-crud> |
| | |
| | | viewBtn: false, |
| | | columnBtn: false, |
| | | tip: false, |
| | | // simplePage: true, |
| | | searchShow: true, |
| | | searchMenuSpan: 7, |
| | | searchEnter:true, |
| | | dialogWidth: '70%', |
| | | // tree: true, |
| | | border: true, |
| | | index: true, |
| | | selection: true, |
| | | |
| | | menuWidth: 200, |
| | | menuWidth: 80, |
| | | // menu: false, |
| | | labelWidth: 90, |
| | | menuSpan: 6, |
| | | dialogClickModal: false, |
| | | column: [ |
| | | { |
| | | label: '流程类型', |
| | | prop: 'processDefinitionKey', |
| | | label: '流程名称', |
| | | prop: 'myProcessName', |
| | | search: true, |
| | | searchType: 'select', |
| | | hide: true, |
| | | dicUrl: `/blade-mdm/system/dict/dictionary?code=flow`, |
| | | dicUrl: `/blade-system/dict-biz/dictionary?code=process_name`, |
| | | props: { |
| | | label: 'dictValue', |
| | | value: 'remark', |
| | | value: 'dictValue', |
| | | }, |
| | | }, |
| | | { |
| | |
| | | span: 8, |
| | | column: [ |
| | | { |
| | | label: '流程类型', |
| | | prop: 'processDefinitionKey', |
| | | label: '流程名称', |
| | | prop: '', |
| | | render: ({ row }) => { |
| | | return h('p',{'class': 'margin0'}, row?.processDefinitionKey) |
| | | }, |
| | | return h('p',{'class': 'margin0'}, row?.variables.myProcessName) |
| | | } |
| | | }, |
| | | { |
| | | label: '创建时间', |
| | |
| | | return h('p',{'class': 'margin0'}, row?.variables?.title) |
| | | } |
| | | }, |
| | | { |
| | | label: '流程名称', |
| | | prop: '', |
| | | render: ({ row }) => { |
| | | return h('p',{'class': 'margin0'}, row?.variables.myProcessName) |
| | | } |
| | | }, |
| | | |
| | | { |
| | | label: '工艺版次', |
| | | prop: 'variables.craftEdition', |
| | |
| | | createTimeBegin: params.createTimeBegin || undefined, |
| | | createTimeEnd: params.createTimeEnd || undefined, |
| | | keyword: params.keyword || undefined, |
| | | processDefinitionKey: params.processDefinitionKey || undefined |
| | | myProcessName: params.myProcessName || undefined |
| | | } |
| | | this.query = data |
| | | this.onLoad(this.page, data); |
| | |
| | | createTimeBegin: params.createTimeBegin, |
| | | createTimeEnd: params.createTimeEnd, |
| | | keyword: params.keyword || '', |
| | | processDefinitionKey: params.processDefinitionKey || '' |
| | | myProcessName: params.myProcessName || '' |
| | | } |
| | | this.onLoad(this.page, data); |
| | | done(); |
| | |
| | | createTimeBegin: params.createTimeBegin, |
| | | createTimeEnd: params.createTimeEnd, |
| | | keyword: params.keyword || '', |
| | | processDefinitionKey: params.processDefinitionKey || '' |
| | | myProcessName: params.myProcessName || '' |
| | | }; |
| | | this.loading = true; |
| | | getList2(page.currentPage, page.pageSize, Object.assign(data, params)).then(res => { |