mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-27 00:20:01 +08:00
116 lines
5.6 KiB
HTML
116 lines
5.6 KiB
HTML
<div id="editChainSupplierModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
|
||
aria-hidden="true">
|
||
<div class="modal-dialog modal-lg">
|
||
<div class="modal-content">
|
||
<div class="modal-body">
|
||
<h3 class="m-t-none m-b "><span>
|
||
<vc:i18n name="修改供应商" namespace="editChainSupplier"></vc:i18n>
|
||
</span></h3>
|
||
<div class="ibox-content">
|
||
<div>
|
||
<div>
|
||
<div class="form-group row">
|
||
<label class="col-sm-2 col-form-label">
|
||
<span>
|
||
<vc:i18n name='供应商名称' namespace='editChainSupplier'></vc:i18n>
|
||
</span> </label>
|
||
<div class="col-sm-10">
|
||
<input v-model="editChainSupplierInfo.name" type="text"
|
||
:placeholder="vc.i18n('必填,请填写供应商名称','editChainSupplier')" class="form-control">
|
||
</div>
|
||
</div>
|
||
<div class="form-group row"><label class="col-sm-2 col-form-label">
|
||
<span>
|
||
<vc:i18n name='接口应用ID' namespace='editChainSupplier'></vc:i18n>
|
||
</span> </label>
|
||
<div class="col-sm-10">
|
||
<input v-model="editChainSupplierInfo.appId" type="text"
|
||
:placeholder="vc.i18n('必填,请填写接口应用ID','editChainSupplier')" class="form-control">
|
||
</div>
|
||
</div>
|
||
<div class="form-group row"><label class="col-sm-2 col-form-label">
|
||
<span>
|
||
<vc:i18n name='接口秘钥' namespace='editChainSupplier'></vc:i18n>
|
||
</span> </label>
|
||
<div class="col-sm-10">
|
||
<input v-model="editChainSupplierInfo.appSecure" type="text"
|
||
:placeholder="vc.i18n('必填,请填写接口秘钥','editChainSupplier')" class="form-control">
|
||
</div>
|
||
</div>
|
||
<div class="form-group row"><label class="col-sm-2 col-form-label">
|
||
<span>
|
||
<vc:i18n name='商户ID' namespace='editChainSupplier'></vc:i18n>
|
||
</span> </label>
|
||
<div class="col-sm-10">
|
||
<input v-model="editChainSupplierInfo.mchId" type="text"
|
||
:placeholder="vc.i18n('必填,请填写商户ID','editChainSupplier')" class="form-control">
|
||
</div>
|
||
</div>
|
||
<div class="form-group row"><label class="col-sm-2 col-form-label">
|
||
<span>
|
||
<vc:i18n name='秘钥' namespace='editChainSupplier'></vc:i18n>
|
||
</span> </label>
|
||
<div class="col-sm-10">
|
||
<input v-model="editChainSupplierInfo.mchKey" type="text"
|
||
:placeholder="vc.i18n('必填,请填写秘钥','editChainSupplier')" class="form-control">
|
||
</div>
|
||
</div>
|
||
<div class="form-group row"><label class="col-sm-2 col-form-label">
|
||
<span>
|
||
<vc:i18n name='接口地址' namespace='editChainSupplier'></vc:i18n>
|
||
</span> </label>
|
||
<div class="col-sm-10">
|
||
<input v-model="editChainSupplierInfo.url" type="text"
|
||
:placeholder="vc.i18n('必填,请填写接口地址','editChainSupplier')" class="form-control">
|
||
</div>
|
||
</div>
|
||
<div class="form-group row"><label class="col-sm-2 col-form-label">
|
||
<span>
|
||
<vc:i18n name='适配器名称' namespace='editChainSupplier'></vc:i18n>
|
||
</span> </label>
|
||
<div class="col-sm-10">
|
||
<input v-model="editChainSupplierInfo.beanName" type="text"
|
||
:placeholder="vc.i18n('必填,请填写适配器名称','editChainSupplier')" class="form-control">
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-group row">
|
||
<label class="col-sm-2 col-form-label"><span>
|
||
<vc:i18n name='供应链类型' namespace='addChainSupplier'></vc:i18n>
|
||
</span></label>
|
||
<div class="col-sm-10">
|
||
<select class="custom-select" v-model="editChainSupplierInfo.suType">
|
||
<option value="1" selected>自建链(商品可删除修改)</option>
|
||
<option value="2">成熟链(不可编辑)</option>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<div class="form-group row"><label class="col-sm-2 col-form-label">
|
||
<span>
|
||
<vc:i18n name='备注' namespace='editChainSupplier'></vc:i18n>
|
||
</span> </label>
|
||
<div class="col-sm-10">
|
||
<textarea :placeholder="vc.i18n('必填,请填写备注','editChainSupplier')" class="form-control"
|
||
v-model="editChainSupplierInfo.remark"></textarea>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ibox-content">
|
||
<button class="btn btn-primary float-right" type="button" v-on:click="editChainSupplier()"><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;"
|
||
data-dismiss="modal"><span>
|
||
<vc:i18n name="取消"></vc:i18n>
|
||
</span></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div> |