|
@@ -22,7 +22,7 @@
|
|
<el-table-column label="操作" align="center">
|
|
<el-table-column label="操作" align="center">
|
|
<template slot-scope="{ row }">
|
|
<template slot-scope="{ row }">
|
|
<span class="table-button" @click="editOutlink(row)">编辑</span>
|
|
<span class="table-button" @click="editOutlink(row)">编辑</span>
|
|
- <span class="table-button" style="color: #FF0000;" @click="deleteOutlink(row)">删除</span>
|
|
|
|
|
|
+ <span class="table-button" style="color: #C54322;" @click="deleteOutlink(row)">删除</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<div slot="empty" style="line-height: 44px; margin: 60px 0; color: #999">
|
|
<div slot="empty" style="line-height: 44px; margin: 60px 0; color: #999">
|
|
@@ -43,7 +43,7 @@
|
|
:title="dialogTitle"
|
|
:title="dialogTitle"
|
|
:close-on-click-modal="false"
|
|
:close-on-click-modal="false"
|
|
center @close="resetForm">
|
|
center @close="resetForm">
|
|
- <div style="display: flex;align-items: center;justify-content: center;">
|
|
|
|
|
|
+ <div class="form-box">
|
|
<el-form
|
|
<el-form
|
|
:model="outlinkForm"
|
|
:model="outlinkForm"
|
|
ref="outlinkFormRef"
|
|
ref="outlinkFormRef"
|
|
@@ -54,7 +54,7 @@
|
|
<el-form-item prop="Url" label="页面链接" :rules="{required:true,message:'URL不能为空',trigger:'blur'}">
|
|
<el-form-item prop="Url" label="页面链接" :rules="{required:true,message:'URL不能为空',trigger:'blur'}">
|
|
<el-input v-model="outlinkForm.Url" placeholder="请输入URL" style="width: 295px;"></el-input>
|
|
<el-input v-model="outlinkForm.Url" placeholder="请输入URL" style="width: 295px;"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <div style="text-align:center;margin-bottom:35px;margin-top:40px">
|
|
|
|
|
|
+ <div class="form-box-buttons-zone">
|
|
<el-button style="width: 120px;height: 40px;" @click="addOutlinkShow=false">取消</el-button>
|
|
<el-button style="width: 120px;height: 40px;" @click="addOutlinkShow=false">取消</el-button>
|
|
<el-button type="primary" @click="addOutlinkSave" style="margin-left:30px;width: 120px;height: 40px;">确定</el-button>
|
|
<el-button type="primary" @click="addOutlinkSave" style="margin-left:30px;width: 120px;height: 40px;">确定</el-button>
|
|
</div>
|
|
</div>
|
|
@@ -169,11 +169,22 @@ import mPage from '@/components/mPage.vue';
|
|
.table-button{
|
|
.table-button{
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
- color: #409eff;
|
|
|
|
|
|
+ color: #0052D9;
|
|
margin-right: 8px;
|
|
margin-right: 8px;
|
|
&:last-child{
|
|
&:last-child{
|
|
margin-right: 0;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ .form-box{
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ padding-top: 30px;
|
|
|
|
+ .form-box-buttons-zone{
|
|
|
|
+ text-align:center;
|
|
|
|
+ margin-bottom:35px;
|
|
|
|
+ margin-top:120px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
</style>
|
|
</style>
|