This commit is contained in:
刘仕伟
2022-03-02 10:52:34 +08:00
6 changed files with 6 additions and 29 deletions

View File

@@ -23,7 +23,7 @@
type="date"
size="small"
unlink-panels
placeholder="选择开始日期"
placeholder="选择发布开始日期"
@change="search.current = 1, getList()" />
<el-date-picker
value-format="yyyy-MM-dd"
@@ -31,7 +31,7 @@
type="date"
size="small"
unlink-panels
placeholder="选择结束日期"
placeholder="选择发布结束日期"
@change="search.current = 1, getList()" />
</template>
<template #right>

View File

@@ -7,8 +7,7 @@
</template>
</ai-title>
<template #content>
<el-alert show-icon v-if="!detail.id" type="error" title="该产品已下架" center/>
<el-form v-else size="small" label-width="120px">
<el-form v-if="detail.id" size="small" label-width="120px">
<ai-card title="基本信息">
<template #content>
<el-row type="flex" class="flexWrap">

View File

@@ -86,7 +86,7 @@
</el-form-item>
</template>
<el-form-item v-else-if="form.auditStatus==2" label="审批意见" prop="remark">
<el-input type="textarea" v-model="form.auditDescription" placeholder="请输入"/>
<el-input type="textarea" v-model="form.auditDescription" placeholder="请输入" maxlength="200" show-word-limit/>
</el-form-item>
</el-form>
</ai-dialog>
@@ -125,6 +125,7 @@ export default {
],
auditLifespan: [{required: true, message: "请选择 使用期限"}],
loanDate: [{required: true, message: "请选择 放款日期"}],
remark: [{required: true, message: "请输入 审批意见"}],
}
}
},

View File

@@ -2,7 +2,7 @@
<section class="grabDetail">
<ai-detail>
<ai-title slot="title" title="融资详情" isShowBottomBorder isShowBack @onBackClick="back">
<template v-if="isFinanceUser&&detail.status==0" #rightBtn>
<template v-if="isFinanceUser&&detail.status==1" #rightBtn>
<el-button type="danger" @click="handleCancel">回退订单</el-button>
<el-button type="primary" @click="dialog=true">放款</el-button>
</template>