|
@@ -128,6 +128,11 @@
|
|
|
<el-input v-model="form.alias" autocomplete="off"></el-input>
|
|
|
<input type="hidden" v-model="form.seo_title">
|
|
|
</el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="名称拼音:" :label-width="formLabelWidth" class="custom-align-right">
|
|
|
+ <el-input v-model="form.alias_pinyin" autocomplete="off"></el-input>
|
|
|
+ </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>
|
|
@@ -280,6 +285,7 @@ export default {
|
|
|
website_id:0,//网站id
|
|
|
category_id:0,//导航id
|
|
|
alias:"",//导航名称
|
|
|
+ alias_pinyin:"",//导航名称拼音
|
|
|
seo_title:"",//导航seo名称
|
|
|
seo_keywords:"",//导航关键词
|
|
|
seo_description:"",//导航描述
|
|
@@ -383,6 +389,7 @@ export default {
|
|
|
// console.log(res.data)
|
|
|
this.form.website_id = this.$route.query.website_id;
|
|
|
this.form.category_id = id;
|
|
|
+ this.form.alias_pinyin = res.data.aLIas_pinyin;
|
|
|
this.form.alias = res.data.alias;
|
|
|
this.form.seo_title = res.data.seo_title;
|
|
|
this.form.seo_keywords = res.data.seo_keywords;
|