123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <template>
- <zj-tab-page ref="tabPage" :defaultActives="[{ key: 'list', label: $route.meta.title+'-列表', essential: true }]">
- <template slot-scope="{activeKey, data}">
- <template-page v-if="activeKey == 'list'" ref="pageRef" :get-list="getList" :table-attributes="tableAttributes" :table-events="tableEvents"
- :options-evens-group="optionsEvensGroup" :moreParameters="moreParameters" :column-parsing="columnParsing"
- :operation="operation()" :exportList="exportList">
- </template-page>
- <div v-if="~['add', 'edit', 'detail'].indexOf(activeKey)">
- <zj-form-container ref="formRef" :form-data="formData" :styleSwitch="false">
- <zj-form-module title="" label-width="100px" :showPackUp="false"
- :form-data="formData" :form-items="formItems">
- </zj-form-module>
- </zj-form-container>
- <div slot="footer" class="dialog-footer">
- <el-button size="mini" @click="data.removeTab()">取 消</el-button>
- <el-button size="mini" @click="formConfirm(data.removeTab)" type="primary">确 定</el-button>
- </div>
- </div>
- </template>
- </zj-tab-page>
- </template>
- <script>
- import TemplatePage from '@/components/template/template-page-1.vue'
- import import_mixin from '@/components/template/import_mixin.js'
- import { required, mobileRequired, mobile } from '@/components/template/rules_verify.js'
- import { storageListPageV2, storagePageExport, addStorage, deleteStorage, editStorage, getStorageDetail } from "@/api/storage";
- import operation_mixin from '@/components/template/operation_mixin.js'
- export default {
- components: { TemplatePage },
- mixins: [import_mixin,operation_mixin],
- data() {
- return {
- // 表格属性
- tableAttributes: {
- // 启用勾选列
- selectColumn: false
- },
- // 表格事件
- tableEvents: {
- 'selection-change': this.selectionChange
- },
- // 勾选选中行
- recordSelected: [],
- /** 表单变量 */
- formDialogType: 0,
- formDialogTitles: ["新增", "编辑"],
- formDialog: false,
- formData: {
- storageName: '',
- storageMobile: '',
- storageAddress: '',
- },
- formType: 'add',
- formVisible: false,
- }
- },
- computed: {
- // 事件组合
- optionsEvensGroup() {
- return [
- [
- [
- this.optionsEvensAuth("add", {
- click: () => {
- this.openForm('add')
- }
- })
- ],
- ]
- ]
- },
- // 更多参数
- moreParameters() {
- return []
- },
- formItems() {
- return [{
- md: 6,
- isShow: true,
- name: 'el-input',
- attributes: { placeholder: '请输入' },
- formItemAttributes: {
- label: '仓储名称',
- prop: 'storageName',
- rules: [...required]
- }
- }, {
- md: 6,
- isShow: true,
- name: 'el-input',
- attributes: { placeholder: '请输入' },
- formItemAttributes: {
- label: '仓储电话',
- prop: 'storageMobile',
- rules: [...mobile]
- }
- }, {
- md: 6,
- isShow: true,
- name: 'el-input',
- attributes: { placeholder: '请输入' },
- formItemAttributes: {
- label: '仓储地址',
- prop: 'storageAddress',
- rules: []
- }
- }]
- }
- },
- methods: {
- // 列表请求函数
- getList: storageListPageV2,
- // 列表导出函数
- exportList: storagePageExport,
- // 表格列解析渲染数据更改
- columnParsing(item, defaultData) {
- return defaultData
- },
- // 监听勾选变化
- selectionChange(data) {
- this.recordSelected = data
- },
- // 表格操作列
- operation() {
- return this.operationBtn({
- edit: {
- btnType: 'text',
- click: ({ row, index, column }) => {
- this.openForm('edit',row.storageId)
- }
- },
- del: {
- btnType: 'text',
- prompt: '确定删除吗?',
- click: ({ row, index, column }) => {
- deleteStorage({ storageId: row.storageId }).then(() => {
- this.$message({ type: 'success', message: '删除成功!' })
- this.$refs.pageRef.refreshList()
- })
- }
- }
- })
- },
- // 打开 新增编辑 网点表单
- openForm(type, id) {
- this.$refs.tabPage.addTab({
- // 对应显示的模块
- activeKey: type,
- // 唯一标识
- key: type,
- // 页签名称
- label: ({ edit: "编辑", add: "新增" })[type],
- // 打开时事件
- triggerEvent: () => {
- this.formCancel()
- this.$nextTick(()=>{
- this.formType = type
- this.formVisible = true
- if (type == 'add') {
- this.formDialogType = 0
- } else if(type == 'edit'){
- this.formDialogType = 1
- getStorageDetail({ id }).then(res => {
- Object.assign(this.formData, res.data)
- })
- }
- })
- },
- // 关闭时事件
- closeEvent: () => {
-
- }
- })
- },
- formCancel() {
- this.formVisible = false
- this.$refs?.formRef?.resetFields()
- this.$data.formData = this.$options.data().formData
- },
- formConfirm(cancel) {
- this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
- if (valid) {
- ([addStorage, editStorage][this.formDialogType])(this.formData).then(res => {
- this.$message({ type: 'success', message: `${this.formDialogTitles[this.formDialogType]}成功!` })
- cancel('list')
- this.$refs.pageRef.refreshList()
- })
- }
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped></style>
|