标签管理

This commit is contained in:
caoyang
2022-03-07 15:21:51 +08:00
parent e22408e5e3
commit f2857c1a1d
3 changed files with 441 additions and 0 deletions
@@ -0,0 +1,91 @@
<template>
<div class="process-detail">
<processForm :title="title" :formData="formData" :data="data"></processForm>
</div>
</template>
<script>
import processForm from '@/components/processForm/index'
export default {
name: 'detail',
components:{
processForm
},
data(){
return{
title:'工程接口人确认符合性要求',
formData:[
{
项目信息:
[
{
area: "项目信息",
name: '项目名称',
value: "Orion-G1.1"
},
{
area: "项目信息",
name: '目标市场',
value: "中国"
},
{
area: "项目信息",
name: '项目状态',
value: "在研"
},
{
area: "项目信息",
name: 'Studio工程师',
value: "李四"
}
],
},
{
标准内容:
[
{
area: "标准内容",
name: 'WVTA ID',
value: "字段占位符"
},
{
area: "标准内容",
name: 'WVTA ID',
value: "字段占位符"
},
{
area: "标准内容",
name: 'WVTA ID',
value: "字段占位符"
},
{
area: "标准内容",
name: 'WVTA ID',
value: "字段占位符"
}
]
}
],
data:[
{
name:'李四',
role:'法规工程师',
content:'设置交付物类型为测试报告',
time:'2019-12-31 14:00:00'
},
{
name:'李五',
role:'法规工程师',
content:'设置交付物类型为测试报告',
time:'2019-12-31 14:00:00'
}
]
}
},
}
</script>
<style scoped>
</style>
@@ -0,0 +1,32 @@
<template>
<div class="process">
<a-button @click="routeTo">测试表单</a-button>
</div>
</template>
<script>
export default {
name: 'process',
data(){
return{
}
},
methods:{
routeTo(){
let newUrl = this.$router.resolve({
path: '/docManage/form/detail',
query: {}
})
window.open(newUrl.href, "_blank");
}
}
}
</script>
<style scoped>
</style>