This commit is contained in:
闫晓茹 2023-03-06 11:16:09 +08:00
parent 07e7e28bf5
commit c84041893f
2 changed files with 8 additions and 8 deletions

View File

@ -362,24 +362,24 @@
</el-select> </el-select>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="积分兑换数值" align="center" > <el-table-column label="使用积分数量" align="center" >
<template slot-scope="scope"> <template slot-scope="scope">
<el-input <el-input
:disabled="!scope.row.integralExchangeFlag?true:false" :disabled="!scope.row.integralExchangeFlag?true:false"
v-model.number="scope.row.integralExchangeSill" v-model.number="scope.row.integralExchangeSill"
oninput="value=value.replace(/[^\d]/g,'')" oninput="value=value.replace(/[^\d]/g,'')"
placeholder="积分兑换数值" placeholder="使用积分数量"
maxLength="10" maxLength="10"
></el-input> ></el-input>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="使用积分数量" align="center" > <el-table-column label="积分兑换商品数量" align="center" >
<template slot-scope="scope"> <template slot-scope="scope">
<el-input <el-input
:disabled="!scope.row.integralExchangeFlag?true:false" :disabled="!scope.row.integralExchangeFlag?true:false"
v-model.number="scope.row.integralExchangeCount" v-model.number="scope.row.integralExchangeCount"
oninput="value=value.replace(/[^\d]/g,'')" oninput="value=value.replace(/[^\d]/g,'')"
placeholder="使用积分数量" placeholder="积分兑换商品数量"
maxLength="10" maxLength="10"
></el-input> ></el-input>
</template> </template>

View File

@ -586,15 +586,15 @@ export default {
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const ids = row.id || this.ids; const settingsNames = row.settingsName || this.settingsNames;
this.$modal this.$modal
.confirm( .confirm(
'是否确认删除泉医到家平台系统业务设置信息编号为"' + '是否确认删除规则名称为"' +
ids + settingsNames +
'"的数据项?' '"的数据项?'
) )
.then(function () { .then(function () {
return delSettings(ids); return delSettings(settingsNames);
}) })
.then(() => { .then(() => {
this.getList(); this.getList();