|
|
|
|
@ -3,6 +3,13 @@
|
|
|
|
|
<lx-header icon="md-apps" text="预算进展情况" style="margin-bottom: 10px; border: 0px; margin-top: 15px">
|
|
|
|
|
<div slot="content"></div>
|
|
|
|
|
<slot>
|
|
|
|
|
<span style="padding: 0 6px">名称</span>
|
|
|
|
|
<span><el-input
|
|
|
|
|
v-model="select.name"
|
|
|
|
|
placeholder="请输入名称"
|
|
|
|
|
style="width: 130px"
|
|
|
|
|
size="small"
|
|
|
|
|
></el-input></span>
|
|
|
|
|
<span style="padding: 0 6px;word-break: keep-all;">年份</span>
|
|
|
|
|
<span>
|
|
|
|
|
<DatePicker :value="select.year" placeholder="请选择年份" type="year" placement="bottom-start" style="width: 160px"
|
|
|
|
|
@ -121,6 +128,7 @@
|
|
|
|
|
types: [], //预算类型
|
|
|
|
|
departments: [],
|
|
|
|
|
select: {
|
|
|
|
|
name: "",
|
|
|
|
|
pageIndex: 1,
|
|
|
|
|
year: '',
|
|
|
|
|
type: '',
|
|
|
|
|
@ -446,6 +454,7 @@
|
|
|
|
|
|
|
|
|
|
async getPlanProgress() {
|
|
|
|
|
const res = await getProgress({
|
|
|
|
|
name: this.select.name,
|
|
|
|
|
page_size: 10,
|
|
|
|
|
page: this.select.pageIndex,
|
|
|
|
|
year: this.select.year,
|
|
|
|
|
|