| | |
| | | type="primary" |
| | | plain |
| | | @click="openForm('create')" |
| | | v-hasPermi="['system:tenant:create']" |
| | | v-hasPermi="['model:pre-predict:create']" |
| | | > |
| | | <Icon icon="ep:plus" class="mr-5px" /> |
| | | 新增 |
| | |
| | | link |
| | | type="primary" |
| | | @click="openForm('update', scope.row.id)" |
| | | v-hasPermi="['system:tenant:update']" |
| | | v-hasPermi="['model:pre-predict:update']" |
| | | > |
| | | 编辑 |
| | | </el-button> |
| | |
| | | link |
| | | type="danger" |
| | | @click="handleDelete(scope.row.id)" |
| | | v-hasPermi="['system:tenant:delete']" |
| | | v-hasPermi="['model:pre-predict:delete']" |
| | | > |
| | | 删除 |
| | | </el-button> |
| | |
| | | </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'}) |
| | | |