|
|
@@ -23,6 +23,7 @@
|
|
|
<a-tab-pane key="7" tab="变更记录"></a-tab-pane>
|
|
|
</a-tabs>
|
|
|
<a-form class="inlineForm"
|
|
|
+ v-if="activeKey == 1"
|
|
|
:form="form"
|
|
|
@submit="handleSearch">
|
|
|
<fieldset class="formFieldSet">
|
|
|
@@ -179,6 +180,14 @@
|
|
|
</a-row>
|
|
|
</fieldset>
|
|
|
</a-form>
|
|
|
+ <div class="tableDatas">
|
|
|
+ <a-table class="dialogTable" :columns="columns" :data-source="data" :pagination="false">
|
|
|
+ <template #status="{ text }">
|
|
|
+ <span class="yellow">{{ text }}</span>
|
|
|
+ <!-- 审核通过'green' 审核拒绝 'orange' 待审核'yellow' -->
|
|
|
+ </template>
|
|
|
+ </a-table>
|
|
|
+ </div>
|
|
|
</a-modal>
|
|
|
</template>
|
|
|
|
|
|
@@ -216,7 +225,99 @@ export default defineComponent({
|
|
|
loading.value = false;
|
|
|
cancel();
|
|
|
}, 200);
|
|
|
- }
|
|
|
+ };
|
|
|
+ const columns = [
|
|
|
+ {
|
|
|
+ title: '序号',
|
|
|
+ dataIndex: 'no',
|
|
|
+ key: 'no',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '点价登记时间',
|
|
|
+ dataIndex: 'time',
|
|
|
+ key: 'time',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '点价审核时间',
|
|
|
+ dataIndex: 'adutTime',
|
|
|
+ key: 'adutTime',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '点价价格',
|
|
|
+ dataIndex: 'price',
|
|
|
+ key: 'price',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '升贴水',
|
|
|
+ dataIndex: 'money',
|
|
|
+ key: 'money',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '点价数量',
|
|
|
+ dataIndex: 'num',
|
|
|
+ key: 'num',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '点价金额',
|
|
|
+ dataIndex: 'pointAmount',
|
|
|
+ key: 'pointAmount',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '申请人',
|
|
|
+ dataIndex: 'apply',
|
|
|
+ key: 'apply',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '审核人',
|
|
|
+ dataIndex: 'adutPerson',
|
|
|
+ key: 'adutPerson',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '状态',
|
|
|
+ dataIndex: 'status',
|
|
|
+ key: 'status',
|
|
|
+ align: 'center',
|
|
|
+ slots: { customRender: 'status' },
|
|
|
+ }
|
|
|
+ ];
|
|
|
+
|
|
|
+ const data = [
|
|
|
+ {
|
|
|
+ key: '1',
|
|
|
+ no: '1',
|
|
|
+ time: '20-12-01 19:37',
|
|
|
+ adutTime: '20-12-01 20:37',
|
|
|
+ price: '1000.00',
|
|
|
+ money: '100',
|
|
|
+ num: '1',
|
|
|
+ pointAmount: '10100.00',
|
|
|
+ apply: 'lishunli',
|
|
|
+ adutPerson: 'wamgping',
|
|
|
+ status: '审核通过'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '2',
|
|
|
+ no: '2',
|
|
|
+ time: '20-12-01 19:37',
|
|
|
+ adutTime: '20-12-01 20:37',
|
|
|
+ price: '1000.00',
|
|
|
+ money: '100',
|
|
|
+ num: '1',
|
|
|
+ pointAmount: '10100.00',
|
|
|
+ apply: 'lishunli',
|
|
|
+ adutPerson: 'wamgping',
|
|
|
+ status: '审核驳回'
|
|
|
+ },
|
|
|
+ ];
|
|
|
return {
|
|
|
visible,
|
|
|
cancel,
|
|
|
@@ -230,6 +331,8 @@ export default defineComponent({
|
|
|
getContractTypeName,
|
|
|
getBizTypeName,
|
|
|
activeKey: ref('1'),
|
|
|
+ columns,
|
|
|
+ data
|
|
|
};
|
|
|
},
|
|
|
});
|
|
|
@@ -239,7 +342,12 @@ export default defineComponent({
|
|
|
.custom-detail {
|
|
|
.ant-modal-body {
|
|
|
padding-top: 0;
|
|
|
+ padding-left: 0;
|
|
|
+ padding-right: 0;
|
|
|
.ant-tabs {
|
|
|
+ background: @m-black11;
|
|
|
+ width: 100%;
|
|
|
+ padding: 0 24px;
|
|
|
.ant-tabs-bar {
|
|
|
margin-bottom: 0;
|
|
|
border-bottom: 0;
|
|
|
@@ -269,18 +377,19 @@ export default defineComponent({
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-}
|
|
|
-.ant-form.inlineForm {
|
|
|
- margin-top: 20px;
|
|
|
-}
|
|
|
-.white {
|
|
|
- color: @m-white0;
|
|
|
-}
|
|
|
-.blue {
|
|
|
- color: @m-blue0;
|
|
|
-}
|
|
|
-.green {
|
|
|
- color: @m-green0;
|
|
|
+ .tableDatas {
|
|
|
+ margin-top: 26px;
|
|
|
+ padding: 0 24px;
|
|
|
+ overflow: hidden;
|
|
|
+ .dialogTable {
|
|
|
+ width: 100%;
|
|
|
+ overflow: overlay;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .ant-form.inlineForm {
|
|
|
+ margin-top: 20px;
|
|
|
+ padding: 0 24px;
|
|
|
+ }
|
|
|
}
|
|
|
</style
|
|
|
>;
|