庞东旭 1 день тому
джерело
коміт
b246b3e1f2
2 змінених файлів з 4 додано та 2 видалено
  1. +1
    -1
      src/views/sunVillage_info/list_operatingAssets_detail.vue
  2. +3
    -1
      src/views/sunVillage_info/list_revenueAndExpenditure.vue

+ 1
- 1
src/views/sunVillage_info/list_operatingAssets_detail.vue Переглянути файл

@@ -9,7 +9,7 @@
<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.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">


+ 3
- 1
src/views/sunVillage_info/list_revenueAndExpenditure.vue Переглянути файл

@@ -110,7 +110,7 @@
var _this = this;
console.log(_this.queryParams)
financialPublicDetailReport(_this.queryParams).then(response => {
_this.listLength = response.total;
_this.listLength = response.total == 0 ? 0 : (response.total - 1);
response.rows.map(res=>{
// res.pictureType = this.selectDictLabel(this.pictureTypeOptions, res.pictureType);
_this.applicationList.push(res);
@@ -139,6 +139,8 @@
this.showTab = false;
this.applicationList = [];
this.queryParams.pageNum = 1;
this.loading = true;
this.finished = false;
this.getList();
},
tabClick(year){


Завантаження…
Відмінити
Зберегти