@@ -172,7 +172,6 @@ export default {
})
return
}
- // console.log(job_ids)
/**
* 更新
/api/group/update
@@ -188,7 +187,6 @@ export default {
job_ids,
if(this.isEdit) body.id = this.detailID
- // console.log(body)
let res = await this.$post(`/api/group/${this.isEdit ? 'update' : 'create'}`, body)
if(res) {
this.$message({
@@ -79,9 +79,6 @@ export default {
computed: {
conditions() {
let conditions = this.detail.conditions
- console.log(Object.keys(conditions).map(key => ({
- [key]: conditions[key]
- })))
return Object.keys(conditions).map(key => conditions[key])
},
userinfo() {
@@ -92,8 +89,6 @@ export default {
mounted() {
- // let { isPC, isWeixin } = this.$store.state
- // console.log({ isPC, isWeixin })
methods: {
clickVipPrice() {
@@ -81,7 +81,6 @@ export default {
async getList() {
let res = await this.$post(`/api/group/list`, { page: this.currentPage, page_size: this.pageSize })
- console.log(res)
this.list = res.data.list
this.pageTotal = res.data.total
@@ -95,7 +94,6 @@ export default {
*/
async getUserStatus() {
let res = await this.$post(`/api/user/update_info`)
@@ -81,8 +81,6 @@ const request = async (method, path, data, payload = {}) => {
const consoleFormat = obj => {
const key = Object.keys(obj)[0]
- console.log(key + ':')
- console.dir(obj[key])
Vue.prototype.$get = get