Commit 2aa7f570 authored by 沈翠玲's avatar 沈翠玲

隐藏分期生效时间

parent 1bef16c6
...@@ -160,18 +160,6 @@ ...@@ -160,18 +160,6 @@
/> />
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="24">
<el-form-item class="w-full" label="分期生效时间:" prop="code">
<el-date-picker
v-model="form.effectiveTime"
disabled
class="w-full"
format="YYYY-MM-DD HH:mm:ss"
value-format="YYYY-MM-DD HH:mm:ss"
type="datetime"
/>
</el-form-item>
</el-col>
<el-col :span="24"> <el-col :span="24">
<el-form-item class="w-full" label="附件" prop="code"> <el-form-item class="w-full" label="附件" prop="code">
<el-upload <el-upload
......
...@@ -87,17 +87,6 @@ ...@@ -87,17 +87,6 @@
/> />
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="24">
<el-form-item class="w-full" label="分期生效时间:" prop="code">
<el-date-picker
v-model="form.effectiveTime"
class="w-full"
format="YYYY-MM-DD HH:mm:ss"
value-format="YYYY-MM-DD HH:mm:ss"
type="datetime"
/>
</el-form-item>
</el-col>
<el-col :span="24"> <el-col :span="24">
<el-form-item class="w-full" label="附件" prop="code"> <el-form-item class="w-full" label="附件" prop="code">
<el-upload <el-upload
...@@ -214,8 +203,7 @@ ...@@ -214,8 +203,7 @@
totalRepayAmount: 0, totalRepayAmount: 0,
totalPeriod: 2, totalPeriod: 2,
applyDate: dayjs().format('YYYY-MM-DD HH:mm:ss'), applyDate: dayjs().format('YYYY-MM-DD HH:mm:ss'),
firstApplyDate: dayjs().format('YYYY-MM-DD'), firstApplyDate: dayjs().format('YYYY-MM-DD')
effectiveTime: dayjs().format('YYYY-MM-DD HH:mm:ss'),
}); });
const props = defineProps({ const props = defineProps({
mergerCase: String, mergerCase: String,
......
...@@ -121,24 +121,6 @@ ...@@ -121,24 +121,6 @@
}, },
}, },
}, },
{
field: 'readStatus',
title: '读取状态',
showOverflow: 'tooltip',
width: 100,
enum: ReadStatus,
search: { el: 'select', props: { filterable: true }, span: 1, labelWidth: 75 },
fieldNames: { label: 'label', value: 'value' },
slots: {
default: ({ row }) => {
return (
<ElTag type={row.readStatus == 'read' ? 'primary' : 'danger'}>
{row.readStatus == 'read' ? '已读' : '未读'}
</ElTag>
);
},
},
},
{ {
field: 'sendTime', field: 'sendTime',
showOverflow: 'tooltip', showOverflow: 'tooltip',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment