浏览代码

no message

linwenxin 6 月之前
父节点
当前提交
f68e92a8bf
共有 2 个文件被更改,包括 247 次插入0 次删除
  1. 41 0
      src/api/abnormalFeedbackConfig.js
  2. 206 0
      src/views/workOrder/abnormalFeedbackConfig/index.vue

+ 41 - 0
src/api/abnormalFeedbackConfig.js

@@ -0,0 +1,41 @@
+import request, { postBlob, getBlob, handleImport } from '@/utils/request'
+
+export function abnormalList(data) {
+  return request({
+    url: `/abnormal/list?moduleId=${data.moduleId}`,
+    method: 'post',
+    data
+  })
+}
+
+export function abnormalListExport(data, name) {
+  return postBlob({
+    url: '/abnormal/list/export',
+    data,
+    name
+  })
+}
+
+export function abnormalDetail(params) {
+  return request({
+    url: `/abnormal/detail`,
+    method: 'post',
+    params
+  })
+}
+
+export function abnormalAdd(data) {
+  return request({
+    url: `/abnormal/add`,
+    method: 'post',
+    data
+  })
+}
+
+export function abnormalUpdate(data) {
+  return request({
+    url: `/abnormal/update`,
+    method: 'post',
+    data
+  })
+}

+ 206 - 0
src/views/workOrder/abnormalFeedbackConfig/index.vue

@@ -0,0 +1,206 @@
+<template>
+  <template-page
+    ref="pageRef"
+    :getList="getList"
+    :exportList="exportList"
+    :columnParsing="columnParsing"
+    :optionsEvensGroup="optionsEvensGroup"
+    :tableAttributes="tableAttributes"
+    :tableEvents="tableEvents"
+    :operation="operation()"
+  >
+    <div class="cartographer_big">
+      <el-dialog title="配置" width="100%" :modal="false" :visible.sync="formBool" :before-close="handleClose">
+        <zj-page-container v-if="formBool">
+          <zj-page-fill class="neibuview">
+            <zj-form-container
+              ref="formRef"
+              :form-data="formData"
+              :form-rules="formRules"
+              :form-attributes="{ size: 'mini' }"
+            >
+              <zj-form-module title="基本项" label-width="150px" :form-data="formData" :form-items="items" />
+            </zj-form-container>
+          </zj-page-fill>
+          <!-- 操作按钮 -->
+          <div style="box-sizing: border-box; padding: 10px; text-align: right">
+            <el-button size="mini" @click="handleClose">取 消</el-button>
+            <el-button v-if="~[0, 1].indexOf(formType)" size="mini" @click="formConfirm" type="primary"
+              >确 定</el-button
+            >
+          </div>
+        </zj-page-container>
+      </el-dialog>
+    </div>
+  </template-page>
+</template>
+
+<script>
+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'
+import { required } from '@/components/template/rules_verify.js'
+import {
+  abnormalList,
+  abnormalListExport,
+  abnormalDetail,
+  abnormalAdd,
+  abnormalUpdate
+} from '@/api/abnormalFeedbackConfig'
+export default {
+  components: { TemplatePage },
+  mixins: [import_mixin, operation_mixin],
+  data() {
+    return {
+      // 表格属性
+      tableAttributes: {
+        selectColumn: false
+      },
+      // 表格事件
+      tableEvents: {
+        'selection-change': this.selectionChange
+      },
+      recordSelected: [],
+      formBool: false,
+      formType: 0,
+      formData: {
+        companyWechatId: '',
+        companyWechatName: '',
+        isDefault: false,
+        newRefundInner: 0,
+        newRefundOutside: 0,
+        oldRefund: 0,
+        priceRate1: 0,
+        priceRate2: 0,
+        priceRate3: 0,
+        websitId: '',
+        websitName: ''
+      },
+      formRules: {},
+      websitList: []
+    }
+  },
+  computed: {
+    optionsEvensGroup() {
+      return [
+        [
+          [
+            this.optionsEvensAuth('add', {
+              click: () => {
+                this.formType = 0
+                this.formBool = true
+              }
+            })
+          ]
+        ]
+      ]
+    },
+    items() {
+      return [
+        {
+          name: 'el-input',
+          md: 8,
+          attributes: {
+            placeholder: '请输入'
+          },
+          formItemAttributes: {
+            label: '异常类型',
+            prop: 'exType',
+            rules: [...required]
+          }
+        },
+        {
+          name: 'el-input',
+          md: 8,
+          attributes: {
+            placeholder: '请输入'
+          },
+          formItemAttributes: {
+            label: '异常原因',
+            prop: 'exNote',
+            rules: [...required]
+          }
+        },
+        {
+          md: 8,
+          isShow: true,
+          name: 'el-radio',
+          options: [
+            { label: '启用', value: 'ON' },
+            { label: '禁用', value: 'OFF' }
+          ],
+          attributes: {},
+          formItemAttributes: {
+            label: '状态',
+            prop: 'status',
+            rules: [...required]
+          }
+        }
+      ]
+    }
+  },
+  methods: {
+    // 列表请求函数
+    getList: abnormalList,
+    exportList: abnormalListExport,
+    // 表格列解析渲染数据更改
+    columnParsing(item, defaultData) {
+      return defaultData
+    },
+    // 获取勾选框数据
+    selectionChange(data) {
+      this.recordSelected = data
+    },
+    operation() {
+      return this.operationBtn({
+        edit: {
+          click: ({ row, index, column }) => {
+            abnormalDetail({
+              id: row.id
+            }).then(res => {
+              this.formData = res.data
+              this.$nextTick(() => {
+                this.formType = 1
+                this.formBool = true
+              })
+            })
+          }
+        }
+      })
+    },
+    handleClose() {
+      this.$refs?.pageRef?.refreshList()
+      this.$data.formData = this.$options.data().formData
+      this.formType = 0
+      this.formBool = false
+    },
+    formConfirm() {
+      this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
+        if (valid) {
+          ;(this.formData.id ? abnormalUpdate : abnormalAdd)(this.formData).then(res => {
+            this.$message({ type: 'success', message: '配置成功!' })
+            this.$refs.pageRef.refreshList()
+            this.handleClose()
+          })
+        }
+      })
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.neibuview {
+  box-sizing: border-box;
+  padding-left: 16px;
+
+  ::v-deep & > .zj-page-fill-scroll {
+    box-sizing: border-box;
+    padding-right: 16px;
+
+    & > div:nth-child(1) {
+      margin-top: 20px;
+    }
+  }
+}
+</style>