Browse Source

完善付款申请

zhanglei
yunuo970428 4 months ago
parent
commit
d734bdec79
  1. 6
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/fukuanshenqing/paymentAdd.vue
  2. 4
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/fukuanshenqing/relation/paymentInformationAdd.vue
  3. 6
      anrui-buscenter/anrui-finmanage-ui/src/views/workFlow/fukuanguanliFlow/fukuanguanli/fukuanEdit.vue
  4. 4
      anrui-buscenter/anrui-finmanage-ui/src/views/workFlow/fukuanguanliFlow/fukuanguanli/relation/paymentInformationAdd.vue

6
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/fukuanshenqing/paymentAdd.vue

@ -95,7 +95,7 @@
<el-table-column fixed label="操作" width="180" align="center"> <el-table-column fixed label="操作" width="180" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button size="mini" type="danger" @click="handleDelete(scope.$index)">删除</el-button> <el-button size="mini" type="danger" @click="handleDelete(scope.$index)">删除</el-button>
<el-button size="mini" type="primary" @click="handleAddPayment(scope.row, scope.$index)">新增付款信息</el-button> <el-button size="mini" type="primary" @click="handleAddPayment(scope.row, scope.$index)">新增关联付款</el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="款项名称" align="center" width="200"> <el-table-column label="款项名称" align="center" width="200">
@ -253,7 +253,7 @@
<script> <script>
import req from '@/api/anruifinmanagement/payment' import req from '@/api/anruifinmanagement/payment'
import { typeValues, getOrgSidByPath, getInvoicingList, brandDown, selectNameByOrg } from '@/api/jichuxinxi/dictcommons' import { typeValues, getOrgSidByPath, getInvoicingList, brandDown, selectNameByOrg, getTypeValueList } from '@/api/jichuxinxi/dictcommons'
import vehcile from './relation/vehcile' import vehcile from './relation/vehcile'
import paymentInformationAdd from './relation/paymentInformationAdd' import paymentInformationAdd from './relation/paymentInformationAdd'
import paymentInformationInfo from './relation/paymentInformationInfo' import paymentInformationInfo from './relation/paymentInformationInfo'
@ -358,7 +358,7 @@ export default {
this.costType_list = res.data this.costType_list = res.data
} }
}) })
typeValues({ type: 'payCostTitle' }).then((res) => { getTypeValueList({ type: 'payCostType', groupNum: '001' }).then((res) => {
if (res.success) { if (res.success) {
this.costTitle_list = res.data this.costTitle_list = res.data
} }

4
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/fukuanshenqing/relation/paymentInformationAdd.vue

@ -153,7 +153,7 @@
<script> <script>
import req from '@/api/anruifinmanagement/payment' import req from '@/api/anruifinmanagement/payment'
import { typeValues } from '@/api/jichuxinxi/dictcommons' import {getTypeValueList, typeValues} from '@/api/jichuxinxi/dictcommons'
export default { export default {
name: 'PaymentInformationAdd', name: 'PaymentInformationAdd',
@ -206,7 +206,7 @@ export default {
}, },
methods: { methods: {
init() { init() {
typeValues({ type: 'payCostTitle' }).then((res) => { getTypeValueList({ type: 'payCostType', groupNum: '004' }).then((res) => {
if (res.success) { if (res.success) {
this.costTitle_list = res.data this.costTitle_list = res.data
} }

6
anrui-buscenter/anrui-finmanage-ui/src/views/workFlow/fukuanguanliFlow/fukuanguanli/fukuanEdit.vue

@ -94,7 +94,7 @@
<el-table-column fixed label="操作" width="180" align="center"> <el-table-column fixed label="操作" width="180" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button size="mini" type="danger" @click="handleDelete(scope.$index)">删除</el-button> <el-button size="mini" type="danger" @click="handleDelete(scope.$index)">删除</el-button>
<el-button size="mini" type="primary" @click="handleAddPayment(scope.row, scope.$index)">新增付款信息</el-button> <el-button size="mini" type="primary" @click="handleAddPayment(scope.row, scope.$index)">新增关联付款</el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="款项名称" align="center" width="200"> <el-table-column label="款项名称" align="center" width="200">
@ -252,7 +252,7 @@
<script> <script>
import req from '@/api/anruifinmanagement/payment' import req from '@/api/anruifinmanagement/payment'
import { typeValues, brandDown, selectNameByOrg, getInvoicingList } from '@/api/jichuxinxi/dictcommons' import { typeValues, brandDown, selectNameByOrg, getInvoicingList, getTypeValueList } from '@/api/jichuxinxi/dictcommons'
import vehcile from './relation/vehcile' import vehcile from './relation/vehcile'
import paymentInformationAdd from './relation/paymentInformationAdd' import paymentInformationAdd from './relation/paymentInformationAdd'
import paymentInformationInfo from './relation/paymentInformationInfo' import paymentInformationInfo from './relation/paymentInformationInfo'
@ -374,7 +374,7 @@ export default {
this.costType_list = res.data this.costType_list = res.data
} }
}) })
typeValues({ type: 'payCostTitle' }).then((res) => { getTypeValueList({ type: 'payCostType', groupNum: '001' }).then((res) => {
if (res.success) { if (res.success) {
this.costTitle_list = res.data this.costTitle_list = res.data
} }

4
anrui-buscenter/anrui-finmanage-ui/src/views/workFlow/fukuanguanliFlow/fukuanguanli/relation/paymentInformationAdd.vue

@ -153,7 +153,7 @@
<script> <script>
import req from '@/api/anruifinmanagement/payment' import req from '@/api/anruifinmanagement/payment'
import { typeValues } from '@/api/jichuxinxi/dictcommons' import { getTypeValueList, typeValues } from '@/api/jichuxinxi/dictcommons'
export default { export default {
name: 'PaymentInformationAdd', name: 'PaymentInformationAdd',
@ -206,7 +206,7 @@ export default {
}, },
methods: { methods: {
init() { init() {
typeValues({ type: 'payCostTitle' }).then((res) => { getTypeValueList({ type: 'payCostType', groupNum: '004' }).then((res) => {
if (res.success) { if (res.success) {
this.costTitle_list = res.data this.costTitle_list = res.data
} }

Loading…
Cancel
Save