|
@@ -1,10 +1,10 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
- <a-card size="small" :bordered="false" class="estimatedOrderList-wrap searchBoxNormal">
|
|
|
+ <a-card size="small" :bordered="false" class="partitionTargetList-wrap searchBoxNormal">
|
|
|
<!-- 搜索条件 -->
|
|
|
<div class="table-page-search-wrapper" ref="tableSearch">
|
|
|
<a-form-model
|
|
|
- id="estimatedOrderList-form"
|
|
|
+ id="partitionTargetList-form"
|
|
|
ref="ruleForm"
|
|
|
class="form-model-con"
|
|
|
layout="inline"
|
|
@@ -14,12 +14,12 @@
|
|
|
<a-col :md="5" :sm="24">
|
|
|
<a-form-model-item label="年份" prop="confYear">
|
|
|
<a-select
|
|
|
- id="estimatedOrderList-confYear"
|
|
|
+ id="partitionTargetList-confYear"
|
|
|
style="width: 100%"
|
|
|
placeholder="请选择年份"
|
|
|
:value="queryParam.confYear"
|
|
|
@change="changeYear">
|
|
|
- <a-select-option :id="'estimatedOrderList-'+item" v-for="item in years" :value="item" :key="item">
|
|
|
+ <a-select-option :id="'partitionTargetList-'+item" v-for="item in years" :value="item" :key="item">
|
|
|
{{ item }}
|
|
|
</a-select-option>
|
|
|
</a-select>
|
|
@@ -30,12 +30,12 @@
|
|
|
type="primary"
|
|
|
@click="handleSearch"
|
|
|
:disabled="disabled"
|
|
|
- id="estimatedOrderList-refresh">查询</a-button>
|
|
|
+ id="partitionTargetList-refresh">查询</a-button>
|
|
|
<a-button
|
|
|
style="margin-left: 8px"
|
|
|
@click="resetSearchForm"
|
|
|
:disabled="disabled"
|
|
|
- id="estimatedOrderList-reset">重置</a-button>
|
|
|
+ id="partitionTargetList-reset">重置</a-button>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</a-form-model>
|
|
@@ -74,7 +74,7 @@
|
|
|
placeholder="请输入"
|
|
|
:precision="2"
|
|
|
:value="text"
|
|
|
- :id="'estimatedOrderList-input-'+record.id"
|
|
|
+ :id="'partitionTargetList-input-'+record.id"
|
|
|
@blur="e => handleChange(e.target.value,record, col)"/>
|
|
|
<template v-else>
|
|
|
{{ text?toThousands(text):'0.00' }}
|
|
@@ -89,11 +89,11 @@
|
|
|
type="link"
|
|
|
class="button-info"
|
|
|
@click="handleSave(record)"
|
|
|
- :id="'estimatedOrderList-save-btn'+record.id"
|
|
|
+ :id="'partitionTargetList-save-btn'+record.id"
|
|
|
>
|
|
|
保存
|
|
|
</a-button>
|
|
|
- <a-popconfirm title="确定取消吗?" :id="'estimatedOrderList-cancel-btn'+record.id" @confirm="() => handleCancel(record)">
|
|
|
+ <a-popconfirm title="确定取消吗?" :id="'partitionTargetList-cancel-btn'+record.id" @confirm="() => handleCancel(record)">
|
|
|
<a>取消</a>
|
|
|
</a-popconfirm>
|
|
|
</span>
|
|
@@ -104,7 +104,7 @@
|
|
|
class="button-info"
|
|
|
:disabled="editingKey !== ''"
|
|
|
@click="handleEdit(record)"
|
|
|
- :id="'estimatedOrderList-edit-btn'+record.id"
|
|
|
+ :id="'partitionTargetList-edit-btn'+record.id"
|
|
|
>
|
|
|
编辑
|
|
|
</a-button>
|
|
@@ -123,7 +123,7 @@ import { STable } from '@/components'
|
|
|
// 接口
|
|
|
import { reportDailyConfList, dailyReportConfSave } from '@/api/reportDailyConf'
|
|
|
export default {
|
|
|
- name: 'EstimatedOrderList',
|
|
|
+ name: 'PartitionTargetList',
|
|
|
mixins: [commonMixin],
|
|
|
components: { STable },
|
|
|
props: {
|
|
@@ -346,7 +346,7 @@ export default {
|
|
|
}
|
|
|
/* 最后一行样式 */
|
|
|
/deep/.last-row {
|
|
|
- background: #fafafa !important; /* 橙色背景 */
|
|
|
+ background: #fafafa !important; /* 灰色背景 */
|
|
|
/* 固定定位 */
|
|
|
position: sticky;
|
|
|
bottom: 0;
|