+
加载中
-
+
-

+
@@ -131,20 +130,24 @@ export default {
default: false,
},
},
- data() {
+ data () {
return {};
},
watch: {},
- mounted() {},
+ mounted () { },
- created() {},
+ created () { },
methods: {
- handleClickBtn(index, type) {
+ //点击某一行
+ handleClickRow (index) {
+ this.$emit("handleClickRow", index);
+ },
+ handleClickBtn (index, type) {
this.$emit("operate", index, type);
},
- handleClickPeople(item) {
+ handleClickPeople (item) {
this.$router.push({
path: `/main-shuju/visual-basicinfo-people/${item.uid}`,
});