''
liukangdong
2024-05-20 3c403cfa2a03e3ec6d3b0e4ccb9a38c552e16d0d
admin/src/views/business/visitOrigin.vue
@@ -25,7 +25,7 @@
          <el-button
            type="text"
            icon="el-icon-delete"
            @click="handleDetail(row)"
            @click="handleDel(row)"
            class="red"
            >删除</el-button
          >
@@ -66,7 +66,7 @@
  components: {
    Pagination
  },
  data() {
  data () {
    return {
      loading: false,
      pagination: {
@@ -82,19 +82,28 @@
    }
  },
  methods: {
    handleSub() {
    handleSub () {
      this.$refs.ruleForm.validate((valid) => {
        if (valid) {
          alert('submit!')
        }
      })
    },
    handleEdit() {
    handleEdit (row) {
      this.isShowEdit = true
    },
    getList(page) { },
    clear() { },
    handleSizeChange(capacity) {
    handleDel (row) {
      this.$confirm('确认删除拜访事由', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(() => {
      })
    },
    getList (page) { },
    clear () { },
    handleSizeChange (capacity) {
      this.pagination.capacity = capacity
    }
  }