|
@@ -4,35 +4,42 @@
|
|
|
<h4>销售政策信息</h4>
|
|
|
<el-divider></el-divider>
|
|
|
<el-form
|
|
|
- :model="ruleForm"
|
|
|
+ :model="searchForm"
|
|
|
:rules="rules"
|
|
|
- ref="ruleForm"
|
|
|
+ ref="searchForm"
|
|
|
label-width="120px"
|
|
|
size="small"
|
|
|
- class="demo-ruleForm"
|
|
|
+ class="demo-searchForm"
|
|
|
>
|
|
|
<el-row>
|
|
|
<el-col :xs="24" :ms="12" :lg="12">
|
|
|
- <el-form-item label="销售政策编号" prop="name">
|
|
|
+ <el-form-item label="销售政策编号" prop="code">
|
|
|
<el-input
|
|
|
- v-model="ruleForm.name"
|
|
|
+ disabled
|
|
|
+ v-model="searchForm.code"
|
|
|
placeholder="如未填写,则系统自动生成"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :ms="12" :lg="12">
|
|
|
- <el-form-item label="销售政策说明" prop="name">
|
|
|
+ <el-form-item label="销售政策说明" prop="title">
|
|
|
<el-input
|
|
|
- v-model="ruleForm.name"
|
|
|
+ v-model="searchForm.title"
|
|
|
placeholder="销售政策说明"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :ms="12" :lg="12">
|
|
|
- <el-form-item label="销售政策类型" prop="name">
|
|
|
- <el-select v-model="value" placeholder="请选择">
|
|
|
+ <el-form-item label="销售政策类型" prop="type">
|
|
|
+ <el-select
|
|
|
+ size="small"
|
|
|
+ v-model="searchForm.type"
|
|
|
+ placeholder="销售政策类型"
|
|
|
+ @change="hanleChange"
|
|
|
+ class="select_height"
|
|
|
+ >
|
|
|
<el-option
|
|
|
- v-for="item in options"
|
|
|
+ v-for="item in typeOptions"
|
|
|
:key="item.value"
|
|
|
:label="item.label"
|
|
|
:value="item.value"
|
|
@@ -45,54 +52,54 @@
|
|
|
<el-form-item label="支付钱包类型" prop="name">
|
|
|
<el-select v-model="value" placeholder="请选择">
|
|
|
<el-option
|
|
|
- v-for="item in options"
|
|
|
- :key="item.value"
|
|
|
- :label="item.label"
|
|
|
- :value="item.value"
|
|
|
+ v-for="item in walletList"
|
|
|
+ :key="item.mainId"
|
|
|
+ :label="item.mainName"
|
|
|
+ :value="item.mainId"
|
|
|
>
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :xs="24" :ms="12" :lg="12">
|
|
|
- <el-form-item label="制单人" prop="name">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.name"
|
|
|
- placeholder=""
|
|
|
- ></el-input> </el-form-item
|
|
|
- ></el-col>
|
|
|
+
|
|
|
<el-col :xs="24" :ms="12" :lg="12">
|
|
|
<el-form-item label="制单日期" prop="name">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.name"
|
|
|
- placeholder="如未填写,则系统自动生成"
|
|
|
- ></el-input> </el-form-item
|
|
|
+ <el-date-picker
|
|
|
+ v-model="searchForm.name"
|
|
|
+ type="date"
|
|
|
+ placeholder="制单日期"
|
|
|
+ >
|
|
|
+ </el-date-picker> </el-form-item
|
|
|
></el-col>
|
|
|
|
|
|
<el-col :xs="24" :ms="12" :lg="12">
|
|
|
- <el-form-item label="生效日期" prop="name">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.name"
|
|
|
- placeholder=""
|
|
|
- ></el-input> </el-form-item
|
|
|
+ <el-form-item label="生效日期" prop="startTime">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="searchForm.startTime"
|
|
|
+ type="date"
|
|
|
+ placeholder="生效日期"
|
|
|
+ >
|
|
|
+ </el-date-picker> </el-form-item
|
|
|
></el-col>
|
|
|
<el-col :xs="24" :ms="12" :lg="12">
|
|
|
- <el-form-item label="失效日期" prop="name">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.name"
|
|
|
- placeholder=""
|
|
|
- ></el-input> </el-form-item
|
|
|
+ <el-form-item label="失效日期" prop="endTime">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="searchForm.endTime"
|
|
|
+ type="date"
|
|
|
+ placeholder="失效日期"
|
|
|
+ >
|
|
|
+ </el-date-picker> </el-form-item
|
|
|
></el-col>
|
|
|
<el-col :xs="24" :ms="24" :lg="24">
|
|
|
- <el-form-item label="表头备注" prop="name">
|
|
|
+ <el-form-item label="表头备注" prop="remark">
|
|
|
<el-input
|
|
|
- v-model="ruleForm.name"
|
|
|
+ v-model="searchForm.remark"
|
|
|
placeholder="新风机变频挂机。按提货数量1:3开单"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :ms="24" :lg="24">
|
|
|
- <el-form-item label="政策封面图">
|
|
|
+ <el-form-item label="政策封面图" prop="imgSrc">
|
|
|
<el-upload
|
|
|
class="avatar-uploader"
|
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
|
@@ -114,10 +121,17 @@
|
|
|
<el-row type="flex">
|
|
|
<el-col :span="12">
|
|
|
<h4 style="display: inline-block; margin-right: 20px">货品信息</h4>
|
|
|
- <el-button size="small"> 导入货品价格表</el-button></el-col
|
|
|
- >
|
|
|
- <el-col :span="12" class="tr">
|
|
|
- <el-button size="small">管理条件</el-button>
|
|
|
+ <el-upload
|
|
|
+ class="import-btn"
|
|
|
+ :action="baseURL + 'student/import'"
|
|
|
+ :http-request="handleImport"
|
|
|
+ :file-list="importFileList"
|
|
|
+ >
|
|
|
+ <el-button size="small">导入货品价格表</el-button>
|
|
|
+ </el-upload>
|
|
|
+ <el-button size="small" @click="hanleDownloadFiles"
|
|
|
+ >下载模板</el-button
|
|
|
+ >
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-divider></el-divider>
|
|
@@ -139,45 +153,99 @@
|
|
|
align="center"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="name" label="货品编码" align="center">
|
|
|
+ <el-table-column prop="materialNumber" label="货品编码" align="center">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="province" label="货品名称" align="center">
|
|
|
+ <el-table-column prop="materialName" label="货品名称" align="center">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="city" label="规格型号" align="center">
|
|
|
+ <el-table-column prop="specification" label="规格型号" align="center">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
- prop="address"
|
|
|
+ prop="saleTypeCode"
|
|
|
label="销售类型编码"
|
|
|
width="500"
|
|
|
align="center"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="zip" label="销售类型" align="center">
|
|
|
+ <el-table-column prop="saleTypeName" label="销售类型" align="center">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="zip" label="单价" align="center">
|
|
|
+ <el-table-column prop="price" label="单价" align="center">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="zip" label="支付钱包" align="center">
|
|
|
+ <el-table-column label="支付钱包" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag
|
|
|
+ type="danger"
|
|
|
+ size="small"
|
|
|
+ v-if="scope.row.walletCommonly == 1"
|
|
|
+ >
|
|
|
+ 允许普通钱包
|
|
|
+ </el-tag>
|
|
|
+ <el-tag type="danger" size="small" v-else
|
|
|
+ >不允许使用普通钱包</el-tag
|
|
|
+ >
|
|
|
+ <el-tag
|
|
|
+ type="danger"
|
|
|
+ size="small"
|
|
|
+ v-if="scope.row.walletDeduct == 1"
|
|
|
+ >
|
|
|
+ 允许抵扣钱包</el-tag
|
|
|
+ >
|
|
|
+ <el-tag type="danger" size="small" v-else>不允许抵扣钱包</el-tag>
|
|
|
+ <el-tag
|
|
|
+ type="danger"
|
|
|
+ size="small"
|
|
|
+ v-if="scope.row.walletRebate == 1"
|
|
|
+ >
|
|
|
+ 允许返利钱包
|
|
|
+ </el-tag>
|
|
|
+ <el-tag type="danger" size="small" v-else>不允许返利钱包</el-tag>
|
|
|
+ <el-tag
|
|
|
+ type="danger"
|
|
|
+ size="small"
|
|
|
+ v-if="scope.row.walletSpecial == 1"
|
|
|
+ >允许特殊钱包</el-tag
|
|
|
+ >
|
|
|
+ <el-tag type="danger" size="small" v-else> 不允许特殊钱包 </el-tag>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column fixed="right" label="操作" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button type="text" size="small">删除</el-button>
|
|
|
+ <el-popconfirm
|
|
|
+ title="这是一段内容确定删除吗?"
|
|
|
+ @onConfirm="hnaleDelete(scope.row.id)"
|
|
|
+ >
|
|
|
+ <el-button slot="reference" size="small">删除</el-button>
|
|
|
+ </el-popconfirm>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
- <Pagination />
|
|
|
+ <!-- 分页 -->
|
|
|
+ <div class="fr">
|
|
|
+ <el-pagination
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ :current-page="currentPage"
|
|
|
+ :page-sizes="[10, 20, 30, 50]"
|
|
|
+ :page-size="10"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ :total="listTotal"
|
|
|
+ >
|
|
|
+ </el-pagination>
|
|
|
+ </div>
|
|
|
<el-row>
|
|
|
<el-divider></el-divider>
|
|
|
<el-row type="flex">
|
|
|
<el-col :span="12">
|
|
|
<h4 style="display: inline-block; margin-right: 20px">条件信息</h4>
|
|
|
- <el-button size="small">添加</el-button></el-col
|
|
|
+ <el-button size="small" @click="$parent.isShow = 3"
|
|
|
+ >管理条件</el-button
|
|
|
+ ></el-col
|
|
|
>
|
|
|
</el-row>
|
|
|
<el-divider></el-divider>
|
|
|
</el-row>
|
|
|
<el-table
|
|
|
v-loading="listLoading"
|
|
|
- :data="dataList"
|
|
|
+ :data="conditionList"
|
|
|
element-loading-text="Loading"
|
|
|
border
|
|
|
fit
|
|
@@ -186,7 +254,7 @@
|
|
|
>
|
|
|
<el-table-column
|
|
|
fixed
|
|
|
- prop="num"
|
|
|
+ type="index"
|
|
|
label="序号"
|
|
|
width="50"
|
|
|
align="center"
|
|
@@ -194,13 +262,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="name" label="限定条件" align="center">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="province" label="限定机型" align="center">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="city" label="配体机型" align="center">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column fixed="right" label="操作" align="center">
|
|
|
+ <el-table-column fixed="right" width="150" label="操作" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button type="text" size="small">编辑</el-button>
|
|
|
<el-button type="text" size="small">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -217,27 +280,46 @@
|
|
|
</el-row>
|
|
|
<el-divider></el-divider>
|
|
|
</el-row>
|
|
|
- <el-row class="radio">
|
|
|
- <el-radio v-model="radio" label="1">全部经销商</el-radio>
|
|
|
- <el-radio v-model="radio" label="2">品类</el-radio>
|
|
|
- <el-radio v-model="radio" label="1">地区</el-radio>
|
|
|
- <el-radio v-model="radio" label="2">指定</el-radio>
|
|
|
- </el-row>
|
|
|
- <Transfer />
|
|
|
+
|
|
|
+ <Transfer @handleAddPolicy="handleAddPolicy" :dataL="customerList" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import {
|
|
|
+ getId,
|
|
|
+ addPoliy,
|
|
|
+ getTypeList,
|
|
|
+ getWalletList,
|
|
|
+ getMaterialList,
|
|
|
+ getConditionList,
|
|
|
+ getCrList,
|
|
|
+} from "@/api/supply/sales";
|
|
|
+import {
|
|
|
+ downloadFiles,
|
|
|
+ handleImport,
|
|
|
+ deleteMaterialPolicy,
|
|
|
+} from "@/utils/util";
|
|
|
+import Minxin from "@/mixin";
|
|
|
import Pagination from "@/components/Pagination";
|
|
|
import Transfer from "./Transfer";
|
|
|
export default {
|
|
|
+ mixins: [Minxin],
|
|
|
data() {
|
|
|
return {
|
|
|
input: "",
|
|
|
-
|
|
|
- ruleForm: {
|
|
|
+ baseURL: "",
|
|
|
+ searchForm: {
|
|
|
+ code: "",
|
|
|
name: "",
|
|
|
+ type: "",
|
|
|
+ endTime: "",
|
|
|
+ imgSrc: "",
|
|
|
+ remark: "",
|
|
|
+ startTime: "",
|
|
|
+ title: "",
|
|
|
+ type: "",
|
|
|
},
|
|
|
listLoading: false,
|
|
|
rules: {
|
|
@@ -247,76 +329,177 @@ export default {
|
|
|
],
|
|
|
},
|
|
|
imageUrl: "",
|
|
|
- dataList: [
|
|
|
- {
|
|
|
- num: "2",
|
|
|
- name: "王小虎",
|
|
|
- province: "上海",
|
|
|
- city: "普陀区",
|
|
|
- address: "上海市普陀区金沙江路 1518 弄",
|
|
|
- zip: 200333,
|
|
|
- },
|
|
|
- {
|
|
|
- num: "2",
|
|
|
- name: "王小虎",
|
|
|
- province: "上海",
|
|
|
- city: "普陀区",
|
|
|
- address: "上海市普陀区金沙江路 1518 弄",
|
|
|
- zip: 200333,
|
|
|
- },
|
|
|
- {
|
|
|
- num: "2",
|
|
|
- name: "王小虎",
|
|
|
- province: "上海",
|
|
|
- city: "普陀区",
|
|
|
- address: "上海市普陀区金沙江路 1518 弄",
|
|
|
- zip: 200333,
|
|
|
- },
|
|
|
- {
|
|
|
- num: "2",
|
|
|
- name: "王小虎",
|
|
|
- province: "上海",
|
|
|
- city: "普陀区",
|
|
|
- address: "上海市普陀区金沙江路 1518 弄",
|
|
|
- zip: 200333,
|
|
|
- },
|
|
|
- {
|
|
|
- num: "2",
|
|
|
- name: "王小虎",
|
|
|
- province: "上海",
|
|
|
- city: "普陀区",
|
|
|
- address: "上海市普陀区金沙江路 1518 弄",
|
|
|
- zip: 200333,
|
|
|
- },
|
|
|
+ dataList: [],
|
|
|
+ importFileList: [],
|
|
|
+ fileList: [],
|
|
|
+ options: {},
|
|
|
+ value: "",
|
|
|
+ typeList: [],
|
|
|
+ walletList: [],
|
|
|
+ typeOptions: [
|
|
|
{
|
|
|
- num: "2",
|
|
|
- name: "王小虎",
|
|
|
- province: "上海",
|
|
|
- city: "普陀区",
|
|
|
- address: "上海市普陀区金沙江路 1518 弄",
|
|
|
- zip: 200333,
|
|
|
+ vlaue: "PROVISION",
|
|
|
+ label: "配提",
|
|
|
},
|
|
|
{
|
|
|
- num: "2",
|
|
|
- name: "王小虎",
|
|
|
- province: "上海",
|
|
|
- city: "普陀区",
|
|
|
- address: "上海市普陀区金沙江路 1518 弄",
|
|
|
- zip: 200333,
|
|
|
+ value: "LIMIT",
|
|
|
+ label: "限量",
|
|
|
},
|
|
|
],
|
|
|
- radio: "",
|
|
|
- options: {},
|
|
|
- value: "",
|
|
|
+ conditionList: [],
|
|
|
};
|
|
|
},
|
|
|
-
|
|
|
+ created() {
|
|
|
+ this.getCommonApi();
|
|
|
+ },
|
|
|
+ mounted() {},
|
|
|
methods: {
|
|
|
- handelLeftCheck(e) {
|
|
|
- console.log(e);
|
|
|
+ //下载excel模板
|
|
|
+ hanleDownloadFiles() {
|
|
|
+ downloadFiles("/policy/download");
|
|
|
+ },
|
|
|
+ //删除
|
|
|
+ hnaleDelete(id) {
|
|
|
+ deleteMaterialPolicy({ policyMaterialId: id }).then(() => {
|
|
|
+ this.$sccussMsg("删除成功");
|
|
|
+ this.handletwoList();
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getCommonApi() {
|
|
|
+ const params = {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ saleCode: "",
|
|
|
+ saleName: "",
|
|
|
+ status: "",
|
|
|
+ };
|
|
|
+ const walletParams = {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ mainName: "",
|
|
|
+ saleTypeCode: "",
|
|
|
+ saleTypeName: "",
|
|
|
+ status: "",
|
|
|
+ };
|
|
|
+ const customerParams = {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ keyword: "",
|
|
|
+ region: "",
|
|
|
+ };
|
|
|
+ // 获取销售政策编号
|
|
|
+ getId().then((res) => {
|
|
|
+ console.log(res.data);
|
|
|
+ this.searchForm.code = res.data;
|
|
|
+ });
|
|
|
+ // 获取销售类型列表
|
|
|
+ getTypeList(params).then((res) => {
|
|
|
+ this.typeList = res.data.records;
|
|
|
+ console.log(this.typeList, "type");
|
|
|
+ });
|
|
|
+ // 获取钱包列表
|
|
|
+ getWalletList(walletParams).then((res) => {
|
|
|
+ this.walletList = res.data.records;
|
|
|
+ });
|
|
|
+ // 获取经销商列表
|
|
|
+ getCrList(customerParams).then((res) => {
|
|
|
+ this.customerList = res.data.records;
|
|
|
+ console.log(this.customerList, 12345797);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 导入
|
|
|
+ async handleImport(param) {
|
|
|
+ this.importLoading = true;
|
|
|
+ const file = param.file;
|
|
|
+ console.log(file, 123);
|
|
|
+ const formData = new FormData();
|
|
|
+ formData.append("file", file);
|
|
|
+ formData.append("policyId", this.searchForm.code);
|
|
|
+ let result = await handleImport("/policy/material/import", formData);
|
|
|
+ this.importLoading = false;
|
|
|
+ this.importFileList = [];
|
|
|
+ if (result.code == 200) {
|
|
|
+ this.$alert(result.message, "导入成功", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ });
|
|
|
+ this.getList();
|
|
|
+ } else {
|
|
|
+ this.$alert(result.message, "导入失败", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ getList() {
|
|
|
+ const params = {
|
|
|
+ policyId: this.searchForm.code,
|
|
|
+ };
|
|
|
+ // 获取条件政策
|
|
|
+ getConditionList(params).then((res) => {
|
|
|
+ this.conditionList = res.data;
|
|
|
+ });
|
|
|
+ this.handletwoList();
|
|
|
},
|
|
|
+ //获取政策id调取货品信息
|
|
|
+ hanleChange() {
|
|
|
+ this.handletwoList();
|
|
|
+ },
|
|
|
+ // 获取货品信息
|
|
|
+ handletwoList() {
|
|
|
+ const params = {
|
|
|
+ pageNum: this.currentPage,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ policyId: this.searchForm.code,
|
|
|
+ saleTypeCode: this.searchForm.type,
|
|
|
+ };
|
|
|
+ getMaterialList(params)
|
|
|
+ .then((result) => {
|
|
|
+ this.dataList = result.data.records;
|
|
|
+ console.log(result);
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ console.error(err);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 获取图片路径
|
|
|
beforeAvatarUpload() {},
|
|
|
handleAvatarSuccess() {},
|
|
|
+ // 提交审核
|
|
|
+ handleAddPolicy(policyCustomers) {
|
|
|
+ console.log(policyCustomers, "选择的经销商");
|
|
|
+ const params = {
|
|
|
+ adminCompanyId: "",
|
|
|
+ code: this.searchForm.code,
|
|
|
+ customerCount: 0,
|
|
|
+ endTime: this.searchForm.endTime,
|
|
|
+ examineBy: this.searchForm.examineBy,
|
|
|
+ examineRemark: this.searchForm.examineRemark,
|
|
|
+ examineStatus: this.searchForm.examineStatus,
|
|
|
+ examineTime: this.searchForm.examineTime,
|
|
|
+ id: null,
|
|
|
+ imgSrc: this.searchForm.imgSrc,
|
|
|
+ policyCustomers: [
|
|
|
+ // {
|
|
|
+ // "customerId": "",
|
|
|
+ // "customerName": "",
|
|
|
+ // "customerNumber": "",
|
|
|
+ // "id": "",
|
|
|
+ // "lastOrderTime": "",
|
|
|
+ // "limitTakeNum": 0,
|
|
|
+ // "policyId": "",
|
|
|
+ // "policyTitle": "",
|
|
|
+ // "remark": "",
|
|
|
+ // }
|
|
|
+ ],
|
|
|
+ remark: this.searchForm.remark,
|
|
|
+ startTime: this.searchForm.startTime,
|
|
|
+ status: true,
|
|
|
+ title: this.searchForm.title,
|
|
|
+ type: this.searchForm.type,
|
|
|
+ };
|
|
|
+ addPoliy(params).then((res) => {
|
|
|
+ console.log(res);
|
|
|
+ });
|
|
|
+ },
|
|
|
},
|
|
|
components: {
|
|
|
Transfer,
|
|
@@ -332,7 +515,10 @@ h4 {
|
|
|
.pdt {
|
|
|
padding-top: 20px;
|
|
|
}
|
|
|
-
|
|
|
+.import-btn {
|
|
|
+ margin-right: 10px;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
.radio {
|
|
|
padding: 20px 0;
|
|
|
}
|