wyyl/resources/beike/admin/views/pages/currencies/index.blade.php

184 lines
6.9 KiB
PHP

@extends('admin::layouts.master')
@section('title', __('admin/common.currency'))
@section('content')
<div id="tax-classes-app" class="card" v-cloak>
<div class="card-body h-min-600">
<div class="d-flex justify-content-between mb-4">
<button type="button" class="btn btn-primary" @click="checkedCreate('add', null)">{{ __('common.add') }}</button>
</div>
<div class="table-push">
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>{{ __('common.name') }}</th>
<th>{{ __('currency.code') }}</th>
<th>{{ __('currency.symbol_left') }}</th>
<th>{{ __('currency.symbol_right') }}</th>
<th>{{ __('currency.decimal_place') }}</th>
<th>{{ __('currency.value') }}</th>
<th>{{ __('common.status') }}</th>
<th class="text-end">{{ __('common.action') }}</th>
</tr>
</thead>
<tbody v-if="currencies.length">
<tr v-for="language, index in currencies" :key="index">
<td>@{{ language.id }}</td>
<td>@{{ language.name }}</td>
<td>@{{ language.code }}</td>
<td>@{{ language.symbol_left }}</td>
<td>@{{ language.symbol_right }}</td>
<td>@{{ language.decimal_place }}</td>
<td>@{{ language.value }}</td>
<td>
<span v-if="language.status" class="text-success">{{ __('common.enable') }}</span>
<span v-else class="text-secondary">{{ __('common.disable') }}</span>
</td>
<td class="text-end">
<button class="btn btn-outline-secondary btn-sm" @click="checkedCreate('edit', index)">{{ __('common.edit') }}</button>
<button class="btn btn-outline-danger btn-sm ml-1" type="button" @click="deleteCustomer(language.id, index)">{{ __('common.delete') }}</button>
</td>
</tr>
</tbody>
<tbody v-else><tr><td colspan="9" class="border-0"><x-admin-no-data /></td></tr></tbody>
</table>
</div>
</div>
<el-dialog title="{{ __('admin/common.currency') }}" :visible.sync="dialog.show" width="670px"
@close="closeCustomersDialog('form')" :close-on-click-modal="false">
<el-form ref="form" :rules="rules" :model="dialog.form" label-width="130px">
<el-form-item label="{{ __('common.name') }}" prop="name">
<el-input v-model="dialog.form.name" placeholder="code"></el-input>
</el-form-item>
<el-form-item label="{{ __('currency.code') }}" prop="code">
<el-input v-model="dialog.form.code" placeholder="{{ __('currency.code') }}"></el-input>
</el-form-item>
<el-form-item label="{{ __('currency.symbol_left') }}">
<el-input v-model="dialog.form.symbol_left" placeholder="{{ __('currency.symbol_left') }}"></el-input>
</el-form-item>
<el-form-item label="{{ __('currency.symbol_right') }}">
<el-input v-model="dialog.form.symbol_right" placeholder="{{ __('currency.symbol_right') }}"></el-input>
</el-form-item>
<el-form-item label="{{ __('currency.decimal_place') }}" prop="decimal_place">
<el-input v-model="dialog.form.decimal_place" placeholder="{{ __('currency.decimal_place') }}"></el-input>
</el-form-item>
<el-form-item label="{{ __('currency.value') }}" prop="value">
<el-input v-model="dialog.form.value" placeholder="{{ __('currency.value') }}"></el-input>
</el-form-item>
<el-form-item label="{{ __('common.status') }}">
<el-switch v-model="dialog.form.status" :active-value="1" :inactive-value="0"></el-switch>
</el-form-item>
<el-form-item class="mt-5">
<el-button type="primary" @click="addFormSubmit('form')">{{ __('common.save') }}</el-button>
<el-button @click="dialog.show = false">{{ __('common.cancel') }}</el-button>
</el-form-item>
</el-form>
</el-dialog>
</div>
@endsection
@push('footer')
@include('admin::shared.vue-image')
<script>
new Vue({
el: '#tax-classes-app',
data: {
currencies: @json($currencies ?? []),
dialog: {
show: false,
index: null,
type: 'add',
form: {
id: null,
name: '',
code: '',
symbol_left: '',
symbol_right: '',
decimal_place: '',
value: '',
status: 1,
},
},
rules: {
name: [{required: true,message: '{{ __('common.error_required', ['name' => __('common.name')]) }}', trigger: 'blur'}, ],
code: [{required: true,message: '{{ __('common.error_required', ['name' => __('currency.code')]) }}', trigger: 'blur'}, ],
value: [{required: true,message: '{{ __('common.error_required', ['name' => __('currency.value')]) }}',trigger: 'blur'}, ],
decimal_place: [{required: true,message: '{{ __('common.error_required', ['name' => __('currency.decimal_place')]) }}',trigger: 'blur'}, ],
}
},
methods: {
checkedCreate(type, index) {
this.dialog.show = true
this.dialog.type = type
this.dialog.index = index
if (type == 'edit') {
this.dialog.form = JSON.parse(JSON.stringify(this.currencies[index]))
}
},
addFormSubmit(form) {
const self = this;
const type = this.dialog.type == 'add' ? 'post' : 'put';
const url = this.dialog.type == 'add' ? 'currencies' : 'currencies/' + this.dialog.form.id;
this.$refs[form].validate((valid) => {
if (!valid) {
this.$message.error('{{ __('common.error_form') }}');
return;
}
$http[type](url, this.dialog.form).then((res) => {
this.$message.success(res.message);
if (this.dialog.type == 'add') {
this.currencies.push(res.data)
} else {
this.currencies[this.dialog.index] = res.data
}
this.dialog.show = false
})
});
},
deleteCustomer(id, index) {
const self = this;
this.$confirm('{{ __('common.confirm_delete') }}', '{{ __('common.text_hint') }}', {
confirmButtonText: '{{ __('common.confirm') }}',
cancelButtonText: '{{ __('common.cancel') }}',
type: 'warning'
}).then(() => {
$http.delete('currencies/' + id).then((res) => {
this.$message.success(res.message);
self.currencies.splice(index, 1)
})
}).catch(()=>{})
},
closeCustomersDialog(form) {
this.$refs[form].resetFields();
Object.keys(this.dialog.form).forEach(key => this.dialog.form[key] = '')
// this.dialog.show = false
}
}
})
</script>
@endpush