Jay
2024-09-24 67ea852973d664ab98c128412f7528e13038f34b
src/views/model/pre/predict/index.vue
@@ -39,7 +39,7 @@
          type="primary"
          plain
          @click="openForm('create')"
          v-hasPermi="['system:tenant:create']"
          v-hasPermi="['model:pre-predict:create']"
        >
          <Icon icon="ep:plus" class="mr-5px" />
          新增
@@ -73,7 +73,7 @@
            link
            type="primary"
            @click="openForm('update', scope.row.id)"
            v-hasPermi="['system:tenant:update']"
            v-hasPermi="['model:pre-predict:update']"
          >
            编辑
          </el-button>
@@ -81,7 +81,7 @@
            link
            type="danger"
            @click="handleDelete(scope.row.id)"
            v-hasPermi="['system:tenant:delete']"
            v-hasPermi="['model:pre-predict:delete']"
          >
            删除
          </el-button>
@@ -103,7 +103,7 @@
</template>
<script lang="ts" setup>
import MmPredictItemForm from './MmPredictItemForm.vue'
import * as MmPredictItem from '@/api/model/pre/dm'
import * as MmPredictItem from '@/api/model/pre/predict'
defineOptions({name: 'DataMmPredictItem'})