lilu 2 years ago
parent 6f49c24979
commit 80fb2dbc2e

@ -255,7 +255,6 @@
}) })
}, },
handleClick (e) { handleClick (e) {
debugger;
this.queryParam = { this.queryParam = {
orgId: e.toString() orgId: e.toString()
} }

@ -393,14 +393,12 @@ export default {
}, },
init() { init() {
Object.assign(this.$data, this.$options.data()) Object.assign(this.$data, this.$options.data())
debugger
columns.forEach(item => { columns.forEach(item => {
item.checked = true item.checked = true
}) })
columns.forEach(item => { columns.forEach(item => {
this.ColumnsQuery.push({ ...item, checked: true }) this.ColumnsQuery.push({ ...item, checked: true })
}) })
debugger
DjyCustomerGet({ type: 'customer_column_config' }).then(res => { DjyCustomerGet({ type: 'customer_column_config' }).then(res => {
if (res.data && JSON.parse(res.data.configJson).length) { if (res.data && JSON.parse(res.data.configJson).length) {
columns.forEach(item => { columns.forEach(item => {

@ -977,7 +977,6 @@ export default {
}, },
printOk(e) { printOk(e) {
console.log(e) console.log(e)
debugger
const { columns, parameter, type } = e const { columns, parameter, type } = e
if (type === 'all') { if (type === 'all') {
this.$refs.xGrid.print({ this.$refs.xGrid.print({

@ -137,7 +137,6 @@ export default {
if (!err) { if (!err) {
console.log('Received values of form: ', values) console.log('Received values of form: ', values)
const data = { ...{ columns: res }, ...values } const data = { ...{ columns: res }, ...values }
debugger
setTimeout(() => { setTimeout(() => {
this.$emit('ok', data) this.$emit('ok', data)
this.handleCancel() this.handleCancel()
@ -171,17 +170,14 @@ export default {
// or, you can remove all expanded children keys. // or, you can remove all expanded children keys.
this.expandedKeys = expandedKeys this.expandedKeys = expandedKeys
this.autoExpandParent = false this.autoExpandParent = false
debugger
}, },
onCheck(checkedKeys) { onCheck(checkedKeys) {
console.log('onCheck', checkedKeys) console.log('onCheck', checkedKeys)
this.checkedKeys = checkedKeys this.checkedKeys = checkedKeys
debugger
}, },
onSelect(selectedKeys, info) { onSelect(selectedKeys, info) {
console.log('onSelect', info) console.log('onSelect', info)
this.selectedKeys = selectedKeys this.selectedKeys = selectedKeys
debugger
}, },
onCheckAllChange() { onCheckAllChange() {
console.log('== 全选 ==') console.log('== 全选 ==')

Loading…
Cancel
Save