|
@@ -1,188 +1,185 @@
|
|
|
<template>
|
|
|
- <!-- 编辑成衣 回显信息,有文本框 通过是否有id判断-->
|
|
|
- <a-card :bordered="false">
|
|
|
- <a-drawer
|
|
|
- title="编辑"
|
|
|
- width="89%"
|
|
|
- placement="right"
|
|
|
- :closable="true"
|
|
|
- :visible="visible"
|
|
|
- @close="handleCancel">
|
|
|
- <!-- 主表信息 编辑-->
|
|
|
- <div class="table-page-search-wrapper">
|
|
|
- <a-form-model layout="inline" ref="form" :model="clothesAdd" :rules="validatorRules">
|
|
|
- <a-row :gutter="24">
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="订单号" prop="orderNum">
|
|
|
- <a-input placeholder="请输入订单号" v-model="clothesAdd.orderNum"></a-input>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="款号" prop="styleNum">
|
|
|
- <a-input placeholder="请输入款号" v-model="clothesAdd.styleNum"></a-input>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="品名" prop="name">
|
|
|
- <a-input placeholder="请输入品名" v-model="clothesAdd.name"></a-input>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="尺码范围" prop="sizeRange">
|
|
|
- <a-input placeholder="请输入尺码范围" v-model="clothesAdd.sizeRange"></a-input>
|
|
|
- <!-- <a-select placeholder="请选择尺码范围">
|
|
|
+ <!-- 编辑成衣 回显可输入-->
|
|
|
+ <div id="clothesAddDrawer">
|
|
|
+ <a-drawer title="编辑" width="89%" placement="right" :closable="true" :visible="visible" @close="handleCancel">
|
|
|
+ <!-- 主表信息 填写-->
|
|
|
+ <a-card :bordered="true">
|
|
|
+ <div class="table-page-search-wrapper">
|
|
|
+ <a-form-model layout="inline" ref="form" :model="clothesAdd" :rules="validatorRules">
|
|
|
+ <a-row :gutter="24">
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="订单号" prop="orderNum">
|
|
|
+ <a-input placeholder="请输入订单号" v-model="clothesAdd.orderNum"></a-input>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="款号" prop="styleNum">
|
|
|
+ <a-input placeholder="请输入款号" v-model="clothesAdd.styleNum"></a-input>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="品名" prop="name">
|
|
|
+ <a-input placeholder="请输入品名" v-model="clothesAdd.name"></a-input>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="尺码范围" prop="sizeRange">
|
|
|
+ <a-input placeholder="请输入尺码范围" v-model="clothesAdd.sizeRange"></a-input>
|
|
|
+ <!-- <a-select placeholder="请选择尺码范围">
|
|
|
<a-select-option value="">请选择</a-select-option>
|
|
|
<a-select-option value="0">客户1</a-select-option>
|
|
|
<a-select-option value="1">客户2</a-select-option>
|
|
|
<a-select-option value="2">客户3</a-select-option>
|
|
|
</a-select> -->
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="客户" prop="customer">
|
|
|
- <a-input placeholder="请输入客户" v-model="clothesAdd.customer"></a-input>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="集装箱代号" prop="containerCode">
|
|
|
- <a-input placeholder="请输入集装箱代号" v-model="clothesAdd.containerCode"></a-input>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="集装箱号" prop="containerNo">
|
|
|
- <a-input placeholder="请输入集装箱号" v-model="clothesAdd.containerNo"></a-input>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="备注" prop="note">
|
|
|
- <a-input placeholder="请输入备注" v-model="clothesAdd.note"></a-input>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="成衣工厂" prop="clothesFactory">
|
|
|
- <a-input placeholder="请输入成衣工厂" v-model="clothesAdd.clothesFactory"></a-input>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="外销发票号" prop="exportInvoiceNo">
|
|
|
- <a-input placeholder="请输入外销发票号" v-model="clothesAdd.exportInvoiceNo"></a-input>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-model-item label="托书号" prop="bookNum">
|
|
|
- <a-input placeholder="请输入托书号" v-model="clothesAdd.bookNum"></a-input>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- </a-form-model>
|
|
|
- </div>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="客户" prop="customer">
|
|
|
+ <a-input placeholder="请输入客户" v-model="clothesAdd.customer"></a-input>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="集装箱代号" prop="containerCode">
|
|
|
+ <a-input placeholder="请输入集装箱代号" v-model="clothesAdd.containerCode"></a-input>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="集装箱号" prop="containerNo">
|
|
|
+ <a-input placeholder="请输入集装箱号" v-model="clothesAdd.containerNo"></a-input>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="备注" prop="note">
|
|
|
+ <a-input placeholder="请输入备注" v-model="clothesAdd.note"></a-input>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="成衣工厂" prop="clothesFactory">
|
|
|
+ <a-input placeholder="请输入成衣工厂" v-model="clothesAdd.clothesFactory"></a-input>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="外销发票号" prop="exportInvoiceNo">
|
|
|
+ <a-input placeholder="请输入外销发票号" v-model="clothesAdd.exportInvoiceNo"></a-input>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-model-item label="托书号" prop="bookNum">
|
|
|
+ <a-input placeholder="请输入托书号" v-model="clothesAdd.bookNum"></a-input>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-form-model>
|
|
|
+ </div>
|
|
|
+ </a-card>
|
|
|
|
|
|
<!--操作按钮区域 参照预装箱单 増行-->
|
|
|
- <div class="table-operator">
|
|
|
- <a-button type="primary" @click="referadvancePackingList" icon="ordered-list">参照预装箱单</a-button>
|
|
|
- <a-button type="primary" @click="handleAddColumn" icon="plus" style="margin-left: 20px">増行</a-button>
|
|
|
- </div>
|
|
|
-
|
|
|
- <!-- 子表 :pagination="ipagination" -->
|
|
|
- <a-spin :spinning="confirmLoading">
|
|
|
- <a-form-model ref="formRef" :rules="validatorRules">
|
|
|
- <a-table
|
|
|
- bordered
|
|
|
- :row-key="record => record.id"
|
|
|
- :columns="columns"
|
|
|
- :data-source="data"
|
|
|
- :loading="loading"
|
|
|
- :pagination="false"
|
|
|
- :scroll="{ x: 1500 }"
|
|
|
- @change="handleTableChange"
|
|
|
- >
|
|
|
- <!-- 启始箱号 输入框-->
|
|
|
-
|
|
|
- <template slot="inceptionBoxNo" slot-scope="text, record, index">
|
|
|
- <a-form-model-item prop="inceptionBoxNo" :rules="rules.styleNum" required>
|
|
|
- <a-input style="width:100%" type="text" v-model="record.inceptionBoxNo" />
|
|
|
- </a-form-model-item>
|
|
|
- </template>
|
|
|
-
|
|
|
- <!-- 结束箱号 输入框-->
|
|
|
- <template slot="endBoxNo" slot-scope="text, record, index">
|
|
|
- <a-form-model-item prop="endBoxNo" :rules="rules.styleNum" required>
|
|
|
- <a-input style="width:100%" type="text" v-model="record.endBoxNo" />
|
|
|
- </a-form-model-item>
|
|
|
- </template>
|
|
|
-
|
|
|
- <!-- 件数/箱 输入框-->
|
|
|
-
|
|
|
- <template slot="packagesBox" slot-scope="text, record, index">
|
|
|
- <a-form-model-item prop="packagesBox" :rules="rules.styleNum" required>
|
|
|
- <a-input style="width:100%" type="text" v-model="record.packagesBox" />
|
|
|
- </a-form-model-item>
|
|
|
- </template>
|
|
|
-
|
|
|
- <!--箱数 输入框-->
|
|
|
- <template slot="boxes" slot-scope="text, record, index">
|
|
|
- <a-form-model-item prop="boxes" :rules="rules.styleNum" required>
|
|
|
- <a-input style="width:100%" type="text" v-model="record.boxes" />
|
|
|
- </a-form-model-item>
|
|
|
- </template>
|
|
|
-
|
|
|
- <!--净重/箱 输入框-->
|
|
|
- <template slot="suttle" slot-scope="text, record, index">
|
|
|
- <a-form-model-item prop="suttle" :rules="rules.styleNum" required>
|
|
|
- <a-input style="width:100%" type="text" v-model="record.suttle" />
|
|
|
- </a-form-model-item>
|
|
|
- </template>
|
|
|
-
|
|
|
- <!--毛重/箱 输入框-->
|
|
|
- <template slot="roughWeight" slot-scope="text, record, index">
|
|
|
- <a-form-model-item prop="roughWeight" :rules="rules.styleNum" required>
|
|
|
- <a-input style="width:100%" type="text" v-model="record.roughWeight" />
|
|
|
- </a-form-model-item>
|
|
|
- </template>
|
|
|
-
|
|
|
- <!--外箱长度 输入框-->
|
|
|
- <template slot="boxLength" slot-scope="text, record, index">
|
|
|
- <a-form-model-item prop="boxLength" :rules="rules.styleNum" required>
|
|
|
- <a-input style="width:100%" type="text" v-model="record.boxLength" />
|
|
|
- </a-form-model-item>
|
|
|
- </template>
|
|
|
-
|
|
|
- <!--外箱宽度 输入框-->
|
|
|
- <template slot="boxWidth" slot-scope="text, record, index">
|
|
|
- <a-form-model-item prop="boxWidth" :rules="rules.styleNum" required>
|
|
|
- <a-input style="width:100%" type="text" v-model="record.boxWidth" />
|
|
|
- </a-form-model-item>
|
|
|
- </template>
|
|
|
-
|
|
|
- <!--外箱高度 输入框-->
|
|
|
-
|
|
|
- <template slot="boxHeight" slot-scope="text, record, index">
|
|
|
- <a-form-model-item prop="boxHeight" :rules="rules.styleNum" required>
|
|
|
- <a-input style="width:100%" type="text" v-model="record.boxHeight" />
|
|
|
- </a-form-model-item>
|
|
|
- </template>
|
|
|
-
|
|
|
- <!-- 操作 -->
|
|
|
- <span slot="operationSlot" slot-scope="text, record">
|
|
|
- <a-popconfirm title="确定删除吗?" ok-text="是" cancel-text="否" @confirm="handleDelete(record.id)">
|
|
|
- <a href="javascript:void(0);" style="color:red;">删除</a>
|
|
|
- </a-popconfirm>
|
|
|
- <a-divider type="vertical" />
|
|
|
- <a @click="copy(record)">复制</a>
|
|
|
- </span>
|
|
|
- </a-table>
|
|
|
- </a-form-model>
|
|
|
- </a-spin>
|
|
|
+ <a-card :bordered="true" style="margin:10px 0 60px 0;">
|
|
|
+ <div class="table-operator">
|
|
|
+ <a-button type="primary" @click="referadvancePackingList" icon="ordered-list">参照预装箱单</a-button>
|
|
|
+ <a-button type="primary" @click="handleAddColumn" icon="plus" style="margin-left: 20px">増行</a-button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 子表 :pagination="ipagination" -->
|
|
|
+ <a-spin :spinning="confirmLoading">
|
|
|
+ <a-form-model ref="formRef" :rules="validatorRules">
|
|
|
+ <a-table
|
|
|
+ bordered
|
|
|
+ :row-key="record => record.id"
|
|
|
+ :columns="columns"
|
|
|
+ :data-source="data"
|
|
|
+ :loading="loading"
|
|
|
+ :pagination="ipagination"
|
|
|
+ :scroll="{ x: 1500 }"
|
|
|
+ @change="handleTableChange"
|
|
|
+ >
|
|
|
+ <!-- 启始箱号 输入框-->
|
|
|
+ <template slot="inceptionBoxNo" slot-scope="text, record, index">
|
|
|
+ <a-form-model-item prop="inceptionBoxNo" :rules="rules.styleNum" required>
|
|
|
+ <a-input style="width:100%" type="text" v-model="record.inceptionBoxNo" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!-- 结束箱号 输入框-->
|
|
|
+ <template slot="endBoxNo" slot-scope="text, record, index">
|
|
|
+ <a-form-model-item prop="endBoxNo" :rules="rules.styleNum" required>
|
|
|
+ <a-input style="width:100%" type="text" v-model="record.endBoxNo" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!-- 件数/箱 输入框-->
|
|
|
+
|
|
|
+ <template slot="packagesBox" slot-scope="text, record, index">
|
|
|
+ <a-form-model-item prop="packagesBox" :rules="rules.styleNum" required>
|
|
|
+ <a-input style="width:100%" type="text" v-model="record.packagesBox" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!--箱数 输入框-->
|
|
|
+ <template slot="boxes" slot-scope="text, record, index">
|
|
|
+ <a-form-model-item prop="boxes" :rules="rules.styleNum" required>
|
|
|
+ <a-input style="width:100%" type="text" v-model="record.boxes" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!--净重/箱 输入框-->
|
|
|
+ <template slot="suttle" slot-scope="text, record, index">
|
|
|
+ <a-form-model-item prop="suttle" :rules="rules.styleNum" required>
|
|
|
+ <a-input style="width:100%" type="text" v-model="record.suttle" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!--毛重/箱 输入框-->
|
|
|
+ <template slot="roughWeight" slot-scope="text, record, index">
|
|
|
+ <a-form-model-item prop="roughWeight" :rules="rules.styleNum" required>
|
|
|
+ <a-input style="width:100%" type="text" v-model="record.roughWeight" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!--外箱长度 输入框-->
|
|
|
+ <template slot="boxLength" slot-scope="text, record, index">
|
|
|
+ <a-form-model-item prop="boxLength" :rules="rules.styleNum" required>
|
|
|
+ <a-input style="width:100%" type="text" v-model="record.boxLength" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!--外箱宽度 输入框-->
|
|
|
+ <template slot="boxWidth" slot-scope="text, record, index">
|
|
|
+ <a-form-model-item prop="boxWidth" :rules="rules.styleNum" required>
|
|
|
+ <a-input style="width:100%" type="text" v-model="record.boxWidth" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!--外箱高度 输入框-->
|
|
|
+
|
|
|
+ <template slot="boxHeight" slot-scope="text, record, index">
|
|
|
+ <a-form-model-item prop="boxHeight" :rules="rules.styleNum" required>
|
|
|
+ <a-input style="width:100%" type="text" v-model="record.boxHeight" />
|
|
|
+ </a-form-model-item>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!-- 操作 -->
|
|
|
+ <span slot="operationSlot" slot-scope="text, record">
|
|
|
+ <a-popconfirm title="确定删除吗?" ok-text="是" cancel-text="否" @confirm="handleDelete(record.id)">
|
|
|
+ <a href="javascript:void(0);" style="color:red;">删除</a>
|
|
|
+ </a-popconfirm>
|
|
|
+ <a-divider type="vertical" />
|
|
|
+ <a @click="copy(record)">复制</a>
|
|
|
+ </span>
|
|
|
+ </a-table>
|
|
|
+ </a-form-model>
|
|
|
+ </a-spin>
|
|
|
+ </a-card>
|
|
|
|
|
|
<!-- 页面底部提交取消 -->
|
|
|
<div
|
|
@@ -198,10 +195,10 @@
|
|
|
zIndex: 1
|
|
|
}"
|
|
|
>
|
|
|
- <a-popconfirm title="确定放弃编辑?" @confirm="handleCancel" okText="确定" cancelText="取消">
|
|
|
+ <a-popconfirm title="确定放弃新增?" @confirm="handleCancel" okText="确定" cancelText="取消">
|
|
|
<a-button :style="{ marginRight: '8px' }">取消</a-button>
|
|
|
</a-popconfirm>
|
|
|
- <a-button type="primary" @click="submitEdit">
|
|
|
+ <a-button type="primary" @click="submitAdd">
|
|
|
提交
|
|
|
</a-button>
|
|
|
</div>
|
|
@@ -209,7 +206,7 @@
|
|
|
|
|
|
<!-- 参照预装箱单 -->
|
|
|
<advancePackingList-modal ref="advancePackingListModal" :father="aa" @ok="modalFormOk"></advancePackingList-modal>
|
|
|
- </a-card>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -218,7 +215,7 @@ import JEllipsis from '@/components/jeecg/JEllipsis'
|
|
|
import AdvancePackingListModal from '@views/pre-book/advancePackingListModal.vue'
|
|
|
|
|
|
export default {
|
|
|
- name: 'EditClothesDrawer', // 编辑-- 装箱单 -成衣
|
|
|
+ name: 'EditClothesDrawer', // 编辑-装箱单 -成衣
|
|
|
mixins: [JeecgListMixin],
|
|
|
computed: {},
|
|
|
components: { AdvancePackingListModal, JEllipsis }, // 参照预装箱单 弹框
|
|
@@ -463,6 +460,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created() {},
|
|
|
+ mounted() {},
|
|
|
methods: {
|
|
|
// 参照预装箱单
|
|
|
referadvancePackingList() {
|
|
@@ -470,7 +468,6 @@ export default {
|
|
|
// 打开订单数据弹框
|
|
|
this.$refs.advancePackingListModal.advancePackingListModVis = true
|
|
|
},
|
|
|
-
|
|
|
// 増行
|
|
|
handleAddColumn() {
|
|
|
console.log('増行')
|
|
@@ -519,16 +516,16 @@ export default {
|
|
|
},
|
|
|
// 操作按钮 复制
|
|
|
copy(record) {},
|
|
|
-
|
|
|
// -------------------------------------
|
|
|
+
|
|
|
// 抽屉 取消
|
|
|
handleCancel() {
|
|
|
- console.log('抽屉取消')
|
|
|
+ console.log('点击抽屉取消')
|
|
|
this.close()
|
|
|
},
|
|
|
// 抽屉 提交
|
|
|
- submitEdit() {
|
|
|
- console.log('保存编辑、刷新装箱单-成衣列表')
|
|
|
+ submitAdd() {
|
|
|
+ console.log('保存新增、刷新发运明细列表')
|
|
|
const that = this
|
|
|
// 触发表单验证
|
|
|
this.$refs.form.validate(valid => {
|
|
@@ -537,16 +534,18 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
this.close()
|
|
|
- // this.getShipmentList() // 刷新 装箱单-成衣
|
|
|
+ // this.getShipmentList() // 刷新 装箱单-成衣列表
|
|
|
},
|
|
|
|
|
|
+ // -------------------------------------
|
|
|
close() {
|
|
|
this.$emit('close')
|
|
|
this.visible = false
|
|
|
this.$refs.form.resetFields()
|
|
|
},
|
|
|
-
|
|
|
- // -------------------------------------
|
|
|
+ // - father------------------------------------
|
|
|
+ aa() {},
|
|
|
+ modalFormOk() {}
|
|
|
|
|
|
// 分页、排序、筛选变化时触发
|
|
|
// handleTableChange(pagination, filters, sorter) {
|
|
@@ -554,12 +553,7 @@ export default {
|
|
|
// this.queryParam.pageNo = pagination.current
|
|
|
// this.getAnnList()
|
|
|
// }'
|
|
|
-
|
|
|
- // - father------------------------------------
|
|
|
- aa() {}
|
|
|
- },
|
|
|
-
|
|
|
- mounted() {}
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|
|
@@ -578,4 +572,12 @@ export default {
|
|
|
// /deep/ th.replacecolor {
|
|
|
// background-color: #ccc;
|
|
|
// }
|
|
|
+
|
|
|
+// 抽屉里的card样式
|
|
|
+/deep/ .ant-drawer-content {
|
|
|
+ background-color: #f0f2f5;
|
|
|
+}
|
|
|
+/deep/ .ant-drawer-body {
|
|
|
+ padding: 10px;
|
|
|
+}
|
|
|
</style>
|