修改页面字段
This commit is contained in:
parent
022f1c1a15
commit
5d3e10e1cd
|
|
@ -35,7 +35,7 @@ export const columns: BasicColumn[] = [
|
|||
width: 120,
|
||||
},
|
||||
{
|
||||
title: '面积',
|
||||
title: '面积(㎡)',
|
||||
align: 'center',
|
||||
dataIndex: 'orgBuildingArea',
|
||||
width: 120,
|
||||
|
|
|
|||
|
|
@ -195,16 +195,16 @@
|
|||
{{formData.auditTime}}
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<!-- <a-col :span="12" v-if="formData.auditBy">
|
||||
<a-form-item label="驳回原因" v-bind="validateInfos.content" id="OrgApplyInfoForm-content">
|
||||
{{formData.content}}
|
||||
</a-form-item>
|
||||
</a-col> -->
|
||||
<a-col :span="12" v-show="formData.contract">
|
||||
<a-form-item label="加盟合同" v-bind="validateInfos.contract" id="OrgApplyInfoForm-contract">
|
||||
<JUpload v-model:value="formData.contract" :maxCount="1" :buttonVisible="false" disabled="true" fileType="pdf"></JUpload>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12" v-if="formData.contractNote">
|
||||
<a-form-item label="备注信息" v-bind="validateInfos.contractNote" id="OrgApplyInfoForm-contractNote">
|
||||
{{formData.contractNote}}
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row v-show="formData.workOrderStatus != '0'">
|
||||
<a-col :span="24">
|
||||
|
|
|
|||
|
|
@ -25,19 +25,19 @@
|
|||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-form-item label="机构负责人电话" v-bind="validateInfos.orgLeaderPhone" id="OrgApplyInfoForm-orgLeaderPhone"
|
||||
<a-form-item label="负责人电话" v-bind="validateInfos.orgLeaderPhone" id="OrgApplyInfoForm-orgLeaderPhone"
|
||||
name="orgLeaderPhone">
|
||||
{{ formData.orgLeaderPhone }}
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-form-item label="机构房屋性质" v-bind="validateInfos.orgPropertyType" id="OrgApplyInfoForm-orgPropertyType"
|
||||
<a-form-item label="房屋性质" v-bind="validateInfos.orgPropertyType" id="OrgApplyInfoForm-orgPropertyType"
|
||||
name="orgPropertyType">
|
||||
{{ formData.orgPropertyType }}
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-form-item label="机构建筑面积" v-bind="validateInfos.orgBuildingArea" id="OrgApplyInfoForm-orgBuildingArea"
|
||||
<a-form-item label="建筑面积" v-bind="validateInfos.orgBuildingArea" id="OrgApplyInfoForm-orgBuildingArea"
|
||||
name="orgBuildingArea">
|
||||
{{ formData.orgBuildingArea }}㎡
|
||||
</a-form-item>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
class="query-group-cust" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :lg="6">
|
||||
<!-- <a-col :lg="6">
|
||||
<a-form-item name="status">
|
||||
<template #label><span title="审核意见">审核意见</span></template>
|
||||
<a-select v-model:value="queryParam.status" style="width: 200px" placeholder="请选择审核意见">
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
<a-select-option value="5">审核驳回</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-col> -->
|
||||
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
||||
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
||||
<a-col :lg="6">
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<a-row>
|
||||
<a-col :span="24" style="padding-top: 10px;padding-left: 30px;padding-right: 30px;">
|
||||
<a-table :dataSource="filteredTableData" :columns="columns" :pagination="false" bordered size="small"
|
||||
:scroll="{ y: '45vh' }" :rowClassName="setRowClassName">
|
||||
:rowClassName="setRowClassName">
|
||||
<template #bodyCell="{ column, record }">
|
||||
<template v-if="column.dataIndex === 'd1'">
|
||||
<span>{{ applyObj[record.d1] }}</span>
|
||||
|
|
@ -41,6 +41,14 @@
|
|||
v-if="column.dataIndex === 'd3' && (record.d1 == 'orgProvince' || record.d1 == 'orgCity' || record.d1 == 'orgDistrict')">
|
||||
<span>{{ provinceOptions[record.d3] }}</span>
|
||||
</template>
|
||||
<template
|
||||
v-if="column.dataIndex === 'd2' && record.d1 == 'orgBuildingArea' ">
|
||||
<span>{{ record.d2 }}㎡</span>
|
||||
</template>
|
||||
<template
|
||||
v-if="column.dataIndex === 'd3' && record.d1 == 'orgBuildingArea' ">
|
||||
<span>{{ record.d3 }}㎡</span>
|
||||
</template>
|
||||
</template>
|
||||
</a-table>
|
||||
</a-col>
|
||||
|
|
|
|||
Loading…
Reference in New Issue