|
|
|
@ -1,6 +1,18 @@
|
|
|
|
|
<template>
|
|
|
|
|
<layout v-bind:title="title">
|
|
|
|
|
<h1>{{title}}</h1>
|
|
|
|
|
<layout :title="title">
|
|
|
|
|
<div class="row mb-2">
|
|
|
|
|
<div class="col-sm-6">
|
|
|
|
|
<h1 style="font-size:1.8rem;margin:0;">{{title}}</h1>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-6">
|
|
|
|
|
<ol class="breadcrumb float-sm-right">
|
|
|
|
|
<li class="breadcrumb-item">
|
|
|
|
|
<router-link :to="{path:'/router/shared/list.html',query:{area:area,entity:entity}}" class="btn btn-default">列表</router-link>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="breadcrumb-item active">{{title}}</li>
|
|
|
|
|
</ol>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-12">
|
|
|
|
|
<div class="card">
|
|
|
|
@ -96,8 +108,11 @@
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
name: function () {
|
|
|
|
|
return this.data.schema ? this.data.schema.title : '';
|
|
|
|
|
},
|
|
|
|
|
title: function () {
|
|
|
|
|
return '列表' + (this.data.schema ? this.data.schema.title : '');
|
|
|
|
|
return this.name + '列表';
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|