value
2024-04-29 5628489f1218fc6c60a1510f14a4953db64b6ec1
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<style scoped>
    .title {
        height: 60px;
        line-height: 60px;
    }
 
    .search {
        background-color: #fff;
        height: 80px;
        display: flex;
        align-items: center;
    }
 
    .search_thing {
        width: 350px;
        display: flex;
        align-items: center;
    }
 
    .search_label {
        width: 110px;
        font-size: 14px;
        text-align: right;
    }
 
    .search_input {
        width: calc(100% - 110px);
    }
 
    .table {
        margin-top: 10px;
        background-color: #fff;
        width: calc(100% - 40px);
        height: calc(100% - 60px - 80px - 10px - 40px);
        padding: 20px;
    }
</style>
 
<template>
    <div class="standard-template">
        <div>
            <el-row class="title">
                <el-col :span="12" style="padding-left: 20px;">原始记录模板</el-col>
                <el-col :span="12" style="text-align: right;">
                    <el-button size="medium" type="primary" @click="openAdd" v-if="addPower">新增</el-button>
                </el-col>
            </el-row>
        </div>
        <div class="search">
            <div class="search_thing">
                <div class="search_label">模板名称:</div>
                <div class="search_input"><el-input size="small" placeholder="请输入" clearable v-model="componentData.entity.name"
                        @keyup.enter.native="refreshTable()"></el-input></div>
            </div>
            <div class="search_thing" style="padding-left: 30px;">
                <el-button size="small" @click="refresh()">重 置</el-button>
                <el-button size="small" type="primary" @click="refreshTable()">查 询</el-button>
            </div>
        </div>
        <div class="table">
            <ValueTable ref="ValueTable" :url="$api.StandardTemplate.selectStandardTemplatePageList"
                :upUrl="$api.StandardTemplate.upStandardTemplate" :delUrl="$api.StandardTemplate.delStandardTemplate"
                :componentData="componentData" :key="upIndex" />
        </div>
        <el-dialog title="模板编制" :visible.sync="isShow" width="80%" :before-close="isClose">
            <div style="width: 100%;height: 80vh;overflow: auto;" v-if="isShow">
                <Excel :data="row.thing" :execlTitle="row.name" v-loading="loading"></Excel>
            </div>
        </el-dialog>
    </div>
</template>
 
<script>
    import ValueTable from '../tool/value-table.vue'
    import Excel from '../tool/excel.vue'
    export default {
        components: {
            ValueTable,
            Excel
        },
        data() {
            return {
                componentData: {
                    entity: {
                        name: null,
                        orderBy: {
                            field: 'id',
                            order: 'asc'
                        }
                    },
                    isIndex: true,
                    showSelect: false,
                    select: false,
                    do: [{
                        id: 'update',
                        font: '编辑',
                        type: 'text',
                        method: 'doDiy',
                        field: ['createUserName', 'updateUserName']
                    }, {
                        id: 'delete',
                        font: '删除',
                        type: 'text',
                        method: 'doDiy'
                    }, {
                        font: '模板编制',
                        type: 'text',
                        method: 'templateWrite'
                    }],
                    tagField: {},
                    selectField: {},
                    requiredAdd: ['name'],
                    requiredUp: ['name']
                },
                entityCopy: {},
                upIndex: 0,
                addDia: false,
                addPower: true,
                isShow: false,
                loading: false,
                row: {
                    id: null,
                    thing: null,
                    name: null
                }
            }
        },
        mounted() {
            this.entityCopy = this.HaveJson(this.componentData.entity)
            this.getPower()
            window.excelClosed = this.closed
        },
        methods: {
            refreshTable() {
                this.$refs['ValueTable'].selectList()
            },
            refresh() {
                this.componentData.entity = this.HaveJson(this.entityCopy)
                this.upIndex++
            },
            openAdd() {
                this.$refs.ValueTable.openAddDia(this.$api.StandardTemplate.addStandardTemplate);
            },
            // 权限分配
            getPower() {
                let power = JSON.parse(sessionStorage.getItem('power'))
                let up = false
                let del = false
                let add = false
                for (var i = 0; i < power.length; i++) {
                    if (power[i].menuMethod == 'upStandardTemplate') {
                        up = true
                    }
                    if (power[i].menuMethod == 'delStandardTemplate') {
                        del = true
                    }
                    if (power[i].menuMethod == 'addStandardTemplate') {
                        add = true
                    }
                }
                if (!del) {
                    this.componentData.do.splice(1, 1)
                }
                if (!up) {
                    this.componentData.do.splice(0, 1)
                }
                this.addPower = add
            },
            templateWrite(row) {
                this.isShow = true
                this.row = row
            },
            closed() {
                this.loading = true
                let data = luckysheet.toJson()
                delete data.title
                delete data.container
                delete data.lang
                delete data.showsheetbar
                delete data.showstatisticBarConfig
                delete data.enableAddRow
                delete data.enableAddBackTop
                delete data.showtoolbarConfig
                delete data.cellRightClickConfig
                delete data.myFolderUrl
                delete data.functionButton
                if(data.data[0].config.borderInfo != undefined){
                    for (var i = 0; i < data.data[0].config.borderInfo.length; i++) {
                        let str = data.data[0].config.borderInfo
                        if (str[i].rangeType === 'range') {
                            if (str[i].borderType === 'border-none') {
                                data.data[0].config.borderInfo.splice(i, 1)
                                i -= 1
                            }
                        }
                    }
                }
        data.data[0].celldata.forEach(a=>{
          if(a.v.ps!=undefined&&a.v.ps.value==='检验值' || a.v.ps!=undefined&&a.v.ps.value==='设备名称' || a.v.ps!=undefined&&a.v.ps.value==='设备编码'){
            if(a.v.v === undefined){
              a.v.v = ""
            }
          }
        })
                this.$axios.post(this.$api.StandardTemplate.upStandardTemplate, {
                    id: this.row.id,
                    thing: JSON.stringify(data),
                    name: luckysheet.getWorkbookName(['name'])
                }, {
                    headers: {
                        'Content-Type': 'application/json'
                    }
                }).then(res => {
                    if (res.code == 201) return
                    this.loading = false
                    this.$message.success('已保存')
                    this.isShow = false
                    this.refreshTable()
                })
            },
            isClose(done) {
                this.$confirm('是否需要保存?', "警告", {
                    confirmButtonText: "确定",
                    cancelButtonText: "取消",
                    type: "warning"
                }).then(() => {
                    this.closed()
                }).catch(() => {
                    done()
                })
            }
        }
    }
</script>