Bladeren bron

问题修改

rongxin_dev
庞东旭 1 dag geleden
bovenliggende
commit
cc12ff40c2
5 gewijzigde bestanden met toevoegingen van 26 en 25 verwijderingen
  1. +1
    -0
      src/views/sunVillage_info/list_operatingAssets.vue
  2. +11
    -11
      src/views/sunVillage_info/list_operatingAssets_detail.vue
  3. +10
    -8
      src/views/sunVillage_info/list_operatingAssets_detail2.vue
  4. +2
    -4
      src/views/sunVillage_info/list_revenueAndExpenditure.vue
  5. +2
    -2
      src/views/sunVillage_info/otherOpenNew/otherOpenVisitList.vue

+ 1
- 0
src/views/sunVillage_info/list_operatingAssets.vue Bestand weergeven

@@ -94,6 +94,7 @@
applicationList2:[],
useTypeOptionsY:[],
resourceTypeOptionsY:[],
resourceTypeOptions:[],
useTypeOptions: [
{ text: '使用情况', value: '' },
],


+ 11
- 11
src/views/sunVillage_info/list_operatingAssets_detail.vue Bestand weergeven

@@ -6,18 +6,18 @@
</div>
<div class="list_main">
<van-divider>固定资产信息</van-divider>
<van-field v-model="form.name" label="资产名称" placeholder="资产名称" input-align="right" :border="false"/>
<van-field v-model="form.useType" label="使用状态" placeholder="使用状态" input-align="right" :border="false"/>
<van-field v-model="form.originalValue" label="原值" placeholder="原值" input-align="right" :border="false"/>
<van-field v-model="form.buildTime" label="构建时间" placeholder="构建时间" input-align="right" :border="false"/>
<van-field v-model="form.quantity" label="数量" placeholder="数量" input-align="right" :border="false"/>
<van-field v-model="form.unit" label="单位" placeholder="单位" input-align="right" :border="false"/>
<van-field readonly v-model="form.name" label="资产名称" placeholder="资产名称" input-align="right" :border="false"/>
<van-field readonly v-model="form.useType" label="使用状态" placeholder="使用状态" input-align="right" :border="false"/>
<van-field readonly v-model="form.originalValue" label="原值" placeholder="原值" input-align="right" :border="false"/>
<van-field readonly v-model="form.buildTime" label="构建时间" placeholder="构建时间" input-align="right" :border="false"/>
<van-field readonly v-model="form.quantity" label="数量" placeholder="数量" input-align="right" :border="false"/>
<van-field readonly v-model="form.unit" label="单位" placeholder="单位" input-align="right" :border="false"/>
<div v-if="form.contractionId">
<van-divider>关联合同信息</van-divider>
<van-field v-model="form.rentLessee" label="承租人" placeholder="承租人" input-align="right" :border="false"/>
<van-field v-model="form.contractYears" label="年限" placeholder="年限" input-align="right" :border="false"/>
<van-field v-model="form.totalAmount" label="合同金额" placeholder="合同金额" input-align="right" :border="false"/>
<van-field v-model="form.receivedAmount" label="已结款" placeholder="已结款" input-align="right" :border="false"/>
<van-field readonly v-model="form.rentLessee" label="承租人" placeholder="承租人" input-align="right" :border="false"/>
<van-field readonly v-model="form.contractYears" label="年限" placeholder="年限" input-align="right" :border="false"/>
<van-field readonly v-model="form.totalAmount" label="合同金额" placeholder="合同金额" input-align="right" :border="false"/>
<van-field readonly v-model="form.receivedAmount" label="已结款" placeholder="已结款" input-align="right" :border="false"/>
</div>
</div>
</div>
@@ -37,8 +37,8 @@
created() {
this.getDicts("use_type").then((response) => {
this.useTypeOptions = response.data;
this.getDetail();
});
this.getDetail();
},
methods: {
getDetail() {


+ 10
- 8
src/views/sunVillage_info/list_operatingAssets_detail2.vue Bestand weergeven

@@ -6,16 +6,16 @@
</div>
<div class="list_main">
<van-divider>资源性资产信息</van-divider>
<van-field v-model="form.resourceType" label="资源类型" placeholder="资源类型" input-align="right" :border="false"/>
<van-field v-model="form.useType" label="使用情况" placeholder="使用情况" input-align="right" :border="false"/>
<van-field v-model="form.totalArea" label="面积" placeholder="面积" input-align="right" :border="false"/>
<van-field readonly v-model="form.resourceType" label="资源类型" placeholder="资源类型" input-align="right" :border="false"/>
<van-field readonly v-model="form.useType" label="使用情况" placeholder="使用情况" input-align="right" :border="false"/>
<van-field readonly v-model="form.totalArea" label="面积" placeholder="面积" input-align="right" :border="false"/>
<div v-if="form.contractionId">
<van-divider>关联合同信息</van-divider>
<van-field v-model="form.usedArea" label="承租规模" placeholder="承租规模" input-align="right" :border="false"/>
<van-field v-model="form.rentLessee" label="承租人" placeholder="承租人" input-align="right" :border="false"/>
<van-field v-model="form.contractYears" label="年限" placeholder="年限" input-align="right" :border="false"/>
<van-field v-model="form.totalAmount" label="合同金额" placeholder="合同金额" input-align="right" :border="false"/>
<van-field v-model="form.receivedAmount" label="已结款" placeholder="已结款" input-align="right" :border="false"/>
<van-field readonly v-model="form.usedArea" label="承租规模" placeholder="承租规模" input-align="right" :border="false"/>
<van-field readonly v-model="form.rentLessee" label="承租人" placeholder="承租人" input-align="right" :border="false"/>
<van-field readonly v-model="form.contractYears" label="年限" placeholder="年限" input-align="right" :border="false"/>
<van-field readonly v-model="form.totalAmount" label="合同金额" placeholder="合同金额" input-align="right" :border="false"/>
<van-field readonly v-model="form.receivedAmount" label="已结款" placeholder="已结款" input-align="right" :border="false"/>
</div>
</div>
</div>
@@ -43,6 +43,8 @@
this.getDicts("resource_type").then((response) => {
this.resourceTypeOptions = response.data;
});
},
mounted() {
this.getDetail();
},
methods: {


+ 2
- 4
src/views/sunVillage_info/list_revenueAndExpenditure.vue Bestand weergeven

@@ -6,12 +6,11 @@
>
收支明细公开
<div class="return_btn" @click="onClickLeft"></div>
<div class="add_btn" @click="goAdd" v-show="showBtn"></div>
</div>
<div class="record_main">
<div class="record_det">
<div class="year_l" @click="tabShow"><i :class="{'icon':true , 'zk':!showTab , 'ss':showTab } "></i>{{queryParams.ny == '' ? '全部': queryParams.ny}}</div>
<div class="total_r">共{{listLength}}条公告</div>
<div class="total_r">共{{listLength}}条</div>
</div>
<van-popup v-model="showTab" position="bottom">
<van-datetime-picker
@@ -39,7 +38,7 @@
<!----1-->

<div class="item" v-for="(item,index) in applicationList" :key="index" >
<div class="info" @click="goDetail(item.id)">
<div class="info">
<div class="title">
<i class="icon_box"></i>
<p class="news_title">{{item.voucherSummary}}</p>
@@ -311,7 +310,6 @@
}
.list_main{
padding:0 22px;
margin-top: 15PX;
.item{
height: 140px;
border-radius: 30px;


+ 2
- 2
src/views/sunVillage_info/otherOpenNew/otherOpenVisitList.vue Bestand weergeven

@@ -146,10 +146,10 @@ import Cookies from "js-cookie";
}).catch(() => {});
},
viewItem(id){
this.$router.replace(`/sunVillage_info/otherOpenVisitIndex?otherType=${this.queryParams.otherType || ''}`, () => this.gotoViewItem(id), () => this.gotoViewItem(id) );
this.$router.replace(`/sunVillage_info/otherOpenVisitIndexNew?otherType=${this.queryParams.otherType || ''}`, () => this.gotoViewItem(id), () => this.gotoViewItem(id) );
},
back() {
this.$router.replace('/sunVillage_info/otherOpenVisitIndex', () => this.$router.back(), () => this.$router.back() );
this.$router.replace('/sunVillage_info/otherOpenVisitIndexNew', () => this.$router.back(), () => this.$router.back() );
},
tabClick(year){
this.queryParams.openYear = year;


Laden…
Annuleren
Opslaan