|
@@ -18,7 +18,7 @@
|
|
|
:getList="getList"
|
|
|
:exportList="exportList"
|
|
|
:columnParsing="columnParsing"
|
|
|
- :operation="operation()"
|
|
|
+ :operation="operation"
|
|
|
:optionsEvensGroup="optionsEvensGroup"
|
|
|
:tableAttributes="tableAttributes"
|
|
|
:tableEvents="tableEvents"
|
|
@@ -36,19 +36,19 @@
|
|
|
|
|
|
<script>
|
|
|
import {
|
|
|
- confirmVenderGoodsSheet,
|
|
|
- delVenderGoodsSheet,
|
|
|
- getVenderGoodsSheetList,
|
|
|
getNewVenderList,
|
|
|
- exportNewVenderList
|
|
|
+ exportNewVenderList,
|
|
|
+ confirmVenderGoodsSheet,
|
|
|
+ delVenderGoodsSheet
|
|
|
} from '@/api/material-system/vender'
|
|
|
import VenderGoodsArea from '../components/VenderGoodsArea'
|
|
|
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: 'VenderGoodsSheet',
|
|
|
components: { VenderGoodsArea, TemplatePage },
|
|
|
- mixins: [import_mixin],
|
|
|
+ mixins: [import_mixin, operation_mixin],
|
|
|
data() {
|
|
|
return {
|
|
|
venderGoodsArea: false,
|
|
@@ -56,24 +56,10 @@ export default {
|
|
|
openType: 'add',
|
|
|
sheetId: ''
|
|
|
},
|
|
|
- // 事件组合
|
|
|
- optionsEvensGroup: [
|
|
|
- [
|
|
|
- [
|
|
|
- {
|
|
|
- name: '新增单据',
|
|
|
- click: () => {
|
|
|
- this.addOrEdit('add')
|
|
|
- },
|
|
|
- isRole: this.checkBtnRole('add')
|
|
|
- }
|
|
|
- ]
|
|
|
- ]
|
|
|
- ],
|
|
|
// 表格属性
|
|
|
tableAttributes: {
|
|
|
// 启用勾选列
|
|
|
- selectColumn: true
|
|
|
+ selectColumn: false
|
|
|
},
|
|
|
// 表格事件
|
|
|
tableEvents: {
|
|
@@ -82,7 +68,72 @@ export default {
|
|
|
recordSelected: []
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ optionsEvensGroup() {
|
|
|
+ return [
|
|
|
+ [
|
|
|
+ [
|
|
|
+ this.optionsEvensAuth('add', {
|
|
|
+ click: () => {
|
|
|
+ this.addOrEdit('add')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ ]
|
|
|
+ ]
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
+ // 列表请求函数
|
|
|
+ getList(p) {
|
|
|
+ this.recordSelected = []
|
|
|
+ return getNewVenderList(p)
|
|
|
+ },
|
|
|
+ // 列表导出函数
|
|
|
+ exportList: exportNewVenderList,
|
|
|
+ // 表格列解析渲染数据更改
|
|
|
+ columnParsing(item, defaultData) {
|
|
|
+ return defaultData
|
|
|
+ },
|
|
|
+ // 监听勾选变化
|
|
|
+ selectionChange(data) {
|
|
|
+ this.recordSelected = data
|
|
|
+ },
|
|
|
+ operation() {
|
|
|
+ return this.operationBtn({
|
|
|
+ view: {
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ this.addOrEdit('view', row.sheetId)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ edit: {
|
|
|
+ conditions: ({ row, index, column }) => {
|
|
|
+ return row.flag === 0
|
|
|
+ },
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ this.addOrEdit('edit', row.sheetId)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ del: {
|
|
|
+ prompt: '确定删除吗?',
|
|
|
+ conditions: ({ row, index, column }) => {
|
|
|
+ return row.flag === 0
|
|
|
+ },
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ this.delSheet(row.sheetId)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ confirm: {
|
|
|
+ prompt: '确定审核吗?',
|
|
|
+ conditions: ({ row, index, column }) => {
|
|
|
+ return row.flag === 0
|
|
|
+ },
|
|
|
+ click: ({ row, index, column }) => {
|
|
|
+ this.confirmSheet(row.sheetId)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
// 新增编辑 辅材
|
|
|
addOrEdit(type, id) {
|
|
|
this.venderGoodsArea = true
|
|
@@ -91,9 +142,8 @@ export default {
|
|
|
},
|
|
|
// 删除单据
|
|
|
delSheet(sheetId) {
|
|
|
- delVenderGoodsSheet({ sheetId: sheetId }).then(() => {
|
|
|
+ delVenderGoodsSheet([sheetId]).then(() => {
|
|
|
this.$refs.pageRef.refreshList()
|
|
|
-
|
|
|
this.$successMsg('删除成功')
|
|
|
})
|
|
|
},
|
|
@@ -108,78 +158,6 @@ export default {
|
|
|
backUpdPage() {
|
|
|
this.$refs.pageRef.refreshList()
|
|
|
this.venderGoodsArea = false
|
|
|
- },
|
|
|
- // 列表请求函数
|
|
|
- getList(...p) {
|
|
|
- this.recordSelected = []
|
|
|
- return getNewVenderList(...p)
|
|
|
- },
|
|
|
- // 列表导出函数
|
|
|
- exportList: exportNewVenderList,
|
|
|
- // 表格列解析渲染数据更改
|
|
|
- columnParsing(item, defaultData) {
|
|
|
- return defaultData
|
|
|
- },
|
|
|
- // 监听勾选变化
|
|
|
- selectionChange(data) {
|
|
|
- this.recordSelected = data
|
|
|
- },
|
|
|
- operation() {
|
|
|
- return (h, { row, index, column }) => {
|
|
|
- return (
|
|
|
- <div class="operation-btns">
|
|
|
- {this.checkBtnRole('view') ? (
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- onClick={() => {
|
|
|
- this.addOrEdit('view', row.sheetId)
|
|
|
- }}
|
|
|
- >
|
|
|
- 查看
|
|
|
- </el-button>
|
|
|
- ) : null}
|
|
|
- {this.checkBtnRole('edit') && row.flag === 0 ? (
|
|
|
- <el-button
|
|
|
- type="text"
|
|
|
- size="mini"
|
|
|
- style="margin-right: 10px;"
|
|
|
- onClick={() => {
|
|
|
- this.addOrEdit('edit', row.sheetId)
|
|
|
- }}
|
|
|
- >
|
|
|
- 编辑
|
|
|
- </el-button>
|
|
|
- ) : null}
|
|
|
- {this.checkBtnRole('confirm') && row.flag === 0 ? (
|
|
|
- <el-popconfirm
|
|
|
- style="margin-right: 10px;"
|
|
|
- title="确定审核吗?"
|
|
|
- onConfirm={() => {
|
|
|
- this.confirmSheet(row.sheetId)
|
|
|
- }}
|
|
|
- >
|
|
|
- <el-button slot="reference" size="mini" type="text">
|
|
|
- 审核
|
|
|
- </el-button>
|
|
|
- </el-popconfirm>
|
|
|
- ) : null}
|
|
|
- {this.checkBtnRole('del') && row.flag === 0 ? (
|
|
|
- <el-popconfirm
|
|
|
- style="margin-right: 10px;"
|
|
|
- title="确定删除吗?"
|
|
|
- onConfirm={() => {
|
|
|
- this.delSheet(row.sheetId)
|
|
|
- }}
|
|
|
- >
|
|
|
- <el-button slot="reference" size="mini" type="text">
|
|
|
- 删除
|
|
|
- </el-button>
|
|
|
- </el-popconfirm>
|
|
|
- ) : null}
|
|
|
- </div>
|
|
|
- )
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
}
|