车辆管理系统-后台管理系统web
liding
3 天以前 e4b773b5936ec1fa3747fd3d35b85799773d5f39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<template>
  <div class="divBox">
    <el-card class="box-card">
      <el-tabs v-model="activeNamel1" @tab-click="handleTabClick"  v-loading="loading" v-if="checkPermi(['admin:system:config:info'])">
        <el-tab-pane
          v-for="tab,index in treeList"
          :key="index"
          :label="tab.name"
          :name="tab.id.toString()">
          <template>
            <el-tabs v-if="tab.child.length > 0" v-model="activeNamel2"
                     type="border-card" @tab-click="handleItemTabClick">
              <el-tab-pane
                v-for="tabItem,itemIndex in tab.child"
                :key="itemIndex"
                :label="tabItem.name"
                :name="tabItem.extra"
              >
                <parser
                  v-if="formConfChild.render"
                  :is-edit="formConfChild.isEdit"
                  :form-conf="formConfChild.content"
                  :form-edit-data="currentEditData"
                  @submit="handlerSubmit"
                />
              </el-tab-pane>
            </el-tabs>
            <span v-else>
          <parser
            v-if="formConf.render"
            :is-edit="formConf.isEdit"
            :form-conf="formConf.content"
            :form-edit-data="currentEditData"
            @submit="handlerSubmit"
          />
        </span>
          </template>
        </el-tab-pane>
      </el-tabs>
    </el-card>
  </div>
</template>
 
<script>
import parser from '@/components/FormGenerator/components/parser/Parser'
import * as categoryApi from '@/api/categoryApi.js'
import * as selfUtil from '@/utils/ZBKJIutil.js'
import * as systemFormConfigApi from '@/api/systemFormConfig.js'
import * as systemSettingApi from '@/api/systemSetting.js'
import * as systemConfigApi from '@/api/systemConfig.js'
// import Template from "@/views/appSetting/wxAccount/wxTemplate/index";
import {beautifierConf} from "@/components/FormGenerator/utils";
import { checkPermi } from "@/utils/permission"; // 权限判断函数
import {Debounce} from '@/utils/validate'
export default {
  // name: "index",
  components: { parser },
  data() {
    return {
      loading: false,
      formConf: { content: { fields: [] }, id: null, render: false, isEdit: false },
      formConfChild: { content: { fields: [] }, id: null, render: false, isEdit: false },
      activeNamel1: null,
      activeNamel2: '',//针对文件特殊处理
      treeList: [],
      editDataChild: {},
      isCreate: 0,
      currentEditId: null,
      currentEditData: null,
      currentSelectedUploadFlag:null,
    }
  },
  mounted() {
    this.handlerGetTreeList()
    this.getCurrentUploadSelectedFlag()
  },
  methods: {
    checkPermi,
    handleTabClick(tab) {
      this.activeNamel2 = tab.$children[0].panes[0].name;
      this.handlerGetLevel2FormConfig(this.activeNamel2);
    },
    handlerGetLevel1FormConfig(id) {
      const formPram = { id: id }
      this.currentEditId = id
      this.formConf.content = { fields: [] }
      this.formConf.render = false
      this.loading = true
      systemFormConfigApi.getFormConfigInfo(formPram).then(data => {
        const { id, name, info, content } = data
        this.formConf.content = JSON.parse(content)
        this.formConf.id = id
        this.handlerGetSettingInfo(id, 1)
        this.loading = false
      }).catch(() =>{
        this.loading = false
      })
    },
    handleItemTabClick(tab, event) { //这里对tabs=tab.name和radio=id做了兼容
      let _id = tab.name ? tab.name : tab
      if(!_id) return this.$message.error('表单配置不正确,请关联正确表单后使用')
      this.handlerGetLevel2FormConfig(_id)
    },
    handlerGetLevel2FormConfig(id) {
      const formPram = { id: id }
      this.currentEditId = id
      this.formConfChild.content = { fields: [] }
      this.formConfChild.render = false
      this.loading = true
      systemFormConfigApi.getFormConfigInfo(formPram).then(data => {
        const { id, name, info, content } = data
        this.formConfChild.content = JSON.parse(content)
        this.formConfChild.id = id
        this.handlerGetSettingInfo(id, 2)
        this.loading = false
      }).catch(() =>{
        this.loading = false
      })
    },
    handlerGetSettingInfo(id, level) {
      systemSettingApi.systemConfigInfo({ id: id }).then(data => {
        this.currentEditData = data
        if (level === 1) {
          this.formConf.isEdit = this.currentEditData !== null
          this.formConf.render = true
        } else {
          this.formConfChild.isEdit = this.currentEditData !== null
          this.formConfChild.render = true
        }
      })
    },
    handlerSubmit:Debounce(function(formValue) {
      this.handlerSave(formValue)
    }),
    handlerSave(formValue) {
      const _pram = this.buildFormPram(formValue)
      let _formId = 0
      systemSettingApi.systemConfigSave(_pram).then(data => {
        this.$message.success('添加数据成功')
      })
    },
    handlerGetTreeList() {
      const _pram = { type: this.$constants.categoryType[5].value, status: 1 }
      this.loading = true
      categoryApi.treeCategroy(_pram).then(data => {
        this.treeList = this.handleAddArrt(data)
        if (this.treeList.length > 0) this.activeNamel1 = this.treeList[0].id.toString();
        if (this.treeList.length > 0 && this.treeList[0].child.length > 0) {
          this.activeNamel2 = this.treeList[0].child[0].extra
        }
        if (this.activeNamel2) {
          this.handlerGetLevel2FormConfig(this.treeList[0].child[0].extra)
        }
       // else {
        //  this.handlerGetLevel1FormConfig(this.treeList[0].extra)
        //}
        this.loading = false
      }).catch(() =>{
        this.loading = false
      })
    },
    handleAddArrt(treeData) {
      // let _result = this.addTreeListLabel(treeData)
      const _result = selfUtil.addTreeListLabel(treeData)
      return _result
    },
    buildFormPram(formValue) {
      const _pram = {
        fields: [],
        id: this.currentEditId,
        sort: 0, // 参数暂时无用
        status: true // 参数暂时无用
      }
      const _fields = []
      Object.keys(formValue).forEach((key) => {
        _fields.push({
          name: key,
          title: key,
          value: formValue[key]
        })
      })
      _pram.fields = _fields
      return _pram
    },
    getCurrentUploadSelectedFlag(){
      systemConfigApi.configGetUniq({key:"uploadType"}).then(data => {
        this.currentSelectedUploadFlag = parseInt(data)
      })
    }
  }
}
</script>
 
<style scoped>
 
</style>