|
@@ -1,110 +1,143 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="ele-body">
|
|
<div class="ele-body">
|
|
|
<el-card shadow="never" v-loading="loading">
|
|
<el-card shadow="never" v-loading="loading">
|
|
|
- <div class="ele-border-lighter form-content" v-loading="loading">
|
|
|
|
|
- <search-table @search="reload"> </search-table>
|
|
|
|
|
|
|
+ <div class="ele-border-lighter form-content" v-loading="loading">
|
|
|
|
|
+ <search-table @search="reload"> </search-table>
|
|
|
|
|
|
|
|
- <!-- 数据表格 -->
|
|
|
|
|
- <ele-pro-table
|
|
|
|
|
- ref="table"
|
|
|
|
|
- :columns="columns"
|
|
|
|
|
- :datasource="datasource"
|
|
|
|
|
- height="calc(100vh - 385px)"
|
|
|
|
|
- full-height="calc(100vh - 116px)"
|
|
|
|
|
- tool-class="ele-toolbar-form"
|
|
|
|
|
- :selection.sync="selection"
|
|
|
|
|
- cache-key="eomContactPageTable"
|
|
|
|
|
|
|
+ <!-- 数据表格 -->
|
|
|
|
|
+ <ele-pro-table
|
|
|
|
|
+ ref="table"
|
|
|
|
|
+ :columns="columns"
|
|
|
|
|
+ :datasource="datasource"
|
|
|
|
|
+ height="calc(100vh - 385px)"
|
|
|
|
|
+ full-height="calc(100vh - 116px)"
|
|
|
|
|
+ tool-class="ele-toolbar-form"
|
|
|
|
|
+ :selection.sync="selection"
|
|
|
|
|
+ cache-key="eomContactPageTable"
|
|
|
|
|
+ >
|
|
|
|
|
+ <!-- 表头工具栏 -->
|
|
|
|
|
+ <template v-slot:toolbar>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ icon="el-icon-plus"
|
|
|
|
|
+ class="ele-btn-icon"
|
|
|
|
|
+ @click="openEdit('add', {})"
|
|
|
>
|
|
>
|
|
|
- <!-- 表头工具栏 -->
|
|
|
|
|
- <template v-slot:toolbar>
|
|
|
|
|
- <el-button
|
|
|
|
|
- size="small"
|
|
|
|
|
- type="primary"
|
|
|
|
|
- icon="el-icon-plus"
|
|
|
|
|
- class="ele-btn-icon"
|
|
|
|
|
- @click="openEdit('add',{})"
|
|
|
|
|
- >
|
|
|
|
|
- 新建
|
|
|
|
|
- </el-button>
|
|
|
|
|
-
|
|
|
|
|
- <el-button
|
|
|
|
|
- size="small"
|
|
|
|
|
- type="danger"
|
|
|
|
|
- el-icon-delete
|
|
|
|
|
- class="ele-btn-icon"
|
|
|
|
|
- @click="allDelBtn"
|
|
|
|
|
- :disabled="selection?.length===0"
|
|
|
|
|
- >
|
|
|
|
|
- 批量删除
|
|
|
|
|
- </el-button>
|
|
|
|
|
- </template>
|
|
|
|
|
|
|
+ 新建
|
|
|
|
|
+ </el-button>
|
|
|
|
|
|
|
|
- <!-- 查看详情列 -->
|
|
|
|
|
-
|
|
|
|
|
- <template v-slot:returnNo="{ row }">
|
|
|
|
|
- <el-link type="primary" :underline="false" @click="openorderDetail(row,'returnNo')"> {{ row.returnNo }}</el-link>
|
|
|
|
|
- </template>
|
|
|
|
|
- <template v-slot:receiveNo="{ row }">
|
|
|
|
|
- <el-link type="primary" :underline="false" @click="openorderDetail(row,'sendNo')"> {{ row.receiveId }}</el-link>
|
|
|
|
|
- </template>
|
|
|
|
|
- <template v-slot:orderNo="{ row }">
|
|
|
|
|
- <el-link type="primary" :underline="false" @click="openorderDetail(row,'orderNo')"> {{ row.orderNo }}</el-link>
|
|
|
|
|
- </template>
|
|
|
|
|
- <!-- 操作列 -->
|
|
|
|
|
- <template v-slot:action="{ row }">
|
|
|
|
|
-
|
|
|
|
|
- <el-link
|
|
|
|
|
- type="primary"
|
|
|
|
|
- :underline="false"
|
|
|
|
|
- icon="el-icon-edit"
|
|
|
|
|
- @click="openEdit('edit',row)"
|
|
|
|
|
- >
|
|
|
|
|
- 修改
|
|
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ type="danger"
|
|
|
|
|
+ el-icon-delete
|
|
|
|
|
+ class="ele-btn-icon"
|
|
|
|
|
+ @click="allDelBtn"
|
|
|
|
|
+ :disabled="selection?.length === 0"
|
|
|
|
|
+ >
|
|
|
|
|
+ 批量删除
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 查看详情列 -->
|
|
|
|
|
+
|
|
|
|
|
+ <template v-slot:returnNo="{ row }">
|
|
|
|
|
+ <el-link
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :underline="false"
|
|
|
|
|
+ @click="openorderDetail(row, 'returnNo')"
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ row.returnNo }}</el-link
|
|
|
|
|
+ >
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template v-slot:receiveNo="{ row }">
|
|
|
|
|
+ <el-link
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :underline="false"
|
|
|
|
|
+ @click="openorderDetail(row, 'sendNo')"
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ row.receiveId }}</el-link
|
|
|
|
|
+ >
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template v-slot:orderNo="{ row }">
|
|
|
|
|
+ <el-link
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :underline="false"
|
|
|
|
|
+ @click="openorderDetail(row, 'orderNo')"
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ row.orderNo }}</el-link
|
|
|
|
|
+ >
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <!-- 操作列 -->
|
|
|
|
|
+ <template v-slot:action="{ row }">
|
|
|
|
|
+ <el-link
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :underline="false"
|
|
|
|
|
+ icon="el-icon-edit"
|
|
|
|
|
+ @click="openEdit('edit', row)"
|
|
|
|
|
+ v-if="[0, 3].includes(row.reviewStatus)"
|
|
|
|
|
+ >
|
|
|
|
|
+ 修改
|
|
|
|
|
+ </el-link>
|
|
|
|
|
+ <el-link
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :underline="false"
|
|
|
|
|
+ icon="el-icon-plus"
|
|
|
|
|
+ @click="sub(row)"
|
|
|
|
|
+ v-if="[0, 3].includes(row.reviewStatus)"
|
|
|
|
|
+ >
|
|
|
|
|
+ 提交
|
|
|
|
|
+ </el-link>
|
|
|
|
|
+ <el-popconfirm
|
|
|
|
|
+ class="ele-action"
|
|
|
|
|
+ title="确定要删除此信息吗?"
|
|
|
|
|
+ @confirm="remove([row.id])"
|
|
|
|
|
+ v-if="[0, 3].includes(row.reviewStatus)"
|
|
|
|
|
+ >
|
|
|
|
|
+ <template v-slot:reference>
|
|
|
|
|
+ <el-link type="danger" :underline="false" icon="el-icon-delete">
|
|
|
|
|
+ 删除
|
|
|
</el-link>
|
|
</el-link>
|
|
|
- <el-popconfirm
|
|
|
|
|
- class="ele-action"
|
|
|
|
|
- title="确定要删除此信息吗?"
|
|
|
|
|
- @confirm="remove([row.id])"
|
|
|
|
|
- >
|
|
|
|
|
- <template v-slot:reference>
|
|
|
|
|
- <el-link
|
|
|
|
|
- type="danger"
|
|
|
|
|
- :underline="false"
|
|
|
|
|
- icon="el-icon-delete"
|
|
|
|
|
- >
|
|
|
|
|
- 删除
|
|
|
|
|
- </el-link>
|
|
|
|
|
- </template>
|
|
|
|
|
- </el-popconfirm>
|
|
|
|
|
</template>
|
|
</template>
|
|
|
- </ele-pro-table>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ </el-popconfirm>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </ele-pro-table>
|
|
|
|
|
+ </div>
|
|
|
</el-card>
|
|
</el-card>
|
|
|
|
|
|
|
|
-
|
|
|
|
|
- <add-return-goods-dialog ref="invoiceDialogRef" @done="reload"></add-return-goods-dialog>
|
|
|
|
|
- <send-detail-dialog ref="sendDetailDialogRef"></send-detail-dialog>
|
|
|
|
|
- <order-detail-dialog ref="orderDetailDialogRef"></order-detail-dialog>
|
|
|
|
|
|
|
+ <add-return-goods-dialog
|
|
|
|
|
+ ref="invoiceDialogRef"
|
|
|
|
|
+ @done="reload"
|
|
|
|
|
+ ></add-return-goods-dialog>
|
|
|
|
|
+ <send-detail-dialog ref="sendDetailDialogRef"></send-detail-dialog>
|
|
|
|
|
+ <order-detail-dialog ref="orderDetailDialogRef"></order-detail-dialog>
|
|
|
<detail-dialog ref="DetailDialogRef"></detail-dialog>
|
|
<detail-dialog ref="DetailDialogRef"></detail-dialog>
|
|
|
-<!-- 多选删除弹窗 -->
|
|
|
|
|
- <pop-modal :visible.sync="delVisible" content="是否确定删除?" @done="commitBtn"/>
|
|
|
|
|
|
|
+ <!-- 多选删除弹窗 -->
|
|
|
|
|
+ <pop-modal
|
|
|
|
|
+ :visible.sync="delVisible"
|
|
|
|
|
+ content="是否确定删除?"
|
|
|
|
|
+ @done="commitBtn"
|
|
|
|
|
+ />
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
-import searchTable from './components/searchTable.vue';
|
|
|
|
|
-import addReturnGoodsDialog from './components/addReturnGoodsDialog.vue';
|
|
|
|
|
-import detailDialog from './components/detailDialog.vue';
|
|
|
|
|
-import sendDetailDialog from '@/views/purchasingManage/purchaseOrder/invoice/components/detailDialog.vue'
|
|
|
|
|
-import orderDetailDialog from '@/views/purchasingManage/purchaseOrder/components/detailDialog.vue'
|
|
|
|
|
-import popModal from '@/components/pop-modal';
|
|
|
|
|
-import {reviewStatusEnum} from '@/enum/dict';
|
|
|
|
|
-
|
|
|
|
|
-import {getReturnTableList,deleteReturnInformation} from '@/api/purchasingManage/returnGoods';
|
|
|
|
|
-import dictMixins from '@/mixins/dictMixins';
|
|
|
|
|
|
|
+ import searchTable from './components/searchTable.vue';
|
|
|
|
|
+ import addReturnGoodsDialog from './components/addReturnGoodsDialog.vue';
|
|
|
|
|
+ import detailDialog from './components/detailDialog.vue';
|
|
|
|
|
+ import sendDetailDialog from '@/views/purchasingManage/purchaseOrder/invoice/components/detailDialog.vue';
|
|
|
|
|
+ import orderDetailDialog from '@/views/purchasingManage/purchaseOrder/components/detailDialog.vue';
|
|
|
|
|
+ import popModal from '@/components/pop-modal';
|
|
|
|
|
+ import { reviewStatusEnum } from '@/enum/dict';
|
|
|
|
|
|
|
|
|
|
+ import {
|
|
|
|
|
+ getReturnTableList,
|
|
|
|
|
+ deleteReturnInformation,
|
|
|
|
|
+ submit
|
|
|
|
|
+ } from '@/api/purchasingManage/returnGoods';
|
|
|
|
|
+ import dictMixins from '@/mixins/dictMixins';
|
|
|
|
|
|
|
|
-export default {
|
|
|
|
|
|
|
+ export default {
|
|
|
mixins: [dictMixins],
|
|
mixins: [dictMixins],
|
|
|
components: {
|
|
components: {
|
|
|
searchTable,
|
|
searchTable,
|
|
@@ -112,21 +145,21 @@ export default {
|
|
|
orderDetailDialog,
|
|
orderDetailDialog,
|
|
|
popModal,
|
|
popModal,
|
|
|
addReturnGoodsDialog,
|
|
addReturnGoodsDialog,
|
|
|
- detailDialog,
|
|
|
|
|
|
|
+ detailDialog
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
activeComp: 'saleorder',
|
|
activeComp: 'saleorder',
|
|
|
-
|
|
|
|
|
- selection:[], //单选中集合
|
|
|
|
|
- delVisible:false, //批量删除弹框状态
|
|
|
|
|
- loading: false, // 加载状态
|
|
|
|
|
|
|
+
|
|
|
|
|
+ selection: [], //单选中集合
|
|
|
|
|
+ delVisible: false, //批量删除弹框状态
|
|
|
|
|
+ loading: false, // 加载状态
|
|
|
columns: [
|
|
columns: [
|
|
|
{
|
|
{
|
|
|
- width: 45,
|
|
|
|
|
- type: 'selection',
|
|
|
|
|
- columnKey: 'selection',
|
|
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ width: 45,
|
|
|
|
|
+ type: 'selection',
|
|
|
|
|
+ columnKey: 'selection',
|
|
|
|
|
+ align: 'center'
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
columnKey: 'index',
|
|
columnKey: 'index',
|
|
@@ -160,13 +193,13 @@ export default {
|
|
|
slot: 'orderNo',
|
|
slot: 'orderNo',
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
minWidth: 200
|
|
minWidth: 200
|
|
|
- },
|
|
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
prop: 'supplierName',
|
|
prop: 'supplierName',
|
|
|
label: '供应商名称',
|
|
label: '供应商名称',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
- minWidth: 180,
|
|
|
|
|
|
|
+ minWidth: 180
|
|
|
},
|
|
},
|
|
|
// {
|
|
// {
|
|
|
// prop: 'payAmount',
|
|
// prop: 'payAmount',
|
|
@@ -183,8 +216,8 @@ export default {
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
minWidth: 200,
|
|
minWidth: 200,
|
|
|
formatter: (_row, _column, cellValue) => {
|
|
formatter: (_row, _column, cellValue) => {
|
|
|
- return reviewStatusEnum[_row.reviewStatus].label;
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ return reviewStatusEnum[_row.reviewStatus].label;
|
|
|
|
|
+ }
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: 'createTime',
|
|
prop: 'createTime',
|
|
@@ -201,16 +234,14 @@ export default {
|
|
|
resizable: false,
|
|
resizable: false,
|
|
|
slot: 'action',
|
|
slot: 'action',
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
- fixed: 'right',
|
|
|
|
|
|
|
+ fixed: 'right'
|
|
|
}
|
|
}
|
|
|
]
|
|
]
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
computed: {},
|
|
computed: {},
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
methods: {
|
|
methods: {
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
/* 表格数据源 */
|
|
/* 表格数据源 */
|
|
|
datasource({ page, limit, where, order }) {
|
|
datasource({ page, limit, where, order }) {
|
|
|
return getReturnTableList({
|
|
return getReturnTableList({
|
|
@@ -219,26 +250,25 @@ export default {
|
|
|
...where
|
|
...where
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
/* 刷新表格 */
|
|
/* 刷新表格 */
|
|
|
reload(where) {
|
|
reload(where) {
|
|
|
this.$refs.table.reload({ page: 1, where });
|
|
this.$refs.table.reload({ page: 1, where });
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
//新增编辑
|
|
//新增编辑
|
|
|
- openEdit(type,row) {
|
|
|
|
|
- this.$refs.invoiceDialogRef.open( type,row);
|
|
|
|
|
|
|
+ openEdit(type, row) {
|
|
|
|
|
+ this.$refs.invoiceDialogRef.open(type, row);
|
|
|
this.$refs.invoiceDialogRef.$refs.form &&
|
|
this.$refs.invoiceDialogRef.$refs.form &&
|
|
|
- this.$refs.invoiceDialogRef.$refs.form.clearValidate();
|
|
|
|
|
|
|
+ this.$refs.invoiceDialogRef.$refs.form.clearValidate();
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
//批量删除
|
|
//批量删除
|
|
|
- allDelBtn(){
|
|
|
|
|
- if(this.selection.length===0) return
|
|
|
|
|
- this.delVisible=true
|
|
|
|
|
|
|
+ allDelBtn() {
|
|
|
|
|
+ if (this.selection.length === 0) return;
|
|
|
|
|
+ this.delVisible = true;
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
//删除接口
|
|
//删除接口
|
|
|
remove(delData) {
|
|
remove(delData) {
|
|
|
deleteReturnInformation(delData).then((res) => {
|
|
deleteReturnInformation(delData).then((res) => {
|
|
@@ -247,65 +277,70 @@ export default {
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
- //删除弹框确定
|
|
|
|
|
- commitBtn(){
|
|
|
|
|
- const dataId=this.selection.map(v=>v.id)
|
|
|
|
|
- this.remove(dataId)
|
|
|
|
|
|
|
+ //删除弹框确定
|
|
|
|
|
+ commitBtn() {
|
|
|
|
|
+ const dataId = this.selection.map((v) => v.id);
|
|
|
|
|
+ this.remove(dataId);
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
- //查看详情
|
|
|
|
|
- openorderDetail(row,type){
|
|
|
|
|
- if(type==='returnNo'){
|
|
|
|
|
- this.$refs.DetailDialogRef.open(row);
|
|
|
|
|
- }
|
|
|
|
|
- if(type==='sendNo'){
|
|
|
|
|
- this.$refs.sendDetailDialogRef.open({id:row.receiveId});
|
|
|
|
|
- }
|
|
|
|
|
- if(type==='orderNo'){
|
|
|
|
|
- this.$refs.orderDetailDialogRef.open({id:row.orderId});
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
|
|
+ sub(res) {
|
|
|
|
|
+ submit({
|
|
|
|
|
+ businessId: res.id
|
|
|
|
|
+ }).then((res) => {
|
|
|
|
|
+ this.$message.success('提交成功');
|
|
|
|
|
+ this.reload();
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
|
|
+ //查看详情
|
|
|
|
|
+ openorderDetail(row, type) {
|
|
|
|
|
+ if (type === 'returnNo') {
|
|
|
|
|
+ this.$refs.DetailDialogRef.open(row);
|
|
|
|
|
+ }
|
|
|
|
|
+ if (type === 'sendNo') {
|
|
|
|
|
+ this.$refs.sendDetailDialogRef.open({ id: row.receiveId });
|
|
|
|
|
+ }
|
|
|
|
|
+ if (type === 'orderNo') {
|
|
|
|
|
+ this.$refs.orderDetailDialogRef.open({ id: row.orderId });
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
-.ele-body{
|
|
|
|
|
- padding-top:0;
|
|
|
|
|
- padding-bottom: 0;
|
|
|
|
|
-}
|
|
|
|
|
-:deep .el-card__body{
|
|
|
|
|
-padding: 0;
|
|
|
|
|
-}
|
|
|
|
|
-:deep(.el-link--inner){
|
|
|
|
|
- margin-left: 0px !important;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ .ele-body {
|
|
|
|
|
+ padding-top: 0;
|
|
|
|
|
+ padding-bottom: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+ :deep .el-card__body {
|
|
|
|
|
+ padding: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+ :deep(.el-link--inner) {
|
|
|
|
|
+ margin-left: 0px !important;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
-.sys-organization-list {
|
|
|
|
|
- height: calc(100vh - 264px);
|
|
|
|
|
- box-sizing: border-box;
|
|
|
|
|
- border-width: 1px;
|
|
|
|
|
- border-style: solid;
|
|
|
|
|
- overflow: auto;
|
|
|
|
|
-}
|
|
|
|
|
-.sys-organization-list :deep(.el-tree-node__content) {
|
|
|
|
|
- height: 40px;
|
|
|
|
|
- & > .el-tree-node__expand-icon {
|
|
|
|
|
- margin-left: 10px;
|
|
|
|
|
|
|
+ .sys-organization-list {
|
|
|
|
|
+ height: calc(100vh - 264px);
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
+ border-width: 1px;
|
|
|
|
|
+ border-style: solid;
|
|
|
|
|
+ overflow: auto;
|
|
|
|
|
+ }
|
|
|
|
|
+ .sys-organization-list :deep(.el-tree-node__content) {
|
|
|
|
|
+ height: 40px;
|
|
|
|
|
+ & > .el-tree-node__expand-icon {
|
|
|
|
|
+ margin-left: 10px;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
-}
|
|
|
|
|
|
|
|
|
|
-.switch_left ul .active{
|
|
|
|
|
- border-top: 4px solid var(--color-primary);
|
|
|
|
|
|
|
+ .switch_left ul .active {
|
|
|
|
|
+ border-top: 4px solid var(--color-primary);
|
|
|
color: var(--color-primary-5);
|
|
color: var(--color-primary-5);
|
|
|
-}
|
|
|
|
|
-.switch{
|
|
|
|
|
- padding-bottom: 20px;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ }
|
|
|
|
|
+ .switch {
|
|
|
|
|
+ padding-bottom: 20px;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
-.el-dropdown-link {
|
|
|
|
|
|
|
+ .el-dropdown-link {
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
color: var(--color-primary-5);
|
|
color: var(--color-primary-5);
|
|
|
}
|
|
}
|