|
@@ -1,9 +1,9 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="table-demo">
|
|
<div class="table-demo">
|
|
|
<bs-table v-bind="tableOptions">
|
|
<bs-table v-bind="tableOptions">
|
|
|
- <template #toolbarLeft>
|
|
|
|
|
|
|
+ <template #toolbarTop>
|
|
|
<a-space>
|
|
<a-space>
|
|
|
- <a-button type="primary" @click="goHistroyProjectPage">
|
|
|
|
|
|
|
+ <a-button type="primary" @click="goHistroyProjectPage">
|
|
|
<template #icon>
|
|
<template #icon>
|
|
|
<PlusOutlined />
|
|
<PlusOutlined />
|
|
|
</template>
|
|
</template>
|
|
@@ -11,6 +11,11 @@
|
|
|
</a-button>
|
|
</a-button>
|
|
|
</a-space>
|
|
</a-space>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <template #toolbarLeft>
|
|
|
|
|
+ <a-space>
|
|
|
|
|
+ <span>润扬项目概算金额(元):1,348,223.89</span>
|
|
|
|
|
+ </a-space>
|
|
|
|
|
+ </template>
|
|
|
</bs-table>
|
|
</bs-table>
|
|
|
<HistoryProjDetail ref="HistoryProjDetailRef" @refreshTable="refreshTable()"></HistoryProjDetail>
|
|
<HistoryProjDetail ref="HistoryProjDetailRef" @refreshTable="refreshTable()"></HistoryProjDetail>
|
|
|
<ProjectQuotation ref="ProjectQuotationRef" @refreshTable="refreshTable()"></ProjectQuotation>
|
|
<ProjectQuotation ref="ProjectQuotationRef" @refreshTable="refreshTable()"></ProjectQuotation>
|
|
@@ -19,7 +24,7 @@
|
|
|
|
|
|
|
|
<script setup lang="jsx">
|
|
<script setup lang="jsx">
|
|
|
import BsTable, { useBsTable } from '/@/components/BsUi/Table/index.js';
|
|
import BsTable, { useBsTable } from '/@/components/BsUi/Table/index.js';
|
|
|
- import { onMounted, ref, watch } from 'vue';
|
|
|
|
|
|
|
+ import { onMounted, h,ref, watch } from 'vue';
|
|
|
import { useRouter } from 'vue-router';
|
|
import { useRouter } from 'vue-router';
|
|
|
import { DISPLAY_STATE } from '/@/components/BsUi/constant.js';
|
|
import { DISPLAY_STATE } from '/@/components/BsUi/constant.js';
|
|
|
|
|
|