!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>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>{{ __('common.name') }}</th>
|
||||
<th>{{ __('address.name') }}</th>
|
||||
<th>{{ __('common.phone') }}</th>
|
||||
<th>{{ __('common.created_at') }}</th>
|
||||
<th>{{ __('common.action') }}</th>
|
||||
|
|
@ -76,7 +76,7 @@
|
|||
<el-dialog title="{{ __('admin/customer.edit_address') }}" :visible.sync="dialogAddress.show" width="650px"
|
||||
@close="closeAddressDialog('addressForm')">
|
||||
<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-form-item>
|
||||
<el-form-item label="{{ __('common.phone') }}" prop="phone">
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
return [
|
||||
'index' => 'Edit Address',
|
||||
'name' => 'Name',
|
||||
'name' => 'Full name',
|
||||
'phone' => 'Phone',
|
||||
'country_id' => 'Country ID',
|
||||
'zone' => 'Zone',
|
||||
|
|
|
|||
|
|
@ -151,6 +151,8 @@
|
|||
@else
|
||||
<div class="text-danger"><i class="bi bi-exclamation-circle-fill"></i> {{ __('product.has_been_inactive') }}</div>
|
||||
@endif
|
||||
|
||||
@hook('product.detail.after')
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue