|
@@ -69,13 +69,13 @@
|
|
|
<div class="lt_box box">
|
|
|
<div class="text">
|
|
|
<p>计划供应</p>
|
|
|
- <span>66.23</span>公顷
|
|
|
+ <span>{{store.state.cockpit_tdgy.gy_jd_info.jh_crmj}}</span>公顷
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="lb_box box">
|
|
|
<div class="text">
|
|
|
<p>完成供应</p>
|
|
|
- <span>66.23</span>公顷
|
|
|
+ <span>{{ store.state.cockpit_tdgy.gy_jd_info.sj_cr_crmj }}</span>公顷
|
|
|
</div>
|
|
|
</div>
|
|
|
<div id="dial_watch_gy_jd">
|
|
@@ -85,13 +85,13 @@
|
|
|
<div class="rt_box_gy_jd box">
|
|
|
<div class="text">
|
|
|
<p>计划供应项目</p>
|
|
|
- <span>66.23</span>个
|
|
|
+ <span>{{ store.state.cockpit_tdgy.gy_jd_info.jh_xzqhdm_number }}</span>个
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="rb_box_gy_jd box">
|
|
|
<div class="text">
|
|
|
<p>完成供应项目</p>
|
|
|
- <span>66.23</span>个
|
|
|
+ <span>{{ store.state.cockpit_tdgy.gy_jd_info.sj_xzqhdm_number }}</span>个
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -172,6 +172,17 @@ export default {
|
|
|
created() { }, //生命周期 - 创建完成(可以访问当前this实例)
|
|
|
beforeMount() { }, //生命周期 - 挂载之前
|
|
|
methods: {
|
|
|
+ async init_tdgy_gy_jg(params) {
|
|
|
+ const that = this;
|
|
|
+ let obj = {
|
|
|
+ jscType: 'jsc_tdgy_gy_ztsh',
|
|
|
+ id: params ? params.id : '4602'
|
|
|
+ };
|
|
|
+ let data = await QueryList(obj);
|
|
|
+ console.log('data: ', data);
|
|
|
+ store.state.cockpit_tdgy.gy_jd_info = data.data[0]
|
|
|
+
|
|
|
+ },
|
|
|
async init_tdgy_jt_jg(params) {
|
|
|
const that = this;
|
|
|
let obj = {
|
|
@@ -789,7 +800,7 @@ export default {
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
this.init_tdgy_jt_jg();
|
|
|
-
|
|
|
+ this.init_tdgy_gy_jg();
|
|
|
this.init_tdgy_gy_jd();
|
|
|
that.init_echart();
|
|
|
that.init_dial_watch_scjg();
|