|
@@ -0,0 +1,559 @@
|
|
|
+<template>
|
|
|
+ <div style="height: 100%">
|
|
|
+ <template v-if="purchaseApplyArea && purchaseApplyAreaParam.openType === 'add'">
|
|
|
+ <el-page-header class="pdt" content="新增采购申请单" @back="backUpdPage" />
|
|
|
+ <el-divider />
|
|
|
+ </template>
|
|
|
+ <template v-else-if="purchaseApplyArea && purchaseApplyAreaParam.openType !== 'add'">
|
|
|
+ <el-page-header
|
|
|
+ class="pdt"
|
|
|
+ :content="purchaseApplyAreaParam.openType === 'view' ? '查看采购申请单' : '编辑采购申请单'"
|
|
|
+ @back="backUpdPage"
|
|
|
+ />
|
|
|
+ <el-divider />
|
|
|
+ </template>
|
|
|
+ <div v-show="!purchaseApplyArea" style="height: 100%">
|
|
|
+ <template-page
|
|
|
+ ref="pageRef"
|
|
|
+ :loading="listLoading"
|
|
|
+ :getList="getList"
|
|
|
+ :exportList="exportList"
|
|
|
+ :columnParsing="columnParsing"
|
|
|
+ :operation="operation()"
|
|
|
+ :optionsEvensGroup="optionsEvensGroup"
|
|
|
+ :tableAttributes="tableAttributes"
|
|
|
+ :tableEvents="tableEvents"
|
|
|
+ >
|
|
|
+ </template-page>
|
|
|
+ <!-- <div class="screen-container">
|
|
|
+ <div class="top clearfix">
|
|
|
+ <div class="title fl">条件筛选</div>
|
|
|
+ </div>
|
|
|
+ <el-form
|
|
|
+ ref="screenForm"
|
|
|
+ :model="screenForm"
|
|
|
+ label-width="90px"
|
|
|
+ size="small"
|
|
|
+ label-position="left"
|
|
|
+ >
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col v-if="showShopInfo" :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="网点" prop="shopId">
|
|
|
+ <el-select
|
|
|
+ v-model="screenForm.shopId"
|
|
|
+ filterable
|
|
|
+ style="width: 100%;"
|
|
|
+ size="small"
|
|
|
+ >
|
|
|
+ <el-option label="全部网点" value="" />
|
|
|
+ <el-option
|
|
|
+ v-for="(item, index) in authShop"
|
|
|
+ :key="index"
|
|
|
+ :label="shopLabelStrHandle(item)"
|
|
|
+ :value="item.shopId"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="单据编号" prop="sheetId">
|
|
|
+ <el-input
|
|
|
+ v-model="screenForm.sheetId"
|
|
|
+ placeholder="单据编号"
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col v-if="userType !== 3" :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="供应商名称" prop="keyword">
|
|
|
+ <el-input
|
|
|
+ v-model="screenForm.keyword"
|
|
|
+ placeholder="供应商名称"
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="单据状态" prop="flag">
|
|
|
+ <el-select
|
|
|
+ v-model="screenForm.flag"
|
|
|
+ placeholder="单据状态"
|
|
|
+ size="small"
|
|
|
+ >
|
|
|
+ <el-option label="全部状态" value="" />
|
|
|
+ <el-option
|
|
|
+ v-for="(item, index) in sheetFlagStr('select', null, [
|
|
|
+ 0,
|
|
|
+ 1
|
|
|
+ ])"
|
|
|
+ :key="index"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="12">
|
|
|
+ <el-form-item label="创建日期" prop="createTime">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="screenForm.createTime"
|
|
|
+ type="datetimerange"
|
|
|
+ value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
+ range-separator="至"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期"
|
|
|
+ size="small"
|
|
|
+ style="margin-right: 10px;"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row>
|
|
|
+ <el-col :xs="12" :sm="12" :lg="12" class="tl">
|
|
|
+ <el-button
|
|
|
+ v-if="checkBtnRole('add')"
|
|
|
+ size="small"
|
|
|
+ type="primary"
|
|
|
+ icon="el-icon-plus"
|
|
|
+ @click="addOrEdit('add')"
|
|
|
+ >新增单据</el-button
|
|
|
+ >
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="12" :sm="12" :lg="12" class="tr">
|
|
|
+ <el-form-item label="">
|
|
|
+ <el-button size="small" @click="resetScreenForm"
|
|
|
+ >清空</el-button
|
|
|
+ >
|
|
|
+ <el-button size="small" type="primary" @click="submitScreenForm"
|
|
|
+ >搜索</el-button
|
|
|
+ >
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+ </div> -->
|
|
|
+
|
|
|
+ <!-- <div class="mymain-container">
|
|
|
+ <div class="table">
|
|
|
+ <el-table
|
|
|
+ v-loading="listLoading"
|
|
|
+ :data="dataList"
|
|
|
+ element-loading-text="Loading"
|
|
|
+ size="mini"
|
|
|
+ border
|
|
|
+ header-cell-class-name="headerRowColor"
|
|
|
+ highlight-current-row
|
|
|
+ >
|
|
|
+ <el-table-column type="expand">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-form label-position="left" inline class="demo-table-expand">
|
|
|
+ <el-form-item label="备注">
|
|
|
+ <span>{{ scope.row.notes3 }}</span>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" label="操作">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-dropdown @command="handleCommand">
|
|
|
+ <el-button type="text">
|
|
|
+ 更多<i class="el-icon-arrow-down el-icon--right" />
|
|
|
+ </el-button>
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
+ <el-dropdown-item
|
|
|
+ v-if="checkBtnRole('view')"
|
|
|
+ icon="el-icon-view"
|
|
|
+ :command="[row.sheetId, 'view']"
|
|
|
+ >查看</el-dropdown-item
|
|
|
+ >
|
|
|
+ <template v-if="row.flag === 0">
|
|
|
+ <el-dropdown-item
|
|
|
+ v-if="checkBtnRole('edit')"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ :command="[row.sheetId, 'edit']"
|
|
|
+ >编辑</el-dropdown-item
|
|
|
+ >
|
|
|
+ <el-dropdown-item
|
|
|
+ v-if="checkBtnRole('submit')"
|
|
|
+ icon="el-icon-lock"
|
|
|
+ :command="[row.sheetId, 'submit']"
|
|
|
+ >提交</el-dropdown-item
|
|
|
+ >
|
|
|
+ <el-dropdown-item
|
|
|
+ v-if="checkBtnRole('del')"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ :command="[row.sheetId, 'del']"
|
|
|
+ >删除</el-dropdown-item
|
|
|
+ >
|
|
|
+ </template>
|
|
|
+ <template v-if="row.flag === 1">
|
|
|
+ <el-dropdown-item
|
|
|
+ v-if="checkBtnRole('revoke')"
|
|
|
+ icon="el-icon-unlock"
|
|
|
+ :command="[row.sheetId, 'revoke']"
|
|
|
+ >撤消</el-dropdown-item
|
|
|
+ >
|
|
|
+ </template>
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </el-dropdown>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ label="单号"
|
|
|
+ prop="sheetId"
|
|
|
+ min-width="190"
|
|
|
+ >
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-link
|
|
|
+ v-if="checkBtnRole('view')"
|
|
|
+ type="primary"
|
|
|
+ :underline="false"
|
|
|
+ @click="handleCommand([row.sheetId, 'view'])"
|
|
|
+ >{{ row.sheetId }}</el-link
|
|
|
+ >
|
|
|
+ <span v-else>{{ row.sheetId }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <template v-if="showShopInfo">
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ label="网点编号"
|
|
|
+ prop="shopId"
|
|
|
+ width="80"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ label="网点名称"
|
|
|
+ prop="shopName"
|
|
|
+ min-width="140"
|
|
|
+ show-overflow-tooltip
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ label="供应商编号"
|
|
|
+ prop="venderId"
|
|
|
+ width="100"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ label="供应商名称"
|
|
|
+ prop="venderName"
|
|
|
+ min-width="140"
|
|
|
+ show-overflow-tooltip
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ label="创建人"
|
|
|
+ prop="createBy"
|
|
|
+ show-overflow-tooltip
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ label="创建时间"
|
|
|
+ prop="createTime"
|
|
|
+ min-width="160"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ label="状态"
|
|
|
+ class-name="status-col"
|
|
|
+ >
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-tag :type="row.flag === 0 ? 'success' : 'danger'">{{
|
|
|
+ sheetFlagStr("label", row.flag)
|
|
|
+ }}</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="pagination clearfix">
|
|
|
+ <div class="fr">
|
|
|
+ <el-pagination
|
|
|
+ :current-page="currentPage"
|
|
|
+ :page-sizes="[10, 20, 30, 50]"
|
|
|
+ :page-size="10"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ :total="listTotal"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div> -->
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 新增编辑单据 -->
|
|
|
+ <purchase-apply-area
|
|
|
+ v-if="purchaseApplyArea"
|
|
|
+ :is-open.sync="purchaseApplyArea"
|
|
|
+ :input-param="purchaseApplyAreaParam"
|
|
|
+ @getList="$refs.pageRef.refreshList()"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import {
|
|
|
+ getPurchaseApplySheetList,
|
|
|
+ submitPurchaseApplySheet,
|
|
|
+ revokePurchaseApplySheet,
|
|
|
+ delPurchaseApplySheet,
|
|
|
+ getNewPurchaseApplySheetList,
|
|
|
+ exportNewPurchaseApplySheetList
|
|
|
+} from '@/api/material-system/shop/purchase-apply-sheet'
|
|
|
+import PurchaseApplyArea from '../components/PurchaseApplyArea'
|
|
|
+import TemplatePage from '@/components/template/template-page-1.vue'
|
|
|
+import import_mixin from '@/components/template/import_mixin.js'
|
|
|
+export default {
|
|
|
+ name: 'PurchaseApplySheet',
|
|
|
+ components: { PurchaseApplyArea, TemplatePage },
|
|
|
+ mixins: [import_mixin],
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ purchaseApplyArea: false,
|
|
|
+ purchaseApplyAreaParam: {
|
|
|
+ openType: 'add',
|
|
|
+ sheetId: ''
|
|
|
+ },
|
|
|
+ dataList: null, // 列表数据
|
|
|
+ listLoading: false, // 列表加载loading
|
|
|
+ currentPage: 1, // 当前页码
|
|
|
+ pageSize: 10, // 每页数量
|
|
|
+ listTotal: 0, // 列表总数
|
|
|
+ screenForm: {
|
|
|
+ // 筛选表单数据
|
|
|
+ createTime: '', // 创建时间
|
|
|
+ flag: '', // 状态
|
|
|
+ keyword: '', // 关键词
|
|
|
+ sheetId: '', // 单据编号
|
|
|
+ shopId: ''
|
|
|
+ },
|
|
|
+ // 事件组合
|
|
|
+ optionsEvensGroup: [
|
|
|
+ [
|
|
|
+ [
|
|
|
+ {
|
|
|
+ name: '新增单据',
|
|
|
+ click: () => {
|
|
|
+ this.addOrEdit('add')
|
|
|
+ },
|
|
|
+ isRole: this.checkBtnRole('add')
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ ]
|
|
|
+ ],
|
|
|
+ // 表格属性
|
|
|
+ tableAttributes: {
|
|
|
+ // 启用勾选列
|
|
|
+ selectColumn: true,
|
|
|
+ columnExpand: (h, { row, index, columm }) => {
|
|
|
+ return (
|
|
|
+ <div style="padding-left:95px">
|
|
|
+ <el-form label-position="left" inline class="demo-table-expand">
|
|
|
+ <el-form-item label="备注">
|
|
|
+ <span>{row.notes3}</span>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 表格事件
|
|
|
+ tableEvents: {
|
|
|
+ 'selection-change': this.selectionChange
|
|
|
+ },
|
|
|
+ recordSelected: []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ // this.$refs.pageRef.refreshList();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 查询列表
|
|
|
+ getList() {
|
|
|
+ this.listLoading = true
|
|
|
+
|
|
|
+ const params = {
|
|
|
+ shopId: this.screenForm.shopId,
|
|
|
+ flag: this.screenForm.flag,
|
|
|
+ venderName: this.screenForm.keyword,
|
|
|
+ sheetId: this.screenForm.sheetId,
|
|
|
+ startTime: this.screenForm.createTime ? this.screenForm.createTime[0] : '',
|
|
|
+ endTime: this.screenForm.createTime ? this.screenForm.createTime[1] : '',
|
|
|
+ pageNum: this.currentPage,
|
|
|
+ pageSize: this.pageSize
|
|
|
+ }
|
|
|
+ getPurchaseApplySheetList(params).then(res => {
|
|
|
+ this.dataList = res.data.records
|
|
|
+ this.listTotal = res.data.total
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 更改每页数量
|
|
|
+ handleSizeChange(val) {
|
|
|
+ this.pageSize = val
|
|
|
+ this.currentPage = 1
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ },
|
|
|
+ // 更改当前页
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ this.currentPage = val
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ },
|
|
|
+ // 重置筛选表单
|
|
|
+ resetScreenForm() {
|
|
|
+ this.currentPage = 1
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ },
|
|
|
+ // 提交筛选表单
|
|
|
+ submitScreenForm() {
|
|
|
+ this.currentPage = 1
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ },
|
|
|
+ // 新增编辑 采购入库单
|
|
|
+ addOrEdit(type, id) {
|
|
|
+ this.purchaseApplyArea = true
|
|
|
+ this.purchaseApplyAreaParam.openType = type
|
|
|
+ this.purchaseApplyAreaParam.sheetId = id
|
|
|
+ },
|
|
|
+ // 撤消单据
|
|
|
+ revokeSheet(sheetId) {
|
|
|
+ this.$confirm(`此操作将撤消 ${sheetId} 单据, 是否继续?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ revokePurchaseApplySheet({ sheetId: sheetId }).then(() => {
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ this.$successMsg('撤消成功')
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => console.log('取消'))
|
|
|
+ },
|
|
|
+ // 删除单据
|
|
|
+ delSheet(sheetId) {
|
|
|
+ this.$confirm(`此操作将删除 ${sheetId} 单据, 是否继续?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ delPurchaseApplySheet({ sheetId: sheetId }).then(() => {
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ this.$successMsg('删除成功')
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => console.log('取消'))
|
|
|
+ },
|
|
|
+ // 提交 采购入库单
|
|
|
+ submitSheet(sheetId) {
|
|
|
+ this.$confirm(`此操作将提交 ${sheetId} 单据, 是否继续?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.listLoading = true
|
|
|
+ submitPurchaseApplySheet({ sheetId: sheetId }).then(
|
|
|
+ () => {
|
|
|
+ setTimeout(() => {
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ this.$successMsg('提交成功')
|
|
|
+ this.listLoading = false
|
|
|
+ }, 2000)
|
|
|
+ },
|
|
|
+ () => {
|
|
|
+ this.listLoading = false
|
|
|
+ }
|
|
|
+ )
|
|
|
+ })
|
|
|
+ .catch(() => console.log('取消'))
|
|
|
+ },
|
|
|
+ // 操作事件
|
|
|
+ handleCommand(param) {
|
|
|
+ if (param[1] === 'view' || param[1] === 'edit') {
|
|
|
+ this.addOrEdit(param[1], param[0])
|
|
|
+ } else {
|
|
|
+ this[param[1] + 'Sheet'](param[0])
|
|
|
+ }
|
|
|
+ },
|
|
|
+ backUpdPage() {
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ this.purchaseApplyArea = false
|
|
|
+ },
|
|
|
+ // 列表请求函数
|
|
|
+ getList(...p) {
|
|
|
+ this.recordSelected = []
|
|
|
+ return getNewPurchaseApplySheetList(...p)
|
|
|
+ },
|
|
|
+ // 列表导出函数
|
|
|
+ exportList: exportNewPurchaseApplySheetList,
|
|
|
+ // 表格列解析渲染数据更改
|
|
|
+ columnParsing(item, defaultData) {
|
|
|
+ return defaultData
|
|
|
+ },
|
|
|
+ // 监听勾选变化
|
|
|
+ selectionChange(data) {
|
|
|
+ this.recordSelected = data
|
|
|
+ },
|
|
|
+ operation() {
|
|
|
+ return (h, { row, index, column }) => {
|
|
|
+ return (
|
|
|
+ <div class="operation-btns">
|
|
|
+ <el-dropdown onCommand={p => this.handleCommand(p)}>
|
|
|
+ <el-button type="text">
|
|
|
+ 更多
|
|
|
+ <i class="el-icon-arrow-down el-icon--right" />
|
|
|
+ </el-button>
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
+ {this.checkBtnRole('view') ? (
|
|
|
+ <el-dropdown-item icon="el-icon-view" command={[row.sheetId, 'view']}>
|
|
|
+ 查看
|
|
|
+ </el-dropdown-item>
|
|
|
+ ) : null}
|
|
|
+
|
|
|
+ {row.flag === 0 ? (
|
|
|
+ <div>
|
|
|
+ {this.checkBtnRole('edit') ? (
|
|
|
+ <el-dropdown-item icon="el-icon-edit" command={[row.sheetId, 'edit']}>
|
|
|
+ 编辑
|
|
|
+ </el-dropdown-item>
|
|
|
+ ) : null}
|
|
|
+
|
|
|
+ {this.checkBtnRole('submit') ? (
|
|
|
+ <el-dropdown-item icon="el-icon-lock" command={[row.sheetId, 'submit']}>
|
|
|
+ 提交
|
|
|
+ </el-dropdown-item>
|
|
|
+ ) : null}
|
|
|
+
|
|
|
+ {this.checkBtnRole('del') ? (
|
|
|
+ <el-dropdown-item icon="el-icon-delete" command={[row.sheetId, 'del']}>
|
|
|
+ 删除
|
|
|
+ </el-dropdown-item>
|
|
|
+ ) : null}
|
|
|
+ {row.flag === 1 && this.checkBtnRole('revoke') ? (
|
|
|
+ <el-dropdown-item v-if="" icon="el-icon-unlock" command={[row.sheetId, 'revoke']}>
|
|
|
+ 撤消
|
|
|
+ </el-dropdown-item>
|
|
|
+ ) : null}
|
|
|
+ </div>
|
|
|
+ ) : null}
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </el-dropdown>
|
|
|
+ </div>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+.pdt {
|
|
|
+ padding: 20px 20px 0 20px;
|
|
|
+}
|
|
|
+</style>
|