!97 Modify an entry, name -> full name
* Modify an entry, name -> full name
This commit is contained in:
parent
a1626dc21b
commit
b88d889861
|
|
@ -40,7 +40,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
<th>ID</th>
|
||||||
<th>{{ __('common.name') }}</th>
|
<th>{{ __('address.name') }}</th>
|
||||||
<th>{{ __('common.phone') }}</th>
|
<th>{{ __('common.phone') }}</th>
|
||||||
<th>{{ __('common.created_at') }}</th>
|
<th>{{ __('common.created_at') }}</th>
|
||||||
<th>{{ __('common.action') }}</th>
|
<th>{{ __('common.action') }}</th>
|
||||||
|
|
@ -76,7 +76,7 @@
|
||||||
<el-dialog title="{{ __('admin/customer.edit_address') }}" :visible.sync="dialogAddress.show" width="650px"
|
<el-dialog title="{{ __('admin/customer.edit_address') }}" :visible.sync="dialogAddress.show" width="650px"
|
||||||
@close="closeAddressDialog('addressForm')">
|
@close="closeAddressDialog('addressForm')">
|
||||||
<el-form ref="addressForm" :rules="addressRules" :model="dialogAddress.form" label-width="100px">
|
<el-form ref="addressForm" :rules="addressRules" :model="dialogAddress.form" label-width="100px">
|
||||||
<el-form-item label="{{ __('common.name') }}" prop="name">
|
<el-form-item label="{{ __('address.name') }}" prop="name">
|
||||||
<el-input v-model="dialogAddress.form.name"></el-input>
|
<el-input v-model="dialogAddress.form.name"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="{{ __('common.phone') }}" prop="phone">
|
<el-form-item label="{{ __('common.phone') }}" prop="phone">
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'index' => 'Edit Address',
|
'index' => 'Edit Address',
|
||||||
'name' => 'Name',
|
'name' => 'Full name',
|
||||||
'phone' => 'Phone',
|
'phone' => 'Phone',
|
||||||
'country_id' => 'Country ID',
|
'country_id' => 'Country ID',
|
||||||
'zone' => 'Zone',
|
'zone' => 'Zone',
|
||||||
|
|
|
||||||
|
|
@ -151,6 +151,8 @@
|
||||||
@else
|
@else
|
||||||
<div class="text-danger"><i class="bi bi-exclamation-circle-fill"></i> {{ __('product.has_been_inactive') }}</div>
|
<div class="text-danger"><i class="bi bi-exclamation-circle-fill"></i> {{ __('product.has_been_inactive') }}</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
@hook('product.detail.after')
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue