【修改】 修改上传报告 修改流程中心(没完成)
This commit is contained in:
@@ -9,7 +9,11 @@
|
||||
<div class="search-box-left">
|
||||
<label>流程编号:</label>
|
||||
<el-input v-model="form.prcNum" placeholder="请输入流程编号"></el-input>
|
||||
<label>流程类型:</label>
|
||||
<label>发起人:</label>
|
||||
<el-input v-model="form.creatUserName" placeholder="请输入发起人"></el-input>
|
||||
<label>报告名称:</label>
|
||||
<el-input v-model="form.prcName" placeholder="请输入报告名称"></el-input>
|
||||
<label>流程类型:</label>
|
||||
<el-select v-model="form.prcType" collapse-tags placeholder="请选择流程类型">
|
||||
<template v-for="item in processTypeList">
|
||||
<el-option :label="item.label" :value="item.value" :key="item.value"></el-option>
|
||||
@@ -26,7 +30,13 @@
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
</div>
|
||||
<el-row class="agreeBtn">
|
||||
<el-button @click="permissionApp">批量同意</el-button>
|
||||
<el-button @click="permissionApp">批量不同意</el-button>
|
||||
|
||||
</el-row>
|
||||
<div class="tabs">
|
||||
<tabs @clearForm="reset"/>
|
||||
</div>
|
||||
@@ -145,8 +155,11 @@ import tabs from '../userCenter/processCenter/tabs.vue'
|
||||
}
|
||||
}
|
||||
.tabs{
|
||||
margin: 20px 0 0 13px;
|
||||
margin: 10px 0 0 13px;
|
||||
}
|
||||
.agreeBtn{
|
||||
margin: 10px 20px 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
<div class="table">
|
||||
<vxe-table ref="xTable" :data="tableData" :empty-render="{name: 'NotData'}" align="center" border stripe v-table-min-height="'calc(100vh - 380px)'">
|
||||
<vxe-column type="checkbox" width="60"></vxe-column>
|
||||
<vxe-column show-overflow show-header-overflow type="seq" title="序号" width="77">
|
||||
<template #default="{ row, rowIndex }">
|
||||
{{ rowIndex + (q.current - 1) * q.size + 1 }}
|
||||
|
||||
Reference in New Issue
Block a user