|
@@ -1,12 +1,5 @@
|
|
|
<template>
|
|
|
<div style="height: 100%">
|
|
|
- <template v-if="shopPurchaseArea && shopPurchaseAreaParam.openType !== 'add'">
|
|
|
- <el-page-header
|
|
|
- :content="shopPurchaseAreaParam.openType === 'view' ? '查看网点采购单' : '编辑网点采购单'"
|
|
|
- @back="backUpdPage"
|
|
|
- />
|
|
|
- <el-divider />
|
|
|
- </template>
|
|
|
<div v-show="showListArea" style="height: 100%">
|
|
|
<template-page
|
|
|
ref="pageRef"
|
|
@@ -20,13 +13,27 @@
|
|
|
>
|
|
|
</template-page>
|
|
|
</div>
|
|
|
- <!-- 新增编辑单据 -->
|
|
|
- <shop-purchase-area
|
|
|
- v-if="shopPurchaseArea"
|
|
|
- :is-open.sync="shopPurchaseArea"
|
|
|
- :input-param="shopPurchaseAreaParam"
|
|
|
- @getList="$refs.pageRef.refreshList()"
|
|
|
- />
|
|
|
+ <template v-if="shopPurchaseArea">
|
|
|
+ <div style="box-sizing: border-box; padding: 20px">
|
|
|
+ <el-page-header
|
|
|
+ :content="
|
|
|
+ shopPurchaseAreaParam.openType !== 'add'
|
|
|
+ ? '新增网点采购单'
|
|
|
+ : shopPurchaseAreaParam.openType === 'view'
|
|
|
+ ? '查看网点采购单'
|
|
|
+ : '编辑网点采购单'
|
|
|
+ "
|
|
|
+ @back="backUpdPage"
|
|
|
+ />
|
|
|
+ <el-divider />
|
|
|
+ <!-- 新增编辑单据 -->
|
|
|
+ <shop-purchase-area
|
|
|
+ :is-open.sync="shopPurchaseArea"
|
|
|
+ :input-param="shopPurchaseAreaParam"
|
|
|
+ @getList="$refs.pageRef.refreshList()"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
<!-- 预览表单 -->
|
|
|
<print-form
|
|
|
v-if="isPreview"
|
|
@@ -40,7 +47,6 @@
|
|
|
<script>
|
|
|
import {
|
|
|
verifyPurchaseApplySheet,
|
|
|
- getPurchaseApplySheetList,
|
|
|
revokePurchaseApplySheet,
|
|
|
getPurchaseApplySheet,
|
|
|
getNewPurchaseApplySheetList,
|
|
@@ -49,17 +55,17 @@ import {
|
|
|
import ShopPurchaseArea from '../components/ShopPurchaseArea'
|
|
|
import TemplatePage from '@/components/template/template-page-1.vue'
|
|
|
import import_mixin from '@/components/template/import_mixin.js'
|
|
|
+import operation_mixin from '@/components/template/operation_mixin.js'
|
|
|
export default {
|
|
|
name: 'ShopPurchase',
|
|
|
components: { ShopPurchaseArea, TemplatePage },
|
|
|
- mixins: [import_mixin],
|
|
|
-
|
|
|
+ mixins: [import_mixin, operation_mixin],
|
|
|
data() {
|
|
|
return {
|
|
|
shopPurchaseArea: false,
|
|
|
shopPurchaseAreaParam: {
|
|
|
openType: 'add',
|
|
|
- sheetId: ''
|
|
|
+ purchaseId: ''
|
|
|
},
|
|
|
dataList: null, // 列表数据
|
|
|
listLoading: true, // 列表加载loading
|
|
@@ -71,40 +77,26 @@ export default {
|
|
|
submitTime: '', // 创建时间
|
|
|
flag: '', // 状态
|
|
|
keyword: '', // 关键词
|
|
|
- sheetId: '', // 单据编号
|
|
|
+ purchaseId: '', // 单据编号
|
|
|
shopId: ''
|
|
|
},
|
|
|
purchaseForm: {},
|
|
|
isPreview: false,
|
|
|
- // 事件组合
|
|
|
- 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.notes2}</span>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- )
|
|
|
- }
|
|
|
+ selectColumn: false
|
|
|
+ // 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.notes2}</span>
|
|
|
+ // </el-form-item>
|
|
|
+ // </el-form>
|
|
|
+ // </div>
|
|
|
+ // )
|
|
|
+ // }
|
|
|
},
|
|
|
// 表格事件
|
|
|
tableEvents: {
|
|
@@ -116,27 +108,29 @@ export default {
|
|
|
computed: {
|
|
|
showListArea: function () {
|
|
|
return !(this.isPreview || this.shopPurchaseArea)
|
|
|
+ },
|
|
|
+ optionsEvensGroup() {
|
|
|
+ return [
|
|
|
+ [
|
|
|
+ [
|
|
|
+ this.optionsEvensAuth('add', {
|
|
|
+ click: () => {
|
|
|
+ this.addOrEdit('add')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ ]
|
|
|
+ ]
|
|
|
+ ]
|
|
|
}
|
|
|
},
|
|
|
- created() {
|
|
|
- // this.$refs.pageRef.refreshList();
|
|
|
- },
|
|
|
methods: {
|
|
|
// 新增编辑 采购入库单
|
|
|
addOrEdit(type, id) {
|
|
|
this.shopPurchaseArea = true
|
|
|
this.shopPurchaseAreaParam.openType = type
|
|
|
- this.shopPurchaseAreaParam.sheetId = id
|
|
|
- },
|
|
|
- // 操作事件
|
|
|
- handleCommand(param) {
|
|
|
- console.log(333, param)
|
|
|
- if (param[1] === 'view' || param[1] === 'edit') {
|
|
|
- this.addOrEdit(param[1], param[0])
|
|
|
- } else {
|
|
|
- this[param[1] + 'Sheet'](param[0])
|
|
|
- }
|
|
|
+ this.shopPurchaseAreaParam.purchaseId = id
|
|
|
},
|
|
|
+
|
|
|
backUpdPage() {
|
|
|
this.$refs.pageRef.refreshList()
|
|
|
this.shopPurchaseArea = false
|
|
@@ -156,51 +150,80 @@ export default {
|
|
|
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 === 1 ? (
|
|
|
- <div>
|
|
|
- {this.checkBtnRole('edit') ? (
|
|
|
- <el-dropdown-item icon="el-icon-edit" command={[row.sheetId, 'edit']}>
|
|
|
- 编辑
|
|
|
- </el-dropdown-item>
|
|
|
- ) : null}
|
|
|
- {this.checkBtnRole('verify') ? (
|
|
|
- <el-dropdown-item icon="el-icon-lock" command={[row.sheetId, 'verify']}>
|
|
|
- 核实
|
|
|
- </el-dropdown-item>
|
|
|
- ) : null}
|
|
|
- {this.checkBtnRole('revoke') ? (
|
|
|
- <el-dropdown-item icon="el-icon-unlock" command={[row.sheetId, 'revoke']}>
|
|
|
- 撤消
|
|
|
- </el-dropdown-item>
|
|
|
- ) : null}
|
|
|
- {this.checkBtnRole('view') ? (
|
|
|
- <el-dropdown-item icon="el-icon-printer" command={[row.sheetId, 'view']}>
|
|
|
- 预览
|
|
|
- </el-dropdown-item>
|
|
|
- ) : null}
|
|
|
- </div>
|
|
|
- ) : null}
|
|
|
- </el-dropdown-menu>
|
|
|
- </el-dropdown>
|
|
|
- </div>
|
|
|
- )
|
|
|
+ // 操作事件
|
|
|
+ handleCommand(param) {
|
|
|
+ if (param[1] === 'view' || param[1] === 'edit') {
|
|
|
+ this.addOrEdit(param[1], param[0])
|
|
|
+ } else {
|
|
|
+ this[param[1] + 'Sheet'](param[0])
|
|
|
}
|
|
|
+ },
|
|
|
+ // 撤消单据
|
|
|
+ revokeSheet(purchaseId) {
|
|
|
+ this.$confirm(`此操作将撤消 ${purchaseId} 单据, 是否继续?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ revokePurchaseApplySheet({ purchaseId: purchaseId }).then(() => {
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+
|
|
|
+ this.$successMsg('撤消成功')
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => console.log('取消'))
|
|
|
+ },
|
|
|
+ // 审核单据
|
|
|
+ verifySheet(purchaseId) {
|
|
|
+ this.$confirm(`此操作将审核 ${purchaseId} 单据, 是否继续?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ verifyPurchaseApplySheet({ purchaseId: purchaseId }).then(() => {
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+
|
|
|
+ this.$successMsg('审核成功')
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => console.log('取消'))
|
|
|
+ },
|
|
|
+ operation() {
|
|
|
+ return this.operationBtn({
|
|
|
+ view: {
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ this.handleCommand([row.purchaseId, 'view'])
|
|
|
+ }
|
|
|
+ },
|
|
|
+ edit: {
|
|
|
+ conditions: ({ row, index, column }) => {
|
|
|
+ return row.flag === 1
|
|
|
+ },
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ this.handleCommand([row.purchaseId, 'edit'])
|
|
|
+ }
|
|
|
+ },
|
|
|
+ verify: {
|
|
|
+ prompt: '确定核实吗?',
|
|
|
+ conditions: ({ row, index, column }) => {
|
|
|
+ return row.flag === 1
|
|
|
+ },
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ this.handleCommand([row.purchaseId, 'verify'])
|
|
|
+ }
|
|
|
+ },
|
|
|
+ revoke: {
|
|
|
+ prompt: '确定撤消吗?',
|
|
|
+ conditions: ({ row, index, column }) => {
|
|
|
+ return row.flag === 1
|
|
|
+ },
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ this.handleCommand([row.purchaseId, 'revoke'])
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
}
|