mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-27 08:29:59 +08:00
120 lines
5.8 KiB
HTML
120 lines
5.8 KiB
HTML
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>
|
|
<span>
|
|
<vc:i18n name="编辑服务" namespace="editReserveService"></vc:i18n>
|
|
</span>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right"><span>
|
|
<vc:i18n name='名称' namespace='editReserveService'></vc:i18n>
|
|
</span></label>
|
|
<div class="col-sm-4">
|
|
<input v-model="editReserveServiceInfo.goodsName" type="text"
|
|
:placeholder="vc.i18n('必填,请填写名称','editReserveService')" class="form-control">
|
|
</div>
|
|
<label class="col-sm-2 col-form-label text-right"><span>
|
|
<vc:i18n name='参数' namespace='editReserveService'></vc:i18n>
|
|
</span></label>
|
|
<div class="col-sm-4">
|
|
<select class="custom-select" v-model="editReserveServiceInfo.paramsId">
|
|
<option selected disabled value="">{{vc.i18n('必填,请选择参数','editReserveService')}}</option>
|
|
<option :value="item.paramsId" v-for="(item,index) in editReserveServiceInfo.reserveParamss" :key="index">
|
|
{{item.name}}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right"><span>
|
|
<vc:i18n name='上门费' namespace='editReserveService'></vc:i18n>
|
|
</span></label>
|
|
<div class="col-sm-4">
|
|
<input v-model="editReserveServiceInfo.price" type="text"
|
|
:placeholder="vc.i18n('必填,请填写上门费','editReserveService')" class="form-control">
|
|
</div>
|
|
<label class="col-sm-2 col-form-label text-right"><span>
|
|
<vc:i18n name='排序' namespace='editReserveService'></vc:i18n>
|
|
</span></label>
|
|
<div class="col-sm-4">
|
|
<input v-model="editReserveServiceInfo.sort" type="text"
|
|
:placeholder="vc.i18n('必填,请填写排序','editReserveService')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right"><span>
|
|
<vc:i18n name='开始时间' namespace='editReserveService'></vc:i18n>
|
|
</span></label>
|
|
<div class="col-sm-4">
|
|
<input v-model="editReserveServiceInfo.startDate" type="text"
|
|
:placeholder="vc.i18n('必填,请填写开始时间','editReserveService')" class="form-control reserveStartTime">
|
|
</div>
|
|
<label class="col-sm-2 col-form-label text-right"><span>
|
|
<vc:i18n name='结束时间' namespace='editReserveService'></vc:i18n>
|
|
</span></label>
|
|
<div class="col-sm-4">
|
|
<input v-model="editReserveServiceInfo.endDate" type="text"
|
|
:placeholder="vc.i18n('必填,请填写结束时间','editReserveService')" class="form-control reserveEndTime">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right"><span>
|
|
<vc:i18n name='产品封面' namespace='editReserveService'></vc:i18n>
|
|
</span></label>
|
|
<div class="col-sm-4">
|
|
<vc:create path="frame/uploadImageUrl" callBackListener="editReserveService"
|
|
callBackFunction="notifyUploadCoverImage" namespace="editReserveService" imageCount="1">
|
|
</vc:create>
|
|
</div>
|
|
<label class="col-sm-2 col-form-label text-right"><span>
|
|
<vc:i18n name='状态' namespace='editReserveService'></vc:i18n>
|
|
</span></label>
|
|
<div class="col-sm-4">
|
|
<select class="custom-select" v-model="editReserveServiceInfo.state">
|
|
<option selected disabled value="">{{vc.i18n('必填,请选择状态','editReserveService')}}</option>
|
|
<option value="1001">{{vc.i18n('未上架','editReserveService')}}</option>
|
|
<option value="2002">{{vc.i18n('上架','editReserveService')}}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right"><span>
|
|
<vc:i18n name='商品简介' namespace='editReserveService'></vc:i18n>
|
|
</span></label>
|
|
<div class="col-sm-10">
|
|
<textarea v-model="editReserveServiceInfo.goodsDesc" :placeholder="vc.i18n('必填,请填写商品简介','editReserveService')"
|
|
class="form-control"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">商品详情</label>
|
|
<div class="col-sm-10 ">
|
|
<div class=" no-padding">
|
|
<div class="summernote"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="saveReserveServiceInfo()"><i
|
|
class="fa fa-check"></i>
|
|
<span>
|
|
<vc:i18n name="保存"></vc:i18n>
|
|
</span>
|
|
</button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" @click="vc.goBack()">
|
|
<span>
|
|
<vc:i18n name="取消"></vc:i18n>
|
|
</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |