修改
This commit is contained in:
parent
d646764735
commit
d659517e22
@ -6,7 +6,9 @@ ENV = 'development'
|
|||||||
|
|
||||||
# 泉医到家运营管理平台/开发环境
|
# 泉医到家运营管理平台/开发环境
|
||||||
# VUE_APP_BASE_API = '/dev-api'
|
# VUE_APP_BASE_API = '/dev-api'
|
||||||
VUE_APP_BASE_API = 'http://192.168.16.49:8080'
|
VUE_APP_BASE_API = 'http://192.168.16.30:8088'
|
||||||
|
|
||||||
# 路由懒加载
|
# 路由懒加载
|
||||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -345,7 +345,7 @@
|
|||||||
></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-select
|
<el-select
|
||||||
v-model.number="scope.row.integralExchangeFlag"
|
v-model.number="scope.row.integralExchangeFlag"
|
||||||
@ -361,9 +361,10 @@
|
|||||||
</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"
|
||||||
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="积分兑换门槛值"
|
||||||
@ -371,9 +372,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"
|
||||||
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="积分兑换商品数量"
|
||||||
|
|||||||
@ -85,6 +85,7 @@ export default {
|
|||||||
label: "是",
|
label: "是",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
value:"",
|
||||||
// 查询参数
|
// 查询参数
|
||||||
shangjia: {
|
shangjia: {
|
||||||
id: null,
|
id: null,
|
||||||
|
|||||||
@ -666,7 +666,7 @@ export default {
|
|||||||
},
|
},
|
||||||
imgUrl(imgUrl) {
|
imgUrl(imgUrl) {
|
||||||
console.log(this.form)
|
console.log(this.form)
|
||||||
this.$set(this.form,"groupQrCodeInfoDTOList",[])
|
// this.$set(this.form,"groupQrCodeInfoDTOList",[])
|
||||||
this.form.groupQrCodeInfoDTOList.forEach((e) => {
|
this.form.groupQrCodeInfoDTOList.forEach((e) => {
|
||||||
this.$set(e, "groupQrCodeUrl", imgUrl);
|
this.$set(e, "groupQrCodeUrl", imgUrl);
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user