|
@@ -44,7 +44,7 @@
|
|
|
</div>
|
|
|
<div class="text_back">
|
|
|
<p>补充耕地</p>
|
|
|
- <span>673.56</span>公顷
|
|
|
+ <span>{{ store.state.cockpit_gdbh.zbph.bcgd.jszgm }}</span>公顷
|
|
|
|
|
|
</div>
|
|
|
</div>
|
|
@@ -60,7 +60,7 @@
|
|
|
<br>
|
|
|
|
|
|
<span class="zbph_value_unit">
|
|
|
- <span class="zbph_value">934.23</span>
|
|
|
+ <span class="zbph_value">0</span>
|
|
|
<span class="zbph_unit">公顷</span>
|
|
|
</span>
|
|
|
</li>
|
|
@@ -72,7 +72,7 @@
|
|
|
<br>
|
|
|
|
|
|
<span class="zbph_value_unit">
|
|
|
- <span class="zbph_value">934.23</span>
|
|
|
+ <span class="zbph_value">0</span>
|
|
|
<span class="zbph_unit">吨</span>
|
|
|
</span>
|
|
|
</li>
|
|
@@ -88,7 +88,7 @@
|
|
|
<br>
|
|
|
|
|
|
<span class="zbph_value_unit">
|
|
|
- <span class="zbph_value">934.23</span>
|
|
|
+ <span class="zbph_value">{{ store.state.cockpit_gdbh.zbph.bcgd.xzstmj }}</span>
|
|
|
<span class="zbph_unit">公顷</span>
|
|
|
</span>
|
|
|
</li>
|
|
@@ -100,7 +100,7 @@
|
|
|
<br>
|
|
|
|
|
|
<span class="zbph_value_unit">
|
|
|
- <span class="zbph_value">934.23</span>
|
|
|
+ <span class="zbph_value">{{ store.state.cockpit_gdbh.zbph.bcgd.jszgm }}</span>
|
|
|
<span class="zbph_unit">吨</span>
|
|
|
</span>
|
|
|
</li>
|
|
@@ -195,6 +195,14 @@ export default {
|
|
|
let data = await QueryOne(obj);
|
|
|
store.state.cockpit_gdbh.gdxz = data.data
|
|
|
console.log('store.state.cockpit_gdbh.gdxz: ', store.state.cockpit_gdbh.gdxz);
|
|
|
+ }, async init_zbph(params) {
|
|
|
+ const that = this;
|
|
|
+ let obj = {
|
|
|
+ jscType: 'jsc_gdbh_zbph_gdbc',
|
|
|
+ id: params ? params.id : '4602'
|
|
|
+ };
|
|
|
+ let data = await QueryOne(obj);
|
|
|
+ store.state.cockpit_gdbh.zbph.bcgd = data.data
|
|
|
},
|
|
|
setData(datas) {
|
|
|
this.GetQueryOne_nt(datas);
|
|
@@ -456,6 +464,9 @@ export default {
|
|
|
this.$nextTick((res) => {
|
|
|
this.init_info();
|
|
|
this.init_gdxz_echart();
|
|
|
+ this.init_zbph();
|
|
|
+
|
|
|
+
|
|
|
})
|
|
|
},
|
|
|
};
|