mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 14:17:54 +08:00
49 lines
2.5 KiB
HTML
49 lines
2.5 KiB
HTML
<div>
|
|
<div class="row">
|
|
<div class="col-lg-12" v-for="(item,index) in parkingAreaTextInfo.texts">
|
|
<div class="ibox ">
|
|
<div class="ibox-title">
|
|
<h5>{{item.typeName}}</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<button type="button" class="btn btn-primary btn-sm"
|
|
v-on:click="_saveParkingAreaText(item)">
|
|
<i class="glyphicon glyphicon-download-alt"></i>
|
|
保存
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<div>
|
|
<div>
|
|
<div class="form-group row">
|
|
<div class="col-sm-3">
|
|
<input v-model="item.text1" type="text" :placeholder="vc.i18n('请填写第一个提示','parkingAreaText')"
|
|
class="form-control" />
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<input v-model="item.text2" type="text" :placeholder="vc.i18n('请填写第二个提示','parkingAreaText')"
|
|
class="form-control" />
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<input v-model="item.text3" type="text" :placeholder="vc.i18n('请填写第三个提示','parkingAreaText')"
|
|
class="form-control" />
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<input v-model="item.text4" type="text" :placeholder="vc.i18n('请填写第四个提示','parkingAreaText')"
|
|
class="form-control" />
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<div class="col-sm-12">
|
|
<input v-model="item.voice" type="text" :placeholder="vc.i18n('请填写语音','parkingAreaText')"
|
|
class="form-control" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|