Browse Source

字段对应设置bug/收集整编

master
xuhuajiao 1 year ago
parent
commit
992cef22a9
  1. 10
      src/views/collectReorganizi/filingApprovalList/index.vue
  2. 33
      src/views/collectReorganizi/receivingFlowList/index.vue
  3. 2
      src/views/system/fieldCorresManage/index.vue

10
src/views/collectReorganizi/filingApprovalList/index.vue

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

33
src/views/collectReorganizi/receivingFlowList/index.vue

@ -0,0 +1,33 @@
<template>
<div class="app-container row-container">
接收流程清单
</div>
</template>
<script>
export default {
name: 'ReceivingFlowList',
props: {
},
data() {
return {
}
},
created() {
},
mounted() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
@import "~@/assets/styles/collect-reorganizi.scss";
.connection-header{
padding: 0 !important;
}
</style>

2
src/views/system/fieldCorresManage/index.vue

@ -206,7 +206,7 @@ export default {
if (valid) {
crudFieldMate.FetchCheckRepeat(this.form).then((res) => {
this.initFiledList(this.form.documentId, this.form.categoryId)
if (res === {}) {
if (JSON.stringify(res) === JSON.stringify({})) {
//
this.$refs.corresForm.corresVisible = true
this.$refs.corresForm.documentName = this.selectedDocumentName

Loading…
Cancel
Save