123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <template>
- <div style="width: 100%; height: 100%; overflow-y: auto">
- <template-page
- v-show="!pageType"
- ref="pageRef"
- :getList="getList"
- :exportList="exportList"
- :operation="operation()"
- :columnParsing="columnParsing"
- :optionsEvensGroup="optionsEvensGroup"
- >
- </template-page>
- <warehouse-form v-if="pageType == 1" :pageType="pageType" @close="handleClose" />
- <warehouse-examine v-if="pageType == 2" :detailsId="detailsId" :pageType="pageType" @close="handleClose" />
- <warehouse-details v-if="pageType === 3" :detailsId="detailsId" :pageType="pageType" @close="handleClose" />
- </div>
- </template>
- <script>
- import popu from '@/components/template/popu.vue'
- import TemplatePage from '@/components/template/template-page-1.vue'
- import import_mixin from '@/components/template/import_mixin.js'
- import { getFrontListCustomerAcc, exportCustomerStockOrderBean, deleteCustomerStockOrder } from '@/api/stock'
- import WarehouseForm from '@/views/stock_control/components/WarehouseForm'
- import WarehouseExamine from '@/views/stock_control/components/WarehouseExamine'
- import WarehouseDetails from '@/views/stock_control/components/WarehouseDetails'
- export default {
- components: { TemplatePage, WarehouseForm, WarehouseExamine, WarehouseDetails, popu },
- mixins: [import_mixin],
- data() {
- return {
- // 事件组合
- optionsEvensGroup: [
- [
- [
- {
- name: '库存调整2',
- click: this.addWarehouse
- }
- ]
- ]
- ],
- // 表格属性
- tableAttributes: {
- // 启用勾选列
- selectColumn: true
- },
- // 表格事件
- tableEvents: {
- 'selection-change': this.selectionChange
- },
- recordSelected: [],
- detailsId: '',
- pageType: 0
- }
- },
- methods: {
- // 列表请求函数
- getList(...p) {
- this.recordSelected = []
- return getFrontListCustomerAcc(...p)
- },
- // 列表导出函数
- exportList: exportCustomerStockOrderBean,
- // 表格列解析渲染数据更改
- columnParsing(item, defaultData) {
- return defaultData
- },
- // 监听勾选变化
- selectionChange(data) {
- this.recordSelected = data
- },
- handleClose() {
- this.pageType = 0
- this.$refs.pageRef.refreshList()
- },
- addWarehouse() {
- this.pageType = 1
- console.log(this.pageType, '333')
- },
- operation() {
- return (h, { row, index, column }) => {
- return (
- <div class="operation-btns">
- <el-button
- size="mini"
- type="text"
- onClick={() => {
- this.detailsId = row.id
- this.pageType = 3
- }}
- >
- 查看
- </el-button>
- {row.examineStatus != 'OK' || row.examineStatus != 'CLOSE' ? (
- <el-button
- size="mini"
- type="text"
- onClick={() => {
- this.detailsId = row.id
- this.pageType = 2
- }}
- >
- 审批
- </el-button>
- ) : null}
- <el-popconfirm
- onConfirm={() => {
- deleteCustomerStockOrder({ id: row.id }).then(res => {
- this.$successMsg('删除成功')
- this.$refs.pageRef.refreshList()
- })
- }}
- title="删除吗?"
- >
- <el-button slot="reference" size="mini" type="text">
- 删除
- </el-button>
- </el-popconfirm>
- </div>
- )
- }
- }
- // 批量删除
- // dels() {
- // if (this.recordSelected.length) {
- // this.$confirm('此操作将删除数据, 是否继续?', '提示', {
- // confirmButtonText: '确定',
- // cancelButtonText: '取消',
- // type: 'warning'
- // })
- // .then(() => {
- // partsOldOutDel({
- // ids: this.recordSelected.map(item => item.id).join(',')
- // })
- // .then(res => {
- // this.$refs.pageRef.refreshList()
- // this.$message({
- // type: 'success',
- // message: '删除成功!'
- // })
- // })
- // .catch(() => {
- // this.$message({
- // type: 'error',
- // message: '删除失败'
- // })
- // })
- // })
- // .catch(() => {
- // this.$message({
- // type: 'info',
- // message: '已取消删除'
- // })
- // })
- // } else {
- // this.$message({
- // type: 'info',
- // message: '请先勾选需要删除的数据!'
- // })
- // }
- // }
- }
- }
- </script>
- <style lang="scss" scoped>
- ::v-deep .el-table__body-wrapper {
- height: 100% !important;
- }
- </style>
|