Browse Source

经费审报修改总金额为合计 修改项目内容为项目明细

新疆警官学校中职
lb01 1 year ago
parent
commit
26933610fa
2 changed files with 6 additions and 6 deletions
  1. +1
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/FundsApply/list.vue
  2. +5
    -5
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/FundsApply/single.vue

+ 1
- 1
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/FundsApply/list.vue View File

@@ -42,7 +42,7 @@
</view> -->

<view class="customlist-item-field">
<text class="customlist-item-field-title">总金额:</text>
<text class="customlist-item-field-title">合计:</text>
{{ decimals(displayListItem(item, 'SumAmount')) }}
</view>



+ 5
- 5
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/FundsApply/single.vue View File

@@ -41,7 +41,7 @@

<view class="welBox" id="StuInfoFreshEmergePeople" v-show="FundsApplyDetail.length != 0">
<view class="welCon" v-for="(item, i) in FundsApplyDetail" :key='i'>
<l-input v-model="item.ProjectContent" title="项目内容" placeholder="请填写" right :disabled="!edit" />
<l-input v-model="item.ProjectContent" title="项目明细" placeholder="请填写" right :disabled="!edit" />
<l-input v-model="item.Number" type="number" @change="SumAmountChange(item,'Number')" title="数量" :disabled="!edit" placeholder="请填写" right />
<l-label title="单位">
<picker
@@ -70,7 +70,7 @@
<view v-if="ready">
<l-input @input="setValue('FundsApply.SumAmount', $event)" :value="getValue('FundsApply.SumAmount')"
title="总金额" disabled="" /> <!-- v-if="!edit" :disabled="!edit" -->
title="合计" disabled="" /> <!-- v-if="!edit" :disabled="!edit" -->
<l-input @input="setValue('FundsApply.UpperAmount', $event)" :value="getValue('FundsApply.UpperAmount')"
title="人民币(大写)" disabled /> <!-- v-if="!edit" :disabled="!edit" -->
</view>
@@ -186,16 +186,16 @@
// },
SumAmount: {
type: 'text',
title: '总金额'
title: '合计'
},
UpperAmount: {
type: 'text',
title: '总金额',
title: '合计',
verify: 'NotNull'
},
Status: {
type: 'text',
title: '总金额'
title: '审批状态'
},
},



Loading…
Cancel
Save