diff --git a/src/components/XdTable/index.vue b/src/components/XdTable/index.vue
index cd19c764..f830957b 100644
--- a/src/components/XdTable/index.vue
+++ b/src/components/XdTable/index.vue
@@ -221,36 +221,36 @@ export default {
this.isDragging = false
},
//右键点击事件
- onRightClick(row, column, event) {
- console.log(arguments);
- var menu = document.querySelector("#rightMenu");
- event.preventDefault();
- //获取我们自定义的右键菜单
+ // onRightClick(row, column, event) {
+ // console.log(arguments);
+ // var menu = document.querySelector("#rightMenu");
+ // event.preventDefault();
+ // //获取我们自定义的右键菜单
- // 根据事件对象中鼠标点击的位置,进行定位
- menu.style.left = event.clientX + "px";
- menu.style.top = event.clientY + "px";
- // 改变自定义菜单的隐藏与显示
- menu.style.display = "block";
- console.log(row, column);
- // 获取当前右键点击table下标
- // this.tableData.forEach((item, index) => {
- // if (item.bugid === row.bugid) {
- // //这里判断相等的条件可以自己改为该行数据的唯一键
- // this.currentRowIndex = index;
- // return false;
- // }
- // });
- // this.setCurrent(row);
- },
+ // // 根据事件对象中鼠标点击的位置,进行定位
+ // menu.style.left = event.clientX + "px";
+ // menu.style.top = event.clientY + "px";
+ // // 改变自定义菜单的隐藏与显示
+ // menu.style.display = "block";
+ // console.log(row, column);
+ // // 获取当前右键点击table下标
+ // // this.tableData.forEach((item, index) => {
+ // // if (item.bugid === row.bugid) {
+ // // //这里判断相等的条件可以自己改为该行数据的唯一键
+ // // this.currentRowIndex = index;
+ // // return false;
+ // // }
+ // // });
+ // // this.setCurrent(row);
+ // },
- onCellClick(row, column, cell, event) {
- console.log(row);
- console.log(column);
- console.log(cell);
- console.log(event);
- cell.classList.add("blue-cell")
- },
+ // onCellClick(row, column, cell, event) {
+ // console.log(row);
+ // console.log(column);
+ // console.log(cell);
+ // console.log(event);
+ // cell.classList.add("blue-cell")
+ // },
// 动态列渲染表格时,需要在列渲染完成后重新渲染一下表格
reload() {
diff --git a/src/views/emis/EmisBaseTools/CountryPicker.vue b/src/views/emis/EmisBaseTools/CountryPicker.vue
index cc4345d2..7cfd9037 100644
--- a/src/views/emis/EmisBaseTools/CountryPicker.vue
+++ b/src/views/emis/EmisBaseTools/CountryPicker.vue
@@ -1,6 +1,6 @@
+