|
@@ -87,10 +87,14 @@
|
|
|
<el-input v-model="form.alias" autocomplete="off"></el-input>
|
|
|
<input type="hidden" v-model="form.alias">
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="导航标题:" :label-width="formLabelWidth" prop="seo_title" class="custom-align-right">
|
|
|
+ <el-form-item label="排序:" :label-width="formLabelWidth" prop="" class="custom-align-right">
|
|
|
+ <el-input v-model="form.sort" autocomplete="off"></el-input>
|
|
|
+ <input type="hidden" v-model="form.sort">
|
|
|
+ </el-form-item>
|
|
|
+ <!-- <el-form-item label="导航标题:" :label-width="formLabelWidth" prop="seo_title" class="custom-align-right">
|
|
|
<el-input v-model="form.seo_title" autocomplete="off"></el-input>
|
|
|
<input type="hidden" v-model="form.seo_title">
|
|
|
- </el-form-item>
|
|
|
+ </el-form-item> -->
|
|
|
<!-- <el-form-item label="导航名称:" :label-width="formLabelWidth" prop="seo_title" class="custom-align-right">
|
|
|
<div class="formLabelFloatBox">
|
|
|
<el-input v-model="form.seo_title" autocomplete="off"></el-input>
|
|
@@ -232,6 +236,7 @@ export default {
|
|
|
website_id:0,//网站id
|
|
|
category_id:0,//导航id
|
|
|
alias:"",//导航名称
|
|
|
+ sort:0,//排序
|
|
|
seo_title:"",//导航seo名称
|
|
|
seo_keywords:"",//导航关键词
|
|
|
seo_description:"",//导航描述
|
|
@@ -309,6 +314,7 @@ export default {
|
|
|
this.form.website_id = 0;
|
|
|
this.form.category_id = 0;
|
|
|
this.form.alias = "";
|
|
|
+ this.form.sort = 0;
|
|
|
this.form.seo_title = "";
|
|
|
this.form.seo_keywords = "";
|
|
|
this.form.seo_description = "";
|
|
@@ -329,6 +335,7 @@ export default {
|
|
|
this.form.website_id = this.$route.query.website_id;
|
|
|
this.form.category_id = id;
|
|
|
this.form.alias = res.data.alias;
|
|
|
+ this.form.sort = res.data.sort;
|
|
|
this.form.seo_title = res.data.seo_title;
|
|
|
this.form.seo_keywords = res.data.seo_keywords;
|
|
|
this.form.seo_description = res.data.seo_description;
|