2023-10-31 09:44:35 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div v-loading.fullscreen.lock="fullscreenLoading" class="app-container">
|
|
|
|
|
|
<!--工具栏-->
|
|
|
|
|
|
<div class="head-container">
|
|
|
|
|
|
<div v-if="crud.props.searchToggle">
|
|
|
|
|
|
<el-form
|
|
|
|
|
|
:inline="true"
|
|
|
|
|
|
class="demo-form-inline"
|
|
|
|
|
|
label-position="right"
|
|
|
|
|
|
label-width="90px"
|
|
|
|
|
|
label-suffix=":"
|
|
|
|
|
|
>
|
2024-03-14 15:03:07 +08:00
|
|
|
|
<!-- <el-form-item label="所属车间">-->
|
|
|
|
|
|
<!-- <el-select-->
|
|
|
|
|
|
<!-- v-model="query.workshop_code"-->
|
|
|
|
|
|
<!-- clearable-->
|
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
|
<!-- placeholder="所属车间"-->
|
|
|
|
|
|
<!-- class="filter-item"-->
|
|
|
|
|
|
<!-- >-->
|
|
|
|
|
|
<!-- <el-option-->
|
|
|
|
|
|
<!-- v-for="item in workShopList"-->
|
|
|
|
|
|
<!-- :label="item.workshop_name"-->
|
|
|
|
|
|
<!-- :value="item.workshop_code"-->
|
|
|
|
|
|
<!-- />-->
|
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
|
<!-- </el-form-item>-->
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-form-item label="模糊搜索">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="query.blurry"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
placeholder="编码名称"
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
2024-03-14 15:03:07 +08:00
|
|
|
|
<el-form-item label="产品部位">
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="query.material_spec"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
size="mini"
|
2024-03-14 15:03:07 +08:00
|
|
|
|
placeholder="产品部位"
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="产品牌号">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="query.material_code"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
placeholder="产品牌号"
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="物料型号">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="query.material_model"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
placeholder="物料型号"
|
2023-10-31 09:44:35 +08:00
|
|
|
|
@keyup.enter.native="crud.toQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<rrOperation />
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
|
2023-12-15 14:32:49 +08:00
|
|
|
|
<crudOperation :permission="permission" />
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<!--表单组件-->
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
|
:before-close="crud.cancelCU"
|
|
|
|
|
|
:visible.sync="crud.status.cu > 0"
|
|
|
|
|
|
:title="crud.status.title"
|
2024-03-14 15:03:07 +08:00
|
|
|
|
width="820px"
|
|
|
|
|
|
>
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-form
|
|
|
|
|
|
ref="form"
|
|
|
|
|
|
:inline="true"
|
|
|
|
|
|
style="border: 1px solid #cfe0df;margin-top: 10px;padding-top: 10px;"
|
|
|
|
|
|
:model="form"
|
|
|
|
|
|
:rules="rules"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
label-width="125px"
|
2024-03-14 15:03:07 +08:00
|
|
|
|
label-suffix=":"
|
|
|
|
|
|
>
|
|
|
|
|
|
|
2024-01-12 20:39:37 +08:00
|
|
|
|
<el-form-item label="订单编号" prop="order_number">
|
|
|
|
|
|
<el-input v-model="form.order_number" style="width: 240px;" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="产品编码" prop="product_code">
|
|
|
|
|
|
<el-input v-model="form.product_code" style="width: 240px;" />
|
|
|
|
|
|
</el-form-item>
|
2024-01-13 09:42:40 +08:00
|
|
|
|
<el-form-item label="物料名称" prop="material_name">
|
2023-12-15 14:32:49 +08:00
|
|
|
|
<el-input v-model="form.material_name" style="width: 240px;" />
|
2023-10-31 09:44:35 +08:00
|
|
|
|
</el-form-item>
|
2024-01-13 09:42:40 +08:00
|
|
|
|
<el-form-item label="产品牌号 " prop="material_code">
|
|
|
|
|
|
<el-input v-model="form.material_code" style="width: 240px;" />
|
|
|
|
|
|
</el-form-item>
|
2024-01-12 20:39:37 +08:00
|
|
|
|
<el-form-item label="产品部位" prop="material_spec">
|
2023-12-15 14:32:49 +08:00
|
|
|
|
<el-input v-model="form.material_spec" style="width: 240px;" />
|
2023-10-31 09:44:35 +08:00
|
|
|
|
</el-form-item>
|
2023-12-15 14:32:49 +08:00
|
|
|
|
<el-form-item label="物料型号" prop="material_model">
|
|
|
|
|
|
<el-input v-model="form.material_model" style="width: 240px;" />
|
2023-10-31 09:44:35 +08:00
|
|
|
|
</el-form-item>
|
2024-03-14 15:03:07 +08:00
|
|
|
|
<el-form-item label="单重(吨)">
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
v-model.number="form.single_weight"
|
|
|
|
|
|
:min="0"
|
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
2024-01-12 20:39:37 +08:00
|
|
|
|
<!-- <el-form-item label="A长边">
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-input-number
|
|
|
|
|
|
v-model.number="form.a_long_side"
|
|
|
|
|
|
:min="0"
|
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="B短边">
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
v-model.number="form.b_short_side"
|
|
|
|
|
|
:min="0"
|
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="H高度">
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
v-model.number="form.h_height"
|
|
|
|
|
|
:min="0"
|
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="W厚度">
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
v-model.number="form.w_thickness"
|
|
|
|
|
|
:min="0"
|
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
2024-03-14 15:03:07 +08:00
|
|
|
|
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-form-item label="木托盘规格">
|
|
|
|
|
|
<el-tooltip class="item" effect="dark" content="例如:950*1000" placement="top">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="form.pack_palletspec"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in dict.vehicle_type"
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:value="item.label"
|
|
|
|
|
|
:disabled="item.value === 'LZ' || item.value === 'GTP'"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
|
</el-form-item>
|
2023-12-15 14:32:49 +08:00
|
|
|
|
<el-form-item label="静置时间(分钟)">
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
v-model.number="form.standing_time"
|
|
|
|
|
|
:min="0"
|
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="冷却时间(分钟)">
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
v-model.number="form.cooling_time"
|
|
|
|
|
|
:min="0"
|
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="静置时间(下限)">
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
v-model.number="form.standing_time_lower"
|
|
|
|
|
|
:min="0"
|
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="静置时间(上限)">
|
|
|
|
|
|
<el-input-number
|
|
|
|
|
|
v-model.number="form.standing_time_upper"
|
|
|
|
|
|
:min="0"
|
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-form-item label="包装方式">
|
|
|
|
|
|
<el-tooltip class="item" effect="dark" content="例如:3*6*6" placement="top">
|
|
|
|
|
|
<el-input v-model="form.pack_method" style="width: 240px;" />
|
|
|
|
|
|
</el-tooltip>
|
2024-01-12 20:39:37 +08:00
|
|
|
|
</el-form-item> -->
|
|
|
|
|
|
<!-- <el-form-item label="是否特殊" prop="is_needmove">
|
2023-12-15 14:32:49 +08:00
|
|
|
|
<el-radio-group v-model="form.is_special" style="width: 240px">
|
|
|
|
|
|
<el-radio :label="true">是</el-radio>
|
|
|
|
|
|
<el-radio :label="false">否</el-radio>
|
|
|
|
|
|
</el-radio-group>
|
2024-01-12 20:39:37 +08:00
|
|
|
|
</el-form-item> -->
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-form-item label="备注">
|
|
|
|
|
|
<el-input v-model="form.remark" type="textarea" style="width: 240px;" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
2023-12-15 14:32:49 +08:00
|
|
|
|
<el-button type="info" @click="crud.cancelCU">取消</el-button>
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-button :loading="crud.cu === 2" type="primary" @click="crud.submitCU">确认</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
<!--表格渲染-->
|
|
|
|
|
|
<el-table ref="table" v-loading="crud.loading" :data="crud.data" size="mini" style="width: 100%;" @selection-change="crud.selectionChangeHandler">
|
|
|
|
|
|
<el-table-column type="selection" width="55" />
|
2024-01-12 20:39:37 +08:00
|
|
|
|
<!-- <el-table-column prop="raw_material_code" label="泥料编码" :min-width="flexWidth('raw_material_code',crud.data,'物料编码')" />
|
|
|
|
|
|
<el-table-column prop="half_material_code" label="半成品编码" :min-width="flexWidth('half_material_code',crud.data,'半成品编码')" /> -->
|
|
|
|
|
|
<el-table-column prop="order_number" label="订单编号" :min-width="flexWidth('order_number',crud.data,'订单编号')" />
|
|
|
|
|
|
<el-table-column prop="product_code" label="产品编码" :min-width="flexWidth('product_code',crud.data,'产品编码')" />
|
2024-01-13 09:42:40 +08:00
|
|
|
|
<el-table-column prop="material_name" label="物料名称" :min-width="flexWidth('material_name',crud.data,'物料名称')" />
|
|
|
|
|
|
<el-table-column prop="material_code" label="产品牌号 " :min-width="flexWidth('material_code',crud.data,'产品牌号 ')" />
|
2024-01-12 20:39:37 +08:00
|
|
|
|
<el-table-column prop="material_spec" label="产品部位" :min-width="flexWidth('material_spec',crud.data,'产品部位')" />
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-table-column prop="material_model" label="物料型号" :min-width="flexWidth('material_model',crud.data,'物料分类标识')" />
|
2024-03-14 15:03:07 +08:00
|
|
|
|
<el-table-column prop="single_weight" label="单重(吨)" :min-width="flexWidth('single_weight',crud.data,'物料分类标识')" />
|
2024-01-12 20:39:37 +08:00
|
|
|
|
<!-- <el-table-column prop="standing_time" label="静置时间(分钟)" :min-width="flexWidth('standing_time',crud.data,'静置时间(分钟)')" />
|
|
|
|
|
|
<el-table-column prop="cooling_time" label="冷却时间(分钟)" :min-width="flexWidth('cooling_time',crud.data,'静置时间(分钟)')" /> -->
|
2024-03-14 15:03:07 +08:00
|
|
|
|
<!-- <el-table-column prop="workshop_code" label="车间编码" :min-width="flexWidth('workshop_code',crud.data,'车间编码')" />-->
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-table-column prop="remark" label="备注" :min-width="flexWidth('remark',crud.data,'备注')" />
|
|
|
|
|
|
<el-table-column prop="is_used" label="是否启用" :min-width="flexWidth('is_used',crud.data,'是否启用')">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
{{ scope.row.is_used?'是':'否' }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column prop="is_delete" label="是否删除" :min-width="flexWidth('is_delete',crud.data,'是否删除')">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
{{ scope.row.is_delete?'是':'否' }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column prop="create_name" label="创建人" :min-width="flexWidth('create_name',crud.data,'创建人')" />
|
|
|
|
|
|
<el-table-column prop="create_time" label="同步时间" :min-width="flexWidth('create_time',crud.data,'创建时间')" />
|
|
|
|
|
|
<el-table-column prop="update_name" label="修改人" :min-width="flexWidth('update_name',crud.data,'修改人')" />
|
|
|
|
|
|
<el-table-column prop="update_time" label="修改时间" :min-width="flexWidth('update_time',crud.data,'修改时间')" />
|
2024-03-14 15:03:07 +08:00
|
|
|
|
<!-- <el-table-column prop="ext_time" label="MES时间" :min-width="flexWidth('ext_time',crud.data,'修改时间')" />-->
|
2023-10-31 09:44:35 +08:00
|
|
|
|
<el-table-column v-permission="[]" label="操作" width="120px" align="center" fixed="right">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<udOperation
|
|
|
|
|
|
:data="scope.row"
|
|
|
|
|
|
:permission="permission"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
<!--分页组件-->
|
|
|
|
|
|
<pagination />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import crudMdBaseMaterial from './mdBaseMaterial'
|
|
|
|
|
|
import crudMdBaseWorkShop from '@/views/wms/basedata/workshop/mdBaseWorkshop'
|
|
|
|
|
|
import Treeselect, { LOAD_CHILDREN_OPTIONS } from '@riophae/vue-treeselect'
|
|
|
|
|
|
import CRUD, { crud, form, header, presenter } from '@crud/crud'
|
|
|
|
|
|
import rrOperation from '@crud/RR.operation'
|
|
|
|
|
|
import crudOperation from '@crud/CRUD.operation'
|
|
|
|
|
|
import udOperation from '@crud/UD.operation'
|
|
|
|
|
|
import pagination from '@crud/Pagination'
|
|
|
|
|
|
|
|
|
|
|
|
const defaultForm = {
|
2024-01-12 20:39:37 +08:00
|
|
|
|
order_number: null,
|
2023-10-31 09:44:35 +08:00
|
|
|
|
material_id: null,
|
2024-01-12 20:39:37 +08:00
|
|
|
|
product_code: null,
|
2023-10-31 09:44:35 +08:00
|
|
|
|
material_code: null,
|
|
|
|
|
|
half_material_code: null,
|
|
|
|
|
|
raw_material_code: null,
|
|
|
|
|
|
material_name: null,
|
|
|
|
|
|
material_spec: null,
|
|
|
|
|
|
material_model: null,
|
|
|
|
|
|
a_long_side: null,
|
|
|
|
|
|
b_short_side: null,
|
|
|
|
|
|
h_height: null,
|
|
|
|
|
|
w_thickness: null,
|
|
|
|
|
|
class_id: null,
|
|
|
|
|
|
standing_time: 0,
|
|
|
|
|
|
cooling_time: 0,
|
2023-12-15 14:32:49 +08:00
|
|
|
|
single_weight: 0,
|
|
|
|
|
|
standing_time_lower: 0,
|
|
|
|
|
|
standing_time_upper: 0,
|
2023-10-31 09:44:35 +08:00
|
|
|
|
workshop_code: null,
|
|
|
|
|
|
pack_palletspec: null,
|
|
|
|
|
|
pack_method: null,
|
|
|
|
|
|
remark: null,
|
|
|
|
|
|
is_used: true,
|
2023-12-15 14:32:49 +08:00
|
|
|
|
is_special: false,
|
2023-10-31 09:44:35 +08:00
|
|
|
|
is_delete: false
|
|
|
|
|
|
}
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: 'MdBaseMaterial',
|
|
|
|
|
|
dicts: ['vehicle_type'],
|
|
|
|
|
|
components: { pagination, crudOperation, rrOperation, udOperation, Treeselect },
|
|
|
|
|
|
mixins: [presenter(), header(), form(defaultForm), crud()],
|
|
|
|
|
|
cruds() {
|
|
|
|
|
|
return CRUD({
|
|
|
|
|
|
title: '物料基础信息',
|
|
|
|
|
|
url: 'api/mdBaseMaterial',
|
|
|
|
|
|
idField: 'material_id',
|
|
|
|
|
|
sort: 'material_id,desc',
|
|
|
|
|
|
crudMethod: { ...crudMdBaseMaterial }
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
classes1: [],
|
|
|
|
|
|
permission: {
|
|
|
|
|
|
},
|
|
|
|
|
|
rules: {
|
2023-12-15 14:32:49 +08:00
|
|
|
|
raw_material_code: [
|
|
|
|
|
|
{ required: true, message: '原料不能为空', trigger: 'blur' }
|
|
|
|
|
|
],
|
|
|
|
|
|
material_name: [
|
|
|
|
|
|
{ required: true, message: '物料名称不能为空', trigger: 'blur' }
|
|
|
|
|
|
],
|
|
|
|
|
|
material_spec: [
|
|
|
|
|
|
{ required: true, message: '物料规格不能为空', trigger: 'blur' }
|
|
|
|
|
|
],
|
|
|
|
|
|
material_model: [
|
|
|
|
|
|
{ required: true, message: '砖型不能为空', trigger: 'blur' }
|
|
|
|
|
|
]
|
2023-10-31 09:44:35 +08:00
|
|
|
|
},
|
|
|
|
|
|
fullscreenLoading: false,
|
|
|
|
|
|
workShopList: []
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
created() {
|
|
|
|
|
|
this.getWorkShopList()
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
|
|
|
|
|
[CRUD.HOOK.beforeRefresh]() {
|
|
|
|
|
|
return true
|
|
|
|
|
|
},
|
|
|
|
|
|
synchronize() {
|
|
|
|
|
|
this.fullscreenLoading = true
|
|
|
|
|
|
crudMdBaseMaterial.synchronize(this.crud.query).then(res => {
|
|
|
|
|
|
this.fullscreenLoading = false
|
|
|
|
|
|
this.crud.notify('同步成功!', CRUD.NOTIFICATION_TYPE.SUCCESS)
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.fullscreenLoading = false
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
getWorkShopList() { // 获取车间列表
|
|
|
|
|
|
crudMdBaseWorkShop.getWorkShopList().then(res => {
|
|
|
|
|
|
this.workShopList = res
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
// 获取子节点数据
|
|
|
|
|
|
loadChildNodes({ action, parentNode, callback }) {
|
|
|
|
|
|
// if (action === LOAD_CHILDREN_OPTIONS) {
|
|
|
|
|
|
// crudClassstandard.getClass({ pid: parentNode.id }).then(res => {
|
|
|
|
|
|
// parentNode.children = res.content.map(function(obj) {
|
|
|
|
|
|
// if (obj.hasChildren) {
|
|
|
|
|
|
// obj.children = null
|
|
|
|
|
|
// }
|
|
|
|
|
|
// return obj
|
|
|
|
|
|
// })
|
|
|
|
|
|
// setTimeout(() => {
|
|
|
|
|
|
// callback()
|
|
|
|
|
|
// }, 100)
|
|
|
|
|
|
// })
|
|
|
|
|
|
// }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|