Commit 3873ea6c authored by 黄媛媛's avatar 黄媛媛

11

parent 897f6404
......@@ -1126,7 +1126,7 @@
</div>
<div style="text-align:center">
<p style="font-size:26px;color:#111111;margin:40px 0">第{{tsNumber}}期投诉案例分享已经发布</p>
<a @click="CloseTs" target="_blank" href="http://we.oytour.com:8110/?/question/25" style="font-size:18px;color:#E95252;cursor:pointer;text-decoration:underline">点击查看</a>
<a @click="CloseTs" target="_blank" href="http://we.oytour.com:8110/?/question/26" style="font-size:18px;color:#E95252;cursor:pointer;text-decoration:underline">点击查看</a>
</div>
</div>
</div>
......@@ -1183,7 +1183,7 @@ export default {
articleId:0,
createEmpId:0,
tsState:false,
tsNumber:16,
tsNumber:17,
saleRnkShow: false,
dialogTitleNot: '',
outerVisibleNot: false,
......
......@@ -104,6 +104,8 @@
<tr>
<th style="width:80px">编号</th>
<th style="width:100px">配置项名称</th>
<th style="width:100px">日语名称</th>
<th style="width:100px">类型</th>
<th style="width:100px">状态</th>
<th style="width:100px">操作人</th>
......@@ -113,6 +115,7 @@
<tr v-for="(item,index) in DataList" v-loading='loading' :key="index">
<td>{{item.HConfigId}}</td>
<td>{{item.HName}}</td>
<td>{{item.JapanName}}</td>
<td>{{item.HTypeStr}}</td>
<td>{{item.StatusStr}}</td>
<td>{{item.UpdateByName}} </td>
......@@ -137,6 +140,9 @@
<el-form :model="addMsg" ref="addMsg" label-width="120px">
<el-form-item class='w400' label="名称">
<el-input type="text" v-model="addMsg.HName" placeholder="请输入名称"></el-input>
</el-form-item>
<el-form-item class='w400' label="日语名称">
<el-input type="text" v-model="addMsg.JapanName" placeholder="请输入名称"></el-input>
</el-form-item>
<el-form-item class='w400' label="类型">
<el-select class='w210' v-model="addMsg.HType" :placeholder="$t('pub.unlimitedSel')">
......@@ -175,6 +181,7 @@
HConfigId: 0, //编号
HType: 0, //配置类型(1-公共设施,2-客房设施,3-活动设施服务,4-酒店服务,5-前台语言)
HName: "", //配置名称
JapanName:'',
},
}
},
......@@ -201,6 +208,8 @@
this.addMsg.HConfigId = 0;
this.addMsg.HType = 0;
this.addMsg.HName = "";
this.addMsg.JapanName = "";
},
getList() { //获取数据
this.loading = true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment