xiangpei
2024-05-16 9a64cd50822ea7f82fa3e4fb98626fc2a0edc5a6
src/views/onlineStudy/type.vue
File was renamed from src/views/onlineStudy/video/type.vue
@@ -69,7 +69,7 @@
</template>
<script>
import VideoTypeAPI from '@/api/video-type'
import StudyTypeAPI from '@/api/study-type'
export default {
  name: 'type',
  data () {
@@ -98,7 +98,7 @@
  },
  methods: {
    remove (id) {
      VideoTypeAPI.remove(id).then(res => {
      StudyTypeAPI.remove(id).then(res => {
        if (res.code === 1) {
          this.$message.success('删除成功')
        }
@@ -111,7 +111,7 @@
      this.$refs['form'].validate((valid) => {
        if (valid) {
          if (this.form.id) {
            VideoTypeAPI.update(this.form).then(res => {
            StudyTypeAPI.update(this.form).then(res => {
              if (res.code === 1) {
                this.$message.success('修改成功')
                this.open = false
@@ -119,7 +119,7 @@
              }
            })
          } else {
            VideoTypeAPI.add(this.form).then(res => {
            StudyTypeAPI.add(this.form).then(res => {
              if (res.code === 1) {
                this.$message.success('添加成功')
                this.open = false
@@ -138,7 +138,7 @@
      this.open = true
    },
    page () {
      VideoTypeAPI.page(this.searchForm).then(res => {
      StudyTypeAPI.page(this.searchForm).then(res => {
        if (res.code === 1) {
          this.tableData = res.response
        }