feat:修改endpoint 搜索asset列表的接口

This commit is contained in:
zhangyu
2021-04-15 11:47:44 +08:00
parent 1c130e1cb2
commit 783f22b880
25 changed files with 2052 additions and 2310 deletions

View File

@@ -86,37 +86,37 @@
</template>
<script>
import table from '@/components/common/mixin/table'
export default {
name: "credentialsTable",
mixins: [table],
data(){
return{
tableTitle:[{
label: 'ID',
prop: 'id',
show: true,
width: 80
}, {
label: this.$t('overall.name'),
prop: 'name',
show: true
},{
label:this.$t('config.mib.credential.type'),
prop: 'type',
show: true
},{
label:this.$t('config.mib.credential.port'),
prop: 'port',
show: true
},{
label:this.$t('config.mib.credential.remark'),
prop: 'remark',
show: true
}]
}
import table from '@/components/common/mixin/table'
export default {
name: 'credentialsTable',
mixins: [table],
data () {
return {
tableTitle: [{
label: 'ID',
prop: 'id',
show: true,
width: 80
}, {
label: this.$t('overall.name'),
prop: 'name',
show: true
}, {
label: this.$t('config.mib.credential.type'),
prop: 'type',
show: true
}, {
label: this.$t('config.mib.credential.port'),
prop: 'port',
show: true
}, {
label: this.$t('config.mib.credential.remark'),
prop: 'remark',
show: true
}]
}
}
}
</script>
<style scoped>