|
@@ -39,17 +39,6 @@
|
|
|
allowClear></v-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
- <a-form-item label="结算状态">
|
|
|
- <v-select
|
|
|
- v-model="queryParam.settleState"
|
|
|
- ref="billStatus"
|
|
|
- id="expenseManagementList-billStatus"
|
|
|
- code="FINANCIAL_STATUS"
|
|
|
- placeholder="请选择结算状态"
|
|
|
- allowClear></v-select>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
</template>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<span class="table-page-search-submitButtons">
|
|
@@ -156,7 +145,6 @@ export default {
|
|
|
{ title: '费用类型', dataIndex: 'name', align: 'center', customRender: function (text, record) { return [record.expensesTypeName1, record.expensesTypeName2, record.expensesTypeName3].join(' > ') } },
|
|
|
{ title: '金额', dataIndex: 'settleAmount', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? ('¥' + text) : '--') } },
|
|
|
{ title: '单据状态', dataIndex: 'stateDictValue', width: 110, align: 'center' },
|
|
|
- { title: '结算状态', dataIndex: 'settleStateDictValue', width: 110, align: 'center' },
|
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: 200, align: 'center', fixed: 'right' }
|
|
|
],
|
|
|
// 加载数据方法 必须为 Promise 对象
|