Commit b62d533c authored by kangzhenfei's avatar kangzhenfei

数据管理--联调

parent 252424a6
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<Col :span="24"> <Col :span="24">
<FormItem :label="l('hostsq')" prop="hostId"> <FormItem :label="l('hostsq')" prop="hostId">
<!-- <Input v-model="entity.hostId"></Input> --> <!-- <Input v-model="entity.hostId"></Input> -->
<Dictionary code="datasource.type" v-model="entity.id" type="select"></Dictionary> <Dictionary code="datasource.type" v-model="entity.databaseType" type="select"></Dictionary>
</FormItem> </FormItem>
</Col> </Col>
<!-- <Col :span="24"> <!-- <Col :span="24">
......
...@@ -113,9 +113,33 @@ export default { ...@@ -113,9 +113,33 @@ export default {
key: 'startTime', key: 'startTime',
title: this.l('startTime'), title: this.l('startTime'),
align: 'left', align: 'left',
high: true high: true,
render:(h,params)=>{
return h('div',{class:''},[
h(
'span',
{
//attrs: { oprate: 'detail' },
// on: { click: () => this.setAps(params.row.id) }
},
params.row.startTime.slice(0, 10)
)
])
}
}, },
{ key: 'endTime', title: this.l('endTime'), align: 'left', high: true }, { key: 'endTime', title: this.l('endTime'), align: 'left', high: true,
render:(h,params)=>{
return h('div',{class:''},[
h(
'span',
{
//attrs: { oprate: 'detail' },
// on: { click: () => this.setAps(params.row.id) }
},
params.row.startTime.slice(0, 10)
)
])
} },
// { // {
// key: 'initialized', // key: 'initialized',
// title: this.l('initialized'), // title: this.l('initialized'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment