0.0.1版本
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<div class="mt-2">页面未找到,请返回</div>
|
||||
</div>
|
||||
<div class="mt-5">
|
||||
<a-button type="primary" @click="$router.push({ name: 'Workplace' })">返回第一个有权限页面</a-button>
|
||||
<a-button type="primary" @click="$router.push({ name: 'workplace' })">返回第一个有权限页面</a-button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -87,13 +87,13 @@
|
||||
</a-space>
|
||||
</a-doption>
|
||||
<a-doption>
|
||||
<a-space @click="$router.push({ name: 'Usercenter' })">
|
||||
<a-space @click="$router.push({ name: 'usercenter' })">
|
||||
<icon-user />
|
||||
<span> 用户中心 </span>
|
||||
</a-space>
|
||||
</a-doption>
|
||||
<a-doption>
|
||||
<a-space @click="$router.push({ name: 'Usercenter' })">
|
||||
<a-space @click="$router.push({ name: 'usercenter' })">
|
||||
<icon-settings />
|
||||
<span> 用户设置 </span>
|
||||
</a-space>
|
||||
@@ -169,7 +169,7 @@ const handleLogout = () => {
|
||||
const toggleDrawerMenu = inject("toggleDrawerMenu")
|
||||
// 点击图标返回首页
|
||||
const handleClickLogo = () => {
|
||||
router.push({ name: "Workplace" })
|
||||
router.push({ name: "workplace" })
|
||||
}
|
||||
|
||||
// 测试生成文档-测试项和方法
|
||||
|
||||
@@ -310,7 +310,7 @@ const handleCopyNode = async () => {
|
||||
/// 进度条变量
|
||||
const visible = ref(false)
|
||||
const isComplete = ref(false)
|
||||
const ptext = ref("第二轮数据")
|
||||
const ptext = ref("轮次数据")
|
||||
const handleModalConfirmClick = () => {
|
||||
visible.value = false
|
||||
}
|
||||
@@ -367,7 +367,7 @@ const handleSoDutSubmit = async (data) => {
|
||||
// ~~~~定义弹出a-form-modal的cancel方法-返回false则无法关闭弹窗~~~~
|
||||
const handleSoDutCancel = () => {
|
||||
Notification.error("必须按要求添加源代码信息,返回项目列表页面!")
|
||||
router.replace({ name: "Projmanage" })
|
||||
router.replace({ name: "projmanage" })
|
||||
}
|
||||
// 初始化树状数据
|
||||
// so_dut弹窗ref对象
|
||||
@@ -766,7 +766,8 @@ const soDutColumn = ref([
|
||||
title: "代码版本",
|
||||
dataIndex: "version",
|
||||
placeholder: "请输入代码版本,注意不要带V",
|
||||
rules: [{ required: true, message: "代码版本必填" }]
|
||||
rules: [{ required: true, message: "代码版本必填" }],
|
||||
openPrepend: true
|
||||
},
|
||||
{
|
||||
title: "用户标识",
|
||||
|
||||
Reference in New Issue
Block a user