系统催款bug修改
This commit is contained in:
@@ -25,27 +25,29 @@
|
||||
|
||||
<!-- 每年一次(月日)-->
|
||||
<div class="m-d">
|
||||
<!-- 月-->
|
||||
<template v-if="selectDeptFrequency === '2'">
|
||||
<a-select
|
||||
class="select-month"
|
||||
placeholder="请选择月"
|
||||
allowClear
|
||||
v-decorator="['deptMonth', validatorRules.deptMonth]"
|
||||
:options="monthOptions">
|
||||
</a-select>
|
||||
</template>
|
||||
|
||||
<!-- 日-->
|
||||
<template v-if="selectDeptFrequency === '2' || selectDeptFrequency === '3'">
|
||||
<a-select
|
||||
style="width: calc(50% - 8px)"
|
||||
placeholder="请选择日"
|
||||
allowClear
|
||||
v-decorator="['deptDay', validatorRules.deptDay]"
|
||||
:options="dayOptions">
|
||||
</a-select>
|
||||
</template>
|
||||
<a-row :gutter="12">
|
||||
<a-col :span="12">
|
||||
<!-- 月-->
|
||||
<template v-if="selectDeptFrequency === '2'">
|
||||
<a-select
|
||||
placeholder="请选择月"
|
||||
allowClear
|
||||
v-decorator="['deptMonth', validatorRules.deptMonth]"
|
||||
:options="monthOptions">
|
||||
</a-select>
|
||||
</template>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-form-item v-if="selectDeptFrequency === '2' || selectDeptFrequency === '3'">
|
||||
<a-select
|
||||
placeholder="请选择日"
|
||||
allowClear
|
||||
v-decorator="['deptDay', validatorRules.deptDay]"
|
||||
:options="dayOptions">
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</div>
|
||||
</a-form-item>
|
||||
<a-form-item class="btn-form">
|
||||
@@ -85,7 +87,7 @@ export default {
|
||||
rules: [{ required: true, message: '请选择频率' }],
|
||||
validateTrigger: 'change'
|
||||
},
|
||||
deptTime: {
|
||||
time: {
|
||||
rules: [{ required: true, message: '请选择催款时间' }],
|
||||
validateTrigger: 'change'
|
||||
},
|
||||
@@ -293,11 +295,6 @@ export default {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
.select-month {
|
||||
margin-right: 16px;
|
||||
width: calc(50% - 8px);
|
||||
}
|
||||
|
||||
.btn-form {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
Reference in New Issue
Block a user