|
|
@ -78,9 +78,14 @@ G |
|
|
<div class="subtitle"> {{ $t('page.business.study.study.jcgj') }}</div> |
|
|
<div class="subtitle"> {{ $t('page.business.study.study.jcgj') }}</div> |
|
|
</div> |
|
|
</div> |
|
|
<jcgjList ref="jcgjList" :showRy="true" @handleQuery="jcgjListHandleQuery" /> |
|
|
<jcgjList ref="jcgjList" :showRy="true" @handleQuery="jcgjListHandleQuery" /> |
|
|
|
|
|
|
|
|
<pagination v-show="jcgjTotal > 0" small layout="prev, pager, next" :total="jcgjTotal" |
|
|
|
|
|
@pagination="getJjcgjList" /> |
|
|
|
|
|
|
|
|
<pagination |
|
|
|
|
|
v-show="jcgjTotal>0" |
|
|
|
|
|
:total="jcgjTotal" |
|
|
|
|
|
small layout="prev, pager, next" |
|
|
|
|
|
:page.sync="queryJcgjParams.pageNum" |
|
|
|
|
|
:limit.sync="queryJcgjParams.pageSize" |
|
|
|
|
|
@pagination="getJjcgjList" |
|
|
|
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
@ -112,12 +117,11 @@ export default { |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
jcgjListHandleQuery(val) { |
|
|
jcgjListHandleQuery(val) { |
|
|
this.$modal.loading() |
|
|
|
|
|
|
|
|
this.queryJcgjParams.pageNum =1 |
|
|
study_jcgjList(_.merge({}, this.queryJcgjParams, val)).then(response => { |
|
|
study_jcgjList(_.merge({}, this.queryJcgjParams, val)).then(response => { |
|
|
this.jcgjList = response.rows |
|
|
this.jcgjList = response.rows |
|
|
this.jcgjTotal = response.total |
|
|
this.jcgjTotal = response.total |
|
|
this.$refs.jcgjList.init(this.jcgjList) |
|
|
this.$refs.jcgjList.init(this.jcgjList) |
|
|
this.$modal.closeLoading() |
|
|
|
|
|
}) |
|
|
}) |
|
|
}, |
|
|
}, |
|
|
getJjcgjList() { |
|
|
getJjcgjList() { |
|
|
@ -126,7 +130,6 @@ export default { |
|
|
this.jcgjTotal = response.total |
|
|
this.jcgjTotal = response.total |
|
|
this.$refs.jcgjList.init(this.jcgjList) |
|
|
this.$refs.jcgjList.init(this.jcgjList) |
|
|
}).finally(()=>{ |
|
|
}).finally(()=>{ |
|
|
this.$modal.closeLoading() |
|
|
|
|
|
}) |
|
|
}) |
|
|
}, |
|
|
}, |
|
|
cancel() { |
|
|
cancel() { |
|
|
|