[add] 认证参数收集
This commit is contained in:
@@ -49,15 +49,20 @@
|
||||
</span>
|
||||
</a-table>
|
||||
</div>
|
||||
<a-modal v-model="areaVisible">
|
||||
<parameter-template v-if='areaVisible'></parameter-template>
|
||||
</a-modal>
|
||||
</a-card>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ImportFile from '@/components/ImportFile/index'
|
||||
import ParameterTemplate from '../dialog/ParameterTemplate'
|
||||
export default {
|
||||
name: 'TaskParameterCollection',
|
||||
components:{
|
||||
ImportFile
|
||||
ImportFile,
|
||||
ParameterTemplate
|
||||
},
|
||||
data(){
|
||||
return{
|
||||
@@ -70,7 +75,7 @@
|
||||
{
|
||||
title: this.$t('status'),
|
||||
align: 'center',
|
||||
dataIndex: 'status',
|
||||
dataIndex: 'title',
|
||||
},
|
||||
{
|
||||
title: this.$t('parameterTemplateName'),
|
||||
@@ -80,22 +85,22 @@
|
||||
{
|
||||
title: this.$t('collectionCompletionTime'),
|
||||
align: 'center',
|
||||
dataIndex: 'status',
|
||||
dataIndex: 'title',
|
||||
},
|
||||
{
|
||||
title: this.$t('Version'),
|
||||
align: 'center',
|
||||
dataIndex: 'Version',
|
||||
dataIndex: 'title',
|
||||
},
|
||||
{
|
||||
title: this.$t('creator'),
|
||||
align: 'center',
|
||||
dataIndex: 'Version',
|
||||
dataIndex: 'title',
|
||||
},
|
||||
{
|
||||
title: this.$t('createTime'),
|
||||
align: 'center',
|
||||
dataIndex: 'Version',
|
||||
dataIndex: 'title',
|
||||
},
|
||||
{
|
||||
title: this.$t('operation'),
|
||||
@@ -109,7 +114,8 @@
|
||||
queryParam: {},
|
||||
url: {},
|
||||
loading: false,
|
||||
dataSource: []
|
||||
dataSource: [],
|
||||
areaVisible: false, // 弹框的控制
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
@@ -131,7 +137,7 @@
|
||||
|
||||
},
|
||||
handleAdd(){
|
||||
|
||||
this.areaVisible = true
|
||||
},
|
||||
handleModule(){
|
||||
|
||||
|
||||
Reference in New Issue
Block a user