|
@@ -1,48 +1,17 @@
|
|
<!-- 待办事项 -->
|
|
<!-- 待办事项 -->
|
|
<template>
|
|
<template>
|
|
<div class="container">
|
|
<div class="container">
|
|
- <div class="tab-nav">
|
|
|
|
- <date-select v-model="params" :selectMonthStatus="false" @change="selectTime"></date-select>
|
|
|
|
- <div style="margin-left: 16px">
|
|
|
|
- <RadioGroup v-model="params.checkState" @on-change="changeState">
|
|
|
|
- <Radio
|
|
|
|
- v-for="(radio, index) in stateList"
|
|
|
|
- :key="index"
|
|
|
|
- :label="radio.value"
|
|
|
|
- >
|
|
|
|
- {{ radio.label }}
|
|
|
|
- </Radio>
|
|
|
|
- </RadioGroup>
|
|
|
|
- </div>
|
|
|
|
- <div style="margin-left: 16px">
|
|
|
|
- <Select v-model="params.id" clearable style="width:200px" @on-change="changeFlow">
|
|
|
|
- <Option v-for="item in flowList" :value="item.id" :key="item.id" :label="item.flowName">
|
|
|
|
- <span>{{ item.flowName }} (</span>
|
|
|
|
- <span style="color: red">{{ item.count }}</span>
|
|
|
|
- <span>)</span>
|
|
|
|
- </Option>
|
|
|
|
- </Select>
|
|
|
|
- </div>
|
|
|
|
- <div style="margin-left: 16px">
|
|
|
|
- <Input v-model="params.keyword" clearable placeholder="请输入关键字" style="width: 200px" />
|
|
|
|
- </div>
|
|
|
|
- <Button type="primary" style="margin-left: 16px" @click="clickSearch">查询</Button>
|
|
|
|
- <Button type="primary" style="margin-left: 16px" @click="clickExportExcel">导出Excel</Button>
|
|
|
|
- <Button type="primary" style="margin-left: 32px" @click="dispatchShow = true">批量审核</Button>
|
|
|
|
- </div>
|
|
|
|
- <div class="main">
|
|
|
|
- <my-table
|
|
|
|
- :data="data"
|
|
|
|
- :columns="columns"
|
|
|
|
- :table-page="params"
|
|
|
|
- selectKey="linkId"
|
|
|
|
- @on-select="getSelect"
|
|
|
|
- @on-change="changePage"
|
|
|
|
- >
|
|
|
|
- <!-- :table-filter="tableFilter"
|
|
|
|
- @event-handle="eventHandle" -->
|
|
|
|
- </my-table>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <my-table
|
|
|
|
+ :data="data"
|
|
|
|
+ :columns="columns"
|
|
|
|
+ :table-filter="tableFilter"
|
|
|
|
+ :table-page="params"
|
|
|
|
+ selectKey="linkId"
|
|
|
|
+ @event-handle="eventHandle"
|
|
|
|
+ @on-select="getSelect"
|
|
|
|
+ @on-change="changePage"
|
|
|
|
+ >
|
|
|
|
+ </my-table>
|
|
<purchase-form
|
|
<purchase-form
|
|
v-model="purchaseShow"
|
|
v-model="purchaseShow"
|
|
:data="formData"
|
|
:data="formData"
|
|
@@ -196,9 +165,6 @@ import ProviderTagDelForm from './provider-tag-del-form'
|
|
import ProviderShipmentForm from './provider-shipment-form'
|
|
import ProviderShipmentForm from './provider-shipment-form'
|
|
import profitTagForm from './profit-tag-form'
|
|
import profitTagForm from './profit-tag-form'
|
|
import { exportExcel } from '@/libs/util'
|
|
import { exportExcel } from '@/libs/util'
|
|
-import dateSelect from '@/components/dateSelect/dateSelect'
|
|
|
|
-import axios from 'axios'
|
|
|
|
-
|
|
|
|
export default {
|
|
export default {
|
|
name: 'schedule',
|
|
name: 'schedule',
|
|
components: {
|
|
components: {
|
|
@@ -220,8 +186,7 @@ export default {
|
|
ProviderContractOverForm,
|
|
ProviderContractOverForm,
|
|
ProviderTagDelForm,
|
|
ProviderTagDelForm,
|
|
ProviderShipmentForm,
|
|
ProviderShipmentForm,
|
|
- profitTagForm,
|
|
|
|
- dateSelect
|
|
|
|
|
|
+ profitTagForm
|
|
},
|
|
},
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
@@ -276,153 +241,146 @@ export default {
|
|
{
|
|
{
|
|
on: {
|
|
on: {
|
|
click (e) {
|
|
click (e) {
|
|
- axios
|
|
|
|
- .post('/cloudApi/applet/getApproveType', {
|
|
|
|
- ...params.row
|
|
|
|
|
|
+ e.stopPropagation()
|
|
|
|
+ _this.formData = {}
|
|
|
|
+ if (params.row.dealWithType === 0) {
|
|
|
|
+ // 请购单审批
|
|
|
|
+ GetApplyPurchasePageList({
|
|
|
|
+ id: params.row.linkId,
|
|
|
|
+ pageIndex: 1,
|
|
|
|
+ pageSize: 1
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ _this.formData = {
|
|
|
|
+ ...res.result.list[0],
|
|
|
|
+ ...params.row
|
|
|
|
+ }
|
|
|
|
+ _this.purchaseShow = true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else if (params.row.dealWithType === 1) {
|
|
|
|
+ // 合同审批
|
|
|
|
+ GetPurContractPageList({
|
|
|
|
+ id: params.row.linkId,
|
|
|
|
+ pageIndex: 1,
|
|
|
|
+ pageSize: 1
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ _this.formData = {
|
|
|
|
+ ...res.result.list[0],
|
|
|
|
+ ...params.row
|
|
|
|
+ }
|
|
|
|
+ _this.contractShow = true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else if (params.row.dealWithType === 2) {
|
|
|
|
+ // 付款审批
|
|
|
|
+ _this.formData = { ...params.row }
|
|
|
|
+ _this.payShow = true
|
|
|
|
+ } else if (params.row.dealWithType === 3) {
|
|
|
|
+ // 领料申请
|
|
|
|
+ GetApplyTakePageList({
|
|
|
|
+ id: params.row.linkId,
|
|
|
|
+ pageIndex: 1,
|
|
|
|
+ pageSize: 1
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ _this.formData = {
|
|
|
|
+ ...res.result.list[0],
|
|
|
|
+ ...params.row
|
|
|
|
+ }
|
|
|
|
+ _this.applyMaterialShow = true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else if (params.row.dealWithType === 4) {
|
|
|
|
+ // 其他出库退货/报损
|
|
|
|
+ GetApplyStockOutBill({
|
|
|
|
+ id: params.row.linkId
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ _this.formData = { ...res.result, ...params.row }
|
|
|
|
+ _this.otherShow = true
|
|
|
|
+ }
|
|
})
|
|
})
|
|
- .then(res => {
|
|
|
|
- params.row.approveType = res.data.data
|
|
|
|
- e.stopPropagation()
|
|
|
|
- _this.formData = {}
|
|
|
|
- if (params.row.dealWithType === 0) {
|
|
|
|
- // 请购单审批
|
|
|
|
- GetApplyPurchasePageList({
|
|
|
|
- id: params.row.linkId,
|
|
|
|
- pageNum: 1,
|
|
|
|
- pageSize: 1
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code === 0) {
|
|
|
|
- _this.formData = {
|
|
|
|
- ...res.result.list[0],
|
|
|
|
- ...params.row
|
|
|
|
- }
|
|
|
|
- _this.purchaseShow = true
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- } else if (params.row.dealWithType === 1) {
|
|
|
|
- // 合同审批
|
|
|
|
- GetPurContractPageList({
|
|
|
|
- id: params.row.linkId,
|
|
|
|
- pageNum: 1,
|
|
|
|
- pageSize: 1
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code === 0) {
|
|
|
|
- _this.formData = {
|
|
|
|
- ...res.result.list[0],
|
|
|
|
- ...params.row
|
|
|
|
- }
|
|
|
|
- _this.contractShow = true
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- } else if (params.row.dealWithType === 2) {
|
|
|
|
- // 付款审批
|
|
|
|
- _this.formData = { ...params.row }
|
|
|
|
- _this.payShow = true
|
|
|
|
- } else if (params.row.dealWithType === 3) {
|
|
|
|
- // 领料申请
|
|
|
|
- GetApplyTakePageList({
|
|
|
|
- id: params.row.linkId,
|
|
|
|
- pageNum: 1,
|
|
|
|
- pageSize: 1
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code === 0) {
|
|
|
|
- _this.formData = {
|
|
|
|
- ...res.result.list[0],
|
|
|
|
- ...params.row
|
|
|
|
- }
|
|
|
|
- _this.applyMaterialShow = true
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- } else if (params.row.dealWithType === 4) {
|
|
|
|
- // 其他出库退货/报损
|
|
|
|
- GetApplyStockOutBill({
|
|
|
|
- id: params.row.linkId
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code === 0) {
|
|
|
|
- _this.formData = { ...res.result, ...params.row }
|
|
|
|
- _this.otherShow = true
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- } else if (params.row.dealWithType === 5) {
|
|
|
|
- // 到货质检数量修正
|
|
|
|
- GetQuantityCheckLake({
|
|
|
|
- checkAdjustId: params.row.linkId
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code === 0) {
|
|
|
|
- _this.formData = { ...res.result, ...params.row }
|
|
|
|
- _this.qtyCheckShow = true
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- } else if (params.row.dealWithType === 6) {
|
|
|
|
- // 物料审批
|
|
|
|
- _this.formData = { ...params.row }
|
|
|
|
- _this.materialApproveShow = true
|
|
|
|
- } else if (params.row.dealWithType === 7) {
|
|
|
|
- // 供应商调价
|
|
|
|
- GetChangePriceCheck({
|
|
|
|
- priceChangeId: params.row.linkId
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code === 0) {
|
|
|
|
- _this.formData = { ...res.result, ...params.row }
|
|
|
|
- _this.providerPriceShow = true
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- } else if (params.row.dealWithType === 8) {
|
|
|
|
- // 审核盘点
|
|
|
|
- _this.formData = { ...params.row }
|
|
|
|
- _this.profitShow = true
|
|
|
|
- } else if (params.row.dealWithType === 9) {
|
|
|
|
- // 归还入库
|
|
|
|
- GetApplyStockInBackRequestDto({
|
|
|
|
- id: params.row.linkId
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code === 0) {
|
|
|
|
- _this.formData = { ...res.result, ...params.row }
|
|
|
|
- _this.returnShow = true
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- } else if (params.row.dealWithType === 10) {
|
|
|
|
- // 合同删除
|
|
|
|
- GetPurchaseContractDel({
|
|
|
|
- id: params.row.linkId
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code === 0) {
|
|
|
|
- _this.formData = { ...res.result, ...params.row }
|
|
|
|
- _this.delContractShow = true
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- } else if (params.row.dealWithType === 11) {
|
|
|
|
- // 免检申请
|
|
|
|
- GetStockExemptCheck({
|
|
|
|
- exemptCheckId: params.row.linkId
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code === 0) {
|
|
|
|
- _this.formData = { ...res.result, ...params.row }
|
|
|
|
- _this.noCheckShow = true
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- } else if (params.row.dealWithType === 12) {
|
|
|
|
- // 供应商审批
|
|
|
|
- GetSupplierShipFlow({
|
|
|
|
- flowCheckId: params.row.flowChekId
|
|
|
|
- }).then(res => {
|
|
|
|
- if (res.code === 0) {
|
|
|
|
- _this.formData = { ...res.result, ...params.row }
|
|
|
|
- if (res.result.supplierApplyType === 0) {
|
|
|
|
- _this.providerShipmentShow = true
|
|
|
|
- } else if (res.result.supplierApplyType === 1) {
|
|
|
|
- _this.providerContractOverShow = true
|
|
|
|
- } else if (res.result.supplierApplyType === 2) {
|
|
|
|
- _this.providerTagDelShow = true
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- } else if (params.row.dealWithType === 13) {
|
|
|
|
- // 盘点标签处置
|
|
|
|
- _this.formData = { ...params.row }
|
|
|
|
- _this.profitTagFormShow = true
|
|
|
|
|
|
+ } else if (params.row.dealWithType === 5) {
|
|
|
|
+ // 到货质检数量修正
|
|
|
|
+ GetQuantityCheckLake({
|
|
|
|
+ checkAdjustId: params.row.linkId
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ _this.formData = { ...res.result, ...params.row }
|
|
|
|
+ _this.qtyCheckShow = true
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
+ } else if (params.row.dealWithType === 6) {
|
|
|
|
+ // 物料审批
|
|
|
|
+ _this.formData = { ...params.row }
|
|
|
|
+ _this.materialApproveShow = true
|
|
|
|
+ } else if (params.row.dealWithType === 7) {
|
|
|
|
+ // 供应商调价
|
|
|
|
+ GetChangePriceCheck({
|
|
|
|
+ priceChangeId: params.row.linkId
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ _this.formData = { ...res.result, ...params.row }
|
|
|
|
+ _this.providerPriceShow = true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else if (params.row.dealWithType === 8) {
|
|
|
|
+ // 审核盘点
|
|
|
|
+ _this.formData = { ...params.row }
|
|
|
|
+ _this.profitShow = true
|
|
|
|
+ } else if (params.row.dealWithType === 9) {
|
|
|
|
+ // 归还入库
|
|
|
|
+ GetApplyStockInBackRequestDto({
|
|
|
|
+ id: params.row.linkId
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ _this.formData = { ...res.result, ...params.row }
|
|
|
|
+ _this.returnShow = true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else if (params.row.dealWithType === 10) {
|
|
|
|
+ // 合同删除
|
|
|
|
+ GetPurchaseContractDel({
|
|
|
|
+ id: params.row.linkId
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ _this.formData = { ...res.result, ...params.row }
|
|
|
|
+ _this.delContractShow = true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else if (params.row.dealWithType === 11) {
|
|
|
|
+ // 免检申请
|
|
|
|
+ GetStockExemptCheck({
|
|
|
|
+ exemptCheckId: params.row.linkId
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ _this.formData = { ...res.result, ...params.row }
|
|
|
|
+ _this.noCheckShow = true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else if (params.row.dealWithType === 12) {
|
|
|
|
+ // 供应商审批
|
|
|
|
+ GetSupplierShipFlow({
|
|
|
|
+ flowCheckId: params.row.flowChekId
|
|
|
|
+ }).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ _this.formData = { ...res.result, ...params.row }
|
|
|
|
+ if (res.result.supplierApplyType === 0) {
|
|
|
|
+ _this.providerShipmentShow = true
|
|
|
|
+ } else if (res.result.supplierApplyType === 1) {
|
|
|
|
+ _this.providerContractOverShow = true
|
|
|
|
+ } else if (res.result.supplierApplyType === 2) {
|
|
|
|
+ _this.providerTagDelShow = true
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else if (params.row.dealWithType === 13) {
|
|
|
|
+ // 盘点标签处置
|
|
|
|
+ _this.formData = { ...params.row }
|
|
|
|
+ _this.profitTagFormShow = true
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -499,27 +457,13 @@ export default {
|
|
}
|
|
}
|
|
],
|
|
],
|
|
params: {
|
|
params: {
|
|
- pageNum: 1,
|
|
|
|
|
|
+ pageIndex: 1,
|
|
pageSize: 20,
|
|
pageSize: 20,
|
|
- beginTime: '',
|
|
|
|
- endTime: '',
|
|
|
|
- checkState: 1,
|
|
|
|
- total: 0,
|
|
|
|
- keyword: ''
|
|
|
|
- },
|
|
|
|
- stateList: [
|
|
|
|
- { label: '待审批', value: 1 },
|
|
|
|
- { label: '已审批', value: 2 },
|
|
|
|
- { label: '已驳回', value: 3 },
|
|
|
|
- { label: '已发起', value: 0 }
|
|
|
|
- ],
|
|
|
|
- flowList: []
|
|
|
|
|
|
+ total: 0
|
|
|
|
+ }
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- selectTime() {
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
pass (type) {
|
|
pass (type) {
|
|
ApprovalBillFlow({
|
|
ApprovalBillFlow({
|
|
linkCheckId: this.selectList,
|
|
linkCheckId: this.selectList,
|
|
@@ -538,6 +482,7 @@ export default {
|
|
},
|
|
},
|
|
getSelect (selection, data) {
|
|
getSelect (selection, data) {
|
|
this.selectList = selection.map(item => item.flowChekId)
|
|
this.selectList = selection.map(item => item.flowChekId)
|
|
|
|
+ console.log(this.selectList)
|
|
},
|
|
},
|
|
cfm (type, formData) {
|
|
cfm (type, formData) {
|
|
if (type === 'add') {
|
|
if (type === 'add') {
|
|
@@ -566,7 +511,7 @@ export default {
|
|
eventHandle (option) {
|
|
eventHandle (option) {
|
|
switch (option._evnet) {
|
|
switch (option._evnet) {
|
|
case 'search':
|
|
case 'search':
|
|
- this.params.pageNum = 1
|
|
|
|
|
|
+ this.params.pageIndex = 1
|
|
this.params.keyWord = option.key
|
|
this.params.keyWord = option.key
|
|
this.params.approvalFlowState = option.approvalFlowState
|
|
this.params.approvalFlowState = option.approvalFlowState
|
|
this.params.dealWithType = option.dealWithType
|
|
this.params.dealWithType = option.dealWithType
|
|
@@ -575,7 +520,7 @@ export default {
|
|
case 'export':
|
|
case 'export':
|
|
GetDealWithItem({
|
|
GetDealWithItem({
|
|
...this.params,
|
|
...this.params,
|
|
- pageNum: 1,
|
|
|
|
|
|
+ pageIndex: 1,
|
|
pageSize: 99999
|
|
pageSize: 99999
|
|
}).then(res => {
|
|
}).then(res => {
|
|
if (res.code === 0) {
|
|
if (res.code === 0) {
|
|
@@ -590,61 +535,18 @@ export default {
|
|
break
|
|
break
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- changePage (pageNum) {
|
|
|
|
- this.params.pageNum = pageNum
|
|
|
|
|
|
+ changePage (pageIndex) {
|
|
|
|
+ this.params.pageIndex = pageIndex
|
|
this.getList()
|
|
this.getList()
|
|
},
|
|
},
|
|
getList () {
|
|
getList () {
|
|
- axios
|
|
|
|
- .post('/cloudApi/applet/flowPage', {
|
|
|
|
- ...this.params
|
|
|
|
- })
|
|
|
|
- .then(res => {
|
|
|
|
- this.data = res.data.data.records
|
|
|
|
- this.params.total = res.data.data.total
|
|
|
|
- })
|
|
|
|
- // GetDealWithItem(this.params).then(res => {
|
|
|
|
- // if (res.code === 0) {
|
|
|
|
- // }
|
|
|
|
- // })
|
|
|
|
- },
|
|
|
|
- getFlowList() {
|
|
|
|
- axios
|
|
|
|
- .post('/cloudApi/applet/flowNum', {
|
|
|
|
- beginTime: this.params.beginTime,
|
|
|
|
- endTime: this.params.endTime,
|
|
|
|
- checkState: this.params.checkState
|
|
|
|
- })
|
|
|
|
- .then(res => {
|
|
|
|
- this.flowList = res.data.data
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
- changeState() {
|
|
|
|
- this.params.id = ''
|
|
|
|
- this.getFlowList()
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
- changeFlow() {
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
- clickSearch() {
|
|
|
|
- this.params.pageNum = 1
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
- clickExportExcel() {
|
|
|
|
- axios
|
|
|
|
- .post('/cloudApi/applet/flowPage', {
|
|
|
|
- ...this.params
|
|
|
|
- })
|
|
|
|
- .then(res => {
|
|
|
|
- let data = res.data.data.records
|
|
|
|
- if (data.length < 1) return this.$Message.error('数据为空!')
|
|
|
|
- exportExcel(this.columns, data, '待办事项')
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
- created () {
|
|
|
|
- this.getFlowList()
|
|
|
|
|
|
+ GetDealWithItem(this.params).then(res => {
|
|
|
|
+ if (res.code === 0) {
|
|
|
|
+ this.data = res.result.list
|
|
|
|
+ this.params.total = res.result.totalCount
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
},
|
|
},
|
|
mounted () {
|
|
mounted () {
|
|
this.getList()
|
|
this.getList()
|
|
@@ -655,17 +557,6 @@ export default {
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
.container {
|
|
.container {
|
|
height: 100%;
|
|
height: 100%;
|
|
- display: flex;
|
|
|
|
- flex-direction: column;
|
|
|
|
- .tab-nav {
|
|
|
|
- display: flex;
|
|
|
|
- align-items: center;
|
|
|
|
- height: 32px;
|
|
|
|
- }
|
|
|
|
- .main {
|
|
|
|
- flex: 1;
|
|
|
|
- overflow: hidden;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
/deep/ .ivu-modal-body {
|
|
/deep/ .ivu-modal-body {
|
|
background: transparent;
|
|
background: transparent;
|