Commit 391779c9 by huaying

fix: log

parent 6a3eecd3
......@@ -190,12 +190,12 @@ export default {
/** 人群筛选器 */
// 获取需要回显的数据, 供保存时候使用
getBackData (val) {
console.log(val);
// console.log(val);
this.ruleForm.searchJson = val;
},
// 子组件触发父组件事件,返回过滤条件数据
findFilter (val) {
console.log(val);
// console.log(val);
this.ruleForm.filterJson = val;
},
getDatail (integralMallProRuleId) {
......@@ -239,7 +239,7 @@ export default {
} else {
data = this.ruleForm;
}
console.log(data);
// console.log(data);
this.btnLoading = true;
this.$emit('btnLoading');
request.post('/api-integral-mall/add-update-rule', data).then(res => {
......@@ -309,7 +309,7 @@ export default {
},
memberTypeNum () {
Promise.all([request.get('/api-integral-mall/list-rule', { params: { memberType: 3 } }), request.get('/api-integral-mall/list-rule', { params: { memberType: 2 } })]).then(res => {
console.log(res);
// console.log(res);
const total1 = res[0].data.result ? res[0].data.result.length : 0;
const total2 = res[1].data.result ? res[1].data.result.length : 0;
this.memberTypeTotal = total1 + total2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment