手机端-标准入库流程-布局调整
This commit is contained in:
@@ -13,33 +13,34 @@
|
|||||||
v-if="reloadForm"
|
v-if="reloadForm"
|
||||||
ref="form"
|
ref="form"
|
||||||
:model="form"
|
:model="form"
|
||||||
class="label-input-form"
|
class="label-input-form phoneForm"
|
||||||
label-width="112px"
|
label-width="112px"
|
||||||
style="height: 100%;"
|
|
||||||
>
|
>
|
||||||
<div v-if="active === '1'">
|
<template v-if="active === '1'">
|
||||||
<ProcessTitle>
|
<div>
|
||||||
<template slot="title">基础信息</template>
|
<ProcessTitle>
|
||||||
</ProcessTitle>
|
<template slot="title">基础信息</template>
|
||||||
<Basic :form="form" :dict="dict" :disabled="disabled"></Basic>
|
</ProcessTitle>
|
||||||
<ProcessTitle>
|
<Basic :form="form" :dict="dict" :disabled="disabled"></Basic>
|
||||||
<template slot="title">实施日期</template>
|
<ProcessTitle>
|
||||||
</ProcessTitle>
|
<template slot="title">实施日期</template>
|
||||||
<ImplementationDate :form="form" :dict="dict" :disabled="disabled"></ImplementationDate>
|
</ProcessTitle>
|
||||||
<ProcessTitle>
|
<ImplementationDate :form="form" :dict="dict" :disabled="disabled"></ImplementationDate>
|
||||||
<template slot="title">文本信息</template>
|
<ProcessTitle>
|
||||||
</ProcessTitle>
|
<template slot="title">文本信息</template>
|
||||||
<TextInfo :form="form" :dict="dict" :disabled="disabled"></TextInfo>
|
</ProcessTitle>
|
||||||
<ProcessTitle>
|
<TextInfo :form="form" :dict="dict" :disabled="disabled"></TextInfo>
|
||||||
<template slot="title">适用范围</template>
|
<ProcessTitle>
|
||||||
</ProcessTitle>
|
<template slot="title">适用范围</template>
|
||||||
<Range :form="form" :dict="dict" :disabled="disabled"></Range>
|
</ProcessTitle>
|
||||||
<ProcessTitle>
|
<Range :form="form" :dict="dict" :disabled="disabled"></Range>
|
||||||
<template slot="title">关联信息</template>
|
<ProcessTitle>
|
||||||
</ProcessTitle>
|
<template slot="title">关联信息</template>
|
||||||
<RelatesInformation :form="form" :dict="dict" :disabled="disabled"></RelatesInformation>
|
</ProcessTitle>
|
||||||
|
<RelatesInformation :form="form" :dict="dict" :disabled="disabled"></RelatesInformation>
|
||||||
|
</div>
|
||||||
<ReceiptDescription v-model="form.commentText" title="审批意见"></ReceiptDescription>
|
<ReceiptDescription v-model="form.commentText" title="审批意见"></ReceiptDescription>
|
||||||
</div>
|
</template>
|
||||||
<template v-if="active === '3'">
|
<template v-if="active === '3'">
|
||||||
<PhoneHistortTable :prcNum="this.$route.query.prcNum"></PhoneHistortTable>
|
<PhoneHistortTable :prcNum="this.$route.query.prcNum"></PhoneHistortTable>
|
||||||
</template>
|
</template>
|
||||||
@@ -164,6 +165,12 @@ export default {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
.phoneForm {
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.phoneBox /deep/ .van-field__label {
|
.phoneBox /deep/ .van-field__label {
|
||||||
width: 112px !important;
|
width: 112px !important;
|
||||||
|
|||||||
@@ -13,33 +13,34 @@
|
|||||||
v-if="reloadForm"
|
v-if="reloadForm"
|
||||||
ref="form"
|
ref="form"
|
||||||
:model="form"
|
:model="form"
|
||||||
class="label-input-form"
|
class="label-input-form phoneForm"
|
||||||
label-width="112px"
|
label-width="112px"
|
||||||
style="height: 100%;"
|
|
||||||
>
|
>
|
||||||
<div v-if="active === '1'">
|
<template v-if="active === '1'">
|
||||||
<ProcessTitle>
|
<div>
|
||||||
<template slot="title">基础信息</template>
|
<ProcessTitle>
|
||||||
</ProcessTitle>
|
<template slot="title">基础信息</template>
|
||||||
<Basic :form="form" :dict="dict" :disabled="disabled"></Basic>
|
</ProcessTitle>
|
||||||
<ProcessTitle>
|
<Basic :form="form" :dict="dict" :disabled="disabled"></Basic>
|
||||||
<template slot="title">实施日期</template>
|
<ProcessTitle>
|
||||||
</ProcessTitle>
|
<template slot="title">实施日期</template>
|
||||||
<ImplementationDate :form="form" :dict="dict" :disabled="disabled"></ImplementationDate>
|
</ProcessTitle>
|
||||||
<ProcessTitle>
|
<ImplementationDate :form="form" :dict="dict" :disabled="disabled"></ImplementationDate>
|
||||||
<template slot="title">文本信息</template>
|
<ProcessTitle>
|
||||||
</ProcessTitle>
|
<template slot="title">文本信息</template>
|
||||||
<TextInfo :form="form" :dict="dict" :disabled="disabled"></TextInfo>
|
</ProcessTitle>
|
||||||
<ProcessTitle>
|
<TextInfo :form="form" :dict="dict" :disabled="disabled"></TextInfo>
|
||||||
<template slot="title">适用范围</template>
|
<ProcessTitle>
|
||||||
</ProcessTitle>
|
<template slot="title">适用范围</template>
|
||||||
<Range :form="form" :dict="dict" :disabled="disabled"></Range>
|
</ProcessTitle>
|
||||||
<ProcessTitle>
|
<Range :form="form" :dict="dict" :disabled="disabled"></Range>
|
||||||
<template slot="title">关联信息</template>
|
<ProcessTitle>
|
||||||
</ProcessTitle>
|
<template slot="title">关联信息</template>
|
||||||
<RelatesInformation :form="form" :dict="dict" :disabled="disabled"></RelatesInformation>
|
</ProcessTitle>
|
||||||
|
<RelatesInformation :form="form" :dict="dict" :disabled="disabled"></RelatesInformation>
|
||||||
|
</div>
|
||||||
<ReceiptDescription v-model="form.commentText" title="审批意见"></ReceiptDescription>
|
<ReceiptDescription v-model="form.commentText" title="审批意见"></ReceiptDescription>
|
||||||
</div>
|
</template>
|
||||||
<template v-if="active === '3'">
|
<template v-if="active === '3'">
|
||||||
<PhoneHistortTable :prcNum="this.$route.query.prcNum"></PhoneHistortTable>
|
<PhoneHistortTable :prcNum="this.$route.query.prcNum"></PhoneHistortTable>
|
||||||
</template>
|
</template>
|
||||||
@@ -170,6 +171,12 @@ export default {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
.phoneForm {
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.phoneBox /deep/ .van-field__label {
|
.phoneBox /deep/ .van-field__label {
|
||||||
width: 112px !important;
|
width: 112px !important;
|
||||||
|
|||||||
Reference in New Issue
Block a user