-
-
+
+
+
+
+
+
+
+
+
+
+
{{ $t('query') }}
@@ -20,14 +33,14 @@
width="50"
label="序号" align="center">
-
+
- {{ $t('update') }}
- {{ $t('delete') }}
+ {{ $t('update') }}
+ {{ $t('delete') }}
@@ -61,11 +74,23 @@ export default {
},
dataForm: {
id: ''
- }
+ },
+ teamTypeList:[]
}
},
components: {
AddOrUpdate
+ },
+ created: function () {
+ this.getTeamTypeList()
+ },
+ methods: {
+ getTeamTypeList() {
+ this.$http.get(`heart/volunteerteamtype/getTeamTypeList`).then(({data: res}) => {
+ this.teamTypeList = res.data
+ }).catch(() => {
+ })
+ },
}
}