@@ -7,7 +7,7 @@ | |||
</search-operation> | |||
<!-- CRUD组件 --> | |||
<crud-operation style="margin-top:10px" @add="add" @edit="edit" @remove="remove" @refresh="refresh" | |||
<crud-operation v-if="false" style="margin-top:10px" @add="add" @edit="edit" @remove="remove" @refresh="refresh" | |||
@search="search" :DEdit="EStart" :DDelete="DStart" :SSearch="SSearch"> | |||
</crud-operation> | |||
@@ -97,7 +97,13 @@ | |||
tableData: { //表单数据 | |||
type: Array, | |||
default: function () { | |||
return [] | |||
return [{ | |||
name: '测试数据' | |||
}, { | |||
name: '测试数据' | |||
}, { | |||
name: '测试数据' | |||
}] | |||
} | |||
} | |||
}) |
@@ -75,7 +75,7 @@ export const list = [ | |||
children: [] | |||
}, { | |||
title: '卡签注销', | |||
path: 'home', | |||
path: 'TABActivate', | |||
children: [] | |||
}] | |||
}, { |
@@ -25,7 +25,7 @@ | |||
<template #reference> | |||
<!-- 头像 --> | |||
<div style="margin-left: 20px"> | |||
<el-avatar @click="visible = !visible" shape="square" :size="40" :src="ImgHead" /> | |||
<el-avatar @click="visible = !visible" shape="square" :size="40" src="/logo2.png" /> | |||
</div> | |||
</template> | |||
</el-popover> |
@@ -33,9 +33,6 @@ | |||
reactive, | |||
ref | |||
} from 'vue' | |||
import { | |||
FormInstance | |||
} from 'element-plus' | |||
import { | |||
useRoute, | |||
useRouter | |||
@@ -53,7 +50,7 @@ | |||
//引入滑块组件 | |||
import SlidingBlockVerifyTwo from '@/components/SlidingBlockVerifyTwo/SlidingBlockVerifyTwo.vue' | |||
const form = ref < FormInstance > () | |||
const form = ref() | |||
const router = useRouter() | |||
const bgVideo = bgTwo | |||
const verify = ref(false) |