This commit is contained in:
闫晓茹 2023-03-01 11:02:59 +08:00
parent d659517e22
commit a06efe45be
2 changed files with 5 additions and 3 deletions

View File

@ -83,7 +83,7 @@
>删除</el-button >删除</el-button
> >
</el-col> </el-col>
<el-col :span="1.5"> <!-- <el-col :span="1.5">
<el-button <el-button
type="warning" type="warning"
plain plain
@ -93,7 +93,7 @@
v-hasPermi="['system:certificate:export']" v-hasPermi="['system:certificate:export']"
>导出</el-button >导出</el-button
> >
</el-col> </el-col> -->
<right-toolbar <right-toolbar
:showSearch.sync="showSearch" :showSearch.sync="showSearch"
@queryTable="getList" @queryTable="getList"

View File

@ -263,7 +263,7 @@
<el-form-item label="优惠券有效期(天)" prop="couponReductionDays"> <el-form-item label="优惠券有效期(天)" prop="couponReductionDays">
<el-input <el-input
maxlength="5" maxlength="5"
oninput="value=value.replace(/[^\d]/g,'')"
v-model="form.couponReductionDays" v-model="form.couponReductionDays"
placeholder="请输入优惠券有效期,单位:天" placeholder="请输入优惠券有效期,单位:天"
style="width: 220px" style="width: 220px"
@ -274,6 +274,7 @@
@input.native="changeInput($event)" @input.native="changeInput($event)"
v-model="form.couponPrice" v-model="form.couponPrice"
maxlength="8" maxlength="8"
oninput="value=value.replace(/[^\d]/g,'')"
placeholder="请输入优惠券面额,单位:元" placeholder="请输入优惠券面额,单位:元"
style="width: 220px" style="width: 220px"
/> />
@ -282,6 +283,7 @@
<el-input <el-input
@input.native="changeInput($event)" @input.native="changeInput($event)"
maxlength="8" maxlength="8"
oninput="value=value.replace(/[^\d]/g,'')"
v-model="form.couponConsumePrice" v-model="form.couponConsumePrice"
placeholder="请输入优惠券适用门槛" placeholder="请输入优惠券适用门槛"
style="width: 220px" style="width: 220px"