This commit is contained in:
pushuo 2022-08-11 17:08:58 +08:00
parent 8e114d16c4
commit 80140aa9d6
2 changed files with 162 additions and 26 deletions

View File

@ -3,10 +3,10 @@
@section('title', '货币管理')
@section('content')
<div id="customer-app" class="card">
<div class="card-body">
<div class="d-flex justify-content-between my-4">
<a href="{{ admin_route('currencies.create') }}" class="btn btn-primary">创建</a>
<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)">添加</button>
</div>
<table class="table">
<thead>
@ -14,33 +14,163 @@
<th>#</th>
<th>名称</th>
<th>编码</th>
<th>货币左符号</th>
<th>货币右符号</th>
<th>左符号</th>
<th>右符号</th>
<th>小数位数</th>
<th>汇率值</th>
<th>状态</th>
<th>操作</th>
<th class="text-end">操作</th>
</tr>
</thead>
<tbody>
@foreach ($currencies as $currency)
<tr>
<td>{{ $currency['id'] }}</td>
<td>{{ $currency['name'] }}</td>
<td>{{ $currency['code'] }}</td>
<td>{{ $currency['symbol_left'] }}</td>
<td>{{ $currency['symbol_right'] }}</td>
<td>{{ $currency['decimal_place'] }}</td>
<td>{{ $currency['value'] }}</td>
<td>{{ $currency['status'] }}</td>
<td>
<a class="btn btn-outline-secondary btn-sm"
href="{{ admin_route('currencies.edit', [$currency['id']]) }}">编辑</a>
</td>
</tr>
@endforeach
<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>@{{ language.status }}</td>
<td class="text-end">
<button class="btn btn-outline-secondary btn-sm" @click="checkedCreate('edit', index)">编辑</button>
<button class="btn btn-outline-danger btn-sm ml-1" type="button" @click="deleteCustomer(language.id, index)">删除</button>
</td>
</tr>
</tbody>
</table>
{{-- {{ $currencies->links('admin::vendor/pagination/bootstrap-4') }} --}}
</div>
<el-dialog title="货币" :visible.sync="dialog.show" width="500px"
@close="closeCustomersDialog('form')" :close-on-click-modal="false">
<el-form ref="form" :rules="rules" :model="dialog.form" label-width="100px">
<el-form-item label="code" prop="name">
<el-input v-model="dialog.form.name" placeholder="code"></el-input>
</el-form-item>
<el-form-item label="编码" prop="code">
<el-input v-model="dialog.form.code" placeholder="编码"></el-input>
</el-form-item>
<el-form-item label="左符号">
<el-input v-model="dialog.form.symbol_left" placeholder="左符号"></el-input>
</el-form-item>
<el-form-item label="右符号">
<el-input v-model="dialog.form.symbol_right" placeholder="左符号"></el-input>
</el-form-item>
<el-form-item label="小数位数">
<el-input v-model="dialog.form.decimal_place" placeholder="左符号"></el-input>
</el-form-item>
<el-form-item label="汇率值">
<el-input v-model="dialog.form.value" placeholder="左符号"></el-input>
</el-form-item>
<el-form-item label=" 状态">
<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')">保存</el-button>
<el-button @click="closeCustomersDialog('form')">取消</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: '请输入名称',trigger: 'blur'}, ],
code: [{required: true,message: '请输入编码',trigger: 'blur'}, ],
}
},
methods: {
checkedCreate(type, index) {
this.dialog.show = true
this.dialog.type = type
this.dialog.index = index
if (type == 'edit') {
this.dialog.form = 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('请检查表单是否填写正确');
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('确定要删除语言码?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
$http.delete('currencies/' + id).then((res) => {
this.$message.success(res.message);
self.currencies.splice(index, 1)
})
}).catch(()=>{})
},
closeCustomersDialog(form) {
Object.keys(this.dialog.form).forEach(key => this.dialog.form[key] = '')
this.dialog.show = false
this.$refs[form].resetFields();
}
}
})
</script>
@endpush

View File

@ -35,8 +35,14 @@
<h6 class="border-bottom pb-3 mb-4">数据</h6>
<x-admin-form-input-locale name="descriptions.*.name" title="名称" :value="$descriptions" required />
<x-admin::form.row title="图片">
<div class="product-images d-flex flex-wrap">
<div v-for="image, index in form.images" :key="index" class="wh-80 product-item position-relative border d-flex justify-content-center align-items-center me-2">
<draggable
element="div"
ghost-class="dragabble-ghost"
class="product-images d-flex flex-wrap"
:list="form.images"
:options="{animation: 200, filter: '.set-product-img'}"
>
<div v-for="image, index in form.images" :key="index" class="wh-80 product-item position-relative me-2">
<div class="position-absolute top-0 end-0">
<button class="btn btn-danger btn-sm wh-20 p-0" @click="removeImages(index)" type="button"><i class="bi bi-trash"></i></button>
</div>
@ -44,7 +50,7 @@
<input type="hidden" name="images[]" :value="image">
</div>
<div class="set-product-img wh-80" @click="addProductImages"><i class="bi bi-plus fs-1 text-muted"></i></div>
</div>
</draggable>
<div class="help-text mb-1 mt-2">第一张图片将作为商品主图,支持同时上传多张图片,多张图片之间可随意调整位置;</div>
<div class="help-text">开启多规格并且多规格配置了图片时,这里的图片将作为多规格的公用图片,展示在其后面</div>
</x-admin::form.row>