fix: 增加积分配置1元至少等于1积分,修复跳转到广告页面后其他页面全部为空,调整crud表单样式兼容问题
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<!-- 广告模块 -->
|
||||
<div style="padding: 15px;">
|
||||
<div style="padding: 15px">
|
||||
<!-- 广告模块 -->
|
||||
<!-- 搜索 -->
|
||||
<Search></Search>
|
||||
<!-- 表格 -->
|
||||
@@ -8,6 +8,6 @@
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import Search from './indexconfig/Search.vue'
|
||||
import Content from './indexconfig/Content.vue'
|
||||
import Search from "./indexconfig/Search.vue";
|
||||
import Content from "./indexconfig/Content.vue";
|
||||
</script>
|
||||
@@ -43,10 +43,15 @@
|
||||
</el-form-item>
|
||||
<el-form-item label="下单抵扣积分比例">
|
||||
<el-col :span="7">
|
||||
<el-input v-model="Elform.equivalentPoints" type="number" placeholder="">
|
||||
<template #prepend>1元等于</template>
|
||||
<template #append>积分</template>
|
||||
</el-input>
|
||||
<span class="color-999">1元等于</span>
|
||||
<el-input-number
|
||||
class="u-m-l-10 u-m-r-10"
|
||||
v-model="Elform.equivalentPoints"
|
||||
type="number"
|
||||
placeholder=""
|
||||
min="1"
|
||||
></el-input-number>
|
||||
<span class="color-999">积分</span>
|
||||
</el-col>
|
||||
</el-form-item>
|
||||
<el-form-item label="开启积分商城">
|
||||
|
||||
Reference in New Issue
Block a user