| | |
| | | <el-table-column v-if="tableData.length != 0" fixed label="序号" type="index" width="55"> |
| | | </el-table-column> |
| | | <!-- 生命周期--> |
| | | <!-- <el-table-column v-for="(item,index) in lcstatusArray"--> |
| | | <!-- v-if=" lcstatusArray.length >= 0 && !item.hidden"--> |
| | | <!-- key="index" :show-overflow-tooltip="true" :sortable="item.sortable"--> |
| | | <!-- :width="item.width" align="center" label="生命周期值"--> |
| | | <!-- prop="lcstatus">--> |
| | | <!-- <template slot-scope="scope">--> |
| | | <!-- <span>{{ scope.row.lcstatus_text }}</span>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | <!-- <el-table-column v-for="(item,index) in lcstatusArray"--> |
| | | <!-- v-if=" lcstatusArray.length >= 0 && !item.hidden"--> |
| | | <!-- key="index" :show-overflow-tooltip="true" :sortable="item.sortable"--> |
| | | <!-- :width="item.width" align="center" label="生命周期值"--> |
| | | <!-- prop="lcstatus">--> |
| | | <!-- <template slot-scope="scope">--> |
| | | <!-- <span>{{ scope.row.lcstatus_text }}</span>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | <!-- 编号--> |
| | | <el-table-column v-for="(item, index) in CodeArray" v-if="CodeArray.length !== 0 && !item.hidden" |
| | | key="index" :label="item.label" :prop="item.prop" |
| | |
| | | }, |
| | | // 主数据按钮 |
| | | masterVrBtnList: [], |
| | | fileOptions:{}, |
| | | fileOptions: {}, |
| | | result: '', |
| | | elapsedTime: '', |
| | | }; |
| | |
| | | this.tableData = newval; |
| | | this.searchResults = newval |
| | | this.doLayout(); |
| | | this.fileOptions= { |
| | | this.fileOptions = { |
| | | ownbizOid: "0", |
| | | ownbizBtm: "0", |
| | | fileDocClassify: '!=processAuditSuggest', |
| | |
| | | func.downloadFileByBlobHandler(res); |
| | | this.$message.success('下载成功,请查看!'); |
| | | this.isLoading = false; |
| | | }).catch(error=>{ |
| | | }).catch(error => { |
| | | this.$message.error(error); |
| | | }); |
| | | }, |
| | |
| | | if (this.statusSelect !== 'all') { |
| | | conditionMap.lcstatus = this.statusSelect; |
| | | } |
| | | |
| | | const res = await TableData({ |
| | | templateOid: this.templateOid, |
| | | codeClassifyOid: this.codeClassifyOid, |
| | |
| | | limit: this.page.pageSize, |
| | | conditionMap |
| | | }); |
| | | |
| | | this.tableData = res.data.data; |
| | | this.doLayout(); |
| | | } catch (error) { |
| | | // 处理错误 |
| | | this.$message.error(error) |
| | | } finally { |
| | | this.isLoading = false; |
| | | } |
| | |
| | | this.findvisible = true; |
| | | }, |
| | | // 高级查询 |
| | | echoContion(val) { |
| | | FindData({ |
| | | templateOid: this.templateOid, |
| | | codeClassifyOid: this.codeClassifyOid, |
| | | ...val, |
| | | }).then((res) => { |
| | | async echoContion(val) { |
| | | try { |
| | | const res = await FindData({ |
| | | templateOid: this.templateOid, |
| | | codeClassifyOid: this.codeClassifyOid, |
| | | ...val, |
| | | }); |
| | | this.tableData = res.data.data; |
| | | this.page.total = res.data.total |
| | | }); |
| | | } catch (error) { |
| | | |
| | | } |
| | | }, |
| | | //相似项查询 |
| | | similarHandler() { |
| | |
| | | this.tableData = res.data.data; |
| | | this.page.total = res.data.total; |
| | | }) |
| | | } finally { |
| | | } finally { |
| | | this.isLoading = false; |
| | | } |
| | | } |