console.log

This commit is contained in:
邓皓元 2019-01-03 14:57:01 +08:00
parent 98be21a0a6
commit 25ed038701
5 changed files with 0 additions and 7 deletions

View File

@ -116,14 +116,12 @@ function s2ab(s) {
export function export_table_to_excel(id) {
var theTable = document.getElementById(id);
console.log('a')
var oo = generateArray(theTable);
var ranges = oo[1];
/* original data */
var data = oo[0];
var ws_name = "SheetJS";
console.log(data);
var wb = new Workbook(),
ws = sheet_from_array_of_arrays(data);

View File

@ -114,7 +114,6 @@ export default {
this.scrollTop();
let data = this.searchDataHandle(this.params, { page }, this.other);
this.isShowLoading(true);
console.log(data);
service.get('api/exports', { params: data }).then(res => {
this.isShowLoading(false);
if (res.code == 0) {

View File

@ -25,7 +25,6 @@ export default {
watch: {
show(bool) {
this.my_show = bool;
console.log(this.isUpdate);
if (bool) {
if (this.data) {
for (let k in this.data) {

View File

@ -197,8 +197,6 @@ export default {
isUpdate,
data
};
console.log(this.editObj);
},
/**

View File

@ -149,7 +149,6 @@ export default {
* @return {[type]} [description]
*/
index(company_id = null) {
console.log(company_id);
if (company_id) {
this.params.company_id = company_id;
this.company = this.companies.find(item => {