|
@ -35,6 +35,7 @@ |
|
|
</el-table> |
|
|
</el-table> |
|
|
<!--分页组件--> |
|
|
<!--分页组件--> |
|
|
<pagination v-if="crud.data.length !== 0" /> |
|
|
<pagination v-if="crud.data.length !== 0" /> |
|
|
|
|
|
<Detail ref="processDetail" :is-histroy="isHistroy" /> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
</template> |
|
|
</template> |
|
@ -50,6 +51,7 @@ import pagination from '@crud/Pagination' |
|
|
// import { exportFile } from '@/utils/index' |
|
|
// import { exportFile } from '@/utils/index' |
|
|
// import qs from 'qs' |
|
|
// import qs from 'qs' |
|
|
import { mapGetters } from 'vuex' |
|
|
import { mapGetters } from 'vuex' |
|
|
|
|
|
import Detail from '@/views/system/processManage/runningProcess/module/detail' |
|
|
|
|
|
|
|
|
const data = [ |
|
|
const data = [ |
|
|
{ |
|
|
{ |
|
@ -76,7 +78,7 @@ const data = [ |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
name: 'FilingApprovalList', |
|
|
name: 'FilingApprovalList', |
|
|
components: { DateRangePicker, rrOperation, crudOperation, pagination }, |
|
|
|
|
|
|
|
|
components: { Detail, DateRangePicker, rrOperation, crudOperation, pagination }, |
|
|
cruds() { |
|
|
cruds() { |
|
|
return [ |
|
|
return [ |
|
|
CRUD({ |
|
|
CRUD({ |
|
@ -120,8 +122,10 @@ export default { |
|
|
[CRUD.HOOK.afterRefresh]() { |
|
|
[CRUD.HOOK.afterRefresh]() { |
|
|
this.crud.data = data |
|
|
this.crud.data = data |
|
|
}, |
|
|
}, |
|
|
handleDetail() { |
|
|
|
|
|
this.$refs.mDetail.eepDetialVisible = true |
|
|
|
|
|
|
|
|
handleDetail(row) { |
|
|
|
|
|
this.$refs.processDetail.detailVisible = true |
|
|
|
|
|
this.$refs.processDetail.selectRow = row |
|
|
|
|
|
this.$refs.processDetail.activeIndex = 0 |
|
|
}, |
|
|
}, |
|
|
doExport(data) { |
|
|
doExport(data) { |
|
|
crud.downloadLoading = true |
|
|
crud.downloadLoading = true |
|
|