index_template.vue 27.1 KB
Newer Older
lvzhuangzhuang's avatar
lvzhuangzhuang committed
1
<template>
lenovo's avatar
lenovo committed
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
    <div class="app-container">
        <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
                 label-width="68px">
            <el-form-item label="模板名称" prop="templateName" label-width="100px">
                <el-input
                    v-model="queryParams.templateName"
                    placeholder="请输入模板名称"
                    clearable
                    @keyup.enter.native="handleQuery"
                    maxlength="15"
                />
            </el-form-item>
            <el-form-item label="状态" prop="status">
                <el-select v-model="queryParams.status" placeholder="请选择状态" clearable @keyup.enter.native="handleQuery">
                    <el-option label="未发布" :value="0"></el-option>
                    <el-option label="已发布" :value="1"></el-option>
                </el-select>
            </el-form-item>
            <el-form-item>
                <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
                <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
            </el-form-item>
        </el-form>

        <el-row :gutter="10" class="mb8">
            <el-col :span="1.5">
                <el-button
                    type="primary"
                    plain
                    icon="el-icon-plus"
                    size="mini"
                    @click="handleAdd"
                    v-hasPermi="['SuppliesTemplate:SuppliesTemplate:add']"
                >新增
                </el-button>
            </el-col>
38
<!--            <el-col :span="1.5">
lenovo's avatar
lenovo committed
39 40 41 42 43 44 45 46 47 48
                <el-button
                    type="success"
                    plain
                    icon="el-icon-edit"
                    size="mini"
                    :disabled="single"
                    @click="handleUpdate"
                    v-hasPermi="['SuppliesTemplate:SuppliesTemplate:edit']"
                >修改
                </el-button>
49
            </el-col>-->
lenovo's avatar
lenovo committed
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
            <el-col :span="1.5">
                <el-button
                    type="danger"
                    plain
                    icon="el-icon-delete"
                    size="mini"
                    :disabled="multiple"
                    @click="handleDelete"
                    v-hasPermi="['SuppliesTemplate:SuppliesTemplate:remove']"
                >删除
                </el-button>
            </el-col>
            <el-col :span="1.5">
                <el-button
                    type="success"
                    plain
                    icon="el-icon-edit"
                    size="mini"
                    :disabled="multiple"
                    @click="releaseStatus"
                    v-hasPermi="['SuppliesTemplate:SuppliesTemplate:releaseStatus']"
                >发布
                </el-button>
            </el-col>

            <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
        </el-row>

        <el-table v-loading="loading" :data="SuppliesTemplateList" @selection-change="handleSelectionChange">
            <el-table-column type="selection" width="55" align="center"/>
            <el-table-column type="index" width="80" align="center" label="序号" :index="indexMethod"/>
            <el-table-column label="模板名称" align="center" prop="templateName"/>
82
<!--            <el-table-column label="状态" align="center" prop="status">
lenovo's avatar
lenovo committed
83 84 85 86 87 88 89 90 91 92 93 94 95 96
                <template slot-scope="scope">
                    <div>
                        <el-switch
                            @change="toggleEnable(scope.row)"
                            v-model="scope.row.status"
                            :active-value="0"
                            :inactive-value="1"
                            active-color="#13ce66"
                            inactive-color="#cccccc"
                            active-text="已发布"
                            inactive-text="未发布">
                        </el-switch>
                    </div>
                </template>
97
            </el-table-column>-->
98
            <el-table-column label="状态" align="center">
lenovo's avatar
lenovo committed
99 100
                <template slot-scope="scope">
                    <div>
101 102 103 104 105 106 107 108 109
                        <template v-if="scope.row.status === 0">
                            <span style="color: #0cc030;">已发布</span>
                        </template>
                        <template v-else-if="scope.row.status === 1">
                            <span style="color: #0077ff;">未发布</span>
                        </template>
                        <template v-else-if="scope.row.status === 2">
                            <span style="color: #ff0000;">未发布</span>
                        </template>
lenovo's avatar
lenovo committed
110 111 112
                    </div>
                </template>
            </el-table-column>
113

114
            <el-table-column label="操作" align="center" class-name="small-padding fixed-width" >
lenovo's avatar
lenovo committed
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
                <template slot-scope="scope">
                    <el-button
                        size="mini"
                        type="text"
                        icon="el-icon-edit"
                        @click="releaseStatus(scope.row)"
                        v-hasPermi="['SuppliesTemplate:SuppliesTemplate:status']"
                        :style="{display : scope.row.status>0?'':'none'}"
                    >发布
                    </el-button>
                    <el-button
                        size="mini"
                        type="text"
                        icon="el-icon-edit"
                        @click="offShelfStatus(scope.row)"
                        v-hasPermi="['SuppliesTemplate:SuppliesTemplate:status']"
                        :style="{display : scope.row.status===0?'':'none'}"
                    >下架
                    </el-button>
                </template>
            </el-table-column>
            <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
                <template slot-scope="scope">
                    <el-button
                        size="mini"
                        type="text"
                        icon="el-icon-edit"
                        @click="handleSave(scope.row)"
                        v-hasPermi="['SuppliesTemplate:SuppliesTemplate']"
                    >详情
                    </el-button>
                    <el-button
                        size="mini"
                        type="text"
                        icon="el-icon-edit"
                        @click="handleCopy(scope.row)"
                        v-hasPermi="['SuppliesTemplate:SuppliesTemplate:edit']"
                    >复制
                    </el-button>
                    <el-button
                        size="mini"
                        type="text"
                        icon="el-icon-edit"
                        @click="handleUpdate(scope.row)"
                        v-hasPermi="['SuppliesTemplate:SuppliesTemplate:edit']"
                        :style="{display : scope.row.status===1?'':'none'}"
                    >修改
                    </el-button>
                    <el-button
                        size="mini"
                        type="text"
                        icon="el-icon-delete"
                        @click="handleDelete(scope.row)"
                        v-hasPermi="['SuppliesTemplate:SuppliesTemplate:remove']"
                    >删除
                    </el-button>
171 172 173 174 175 176 177 178
                    <el-button
                        size="mini"
                        type="text"
                        icon="el-icon-detailUpdate"
                        @click="detailUpdate(scope.row)"
                        v-hasPermi="['SuppliesTemplate:SuppliesTemplate:detailUpdate']"
                    >修改购入规则
                    </el-button>
lenovo's avatar
lenovo committed
179 180 181 182 183 184 185 186 187 188
                </template>
            </el-table-column>
        </el-table>

        <pagination
            v-show="total>0"
            :total="total"
            :page.sync="queryParams.pageNum"
            :limit.sync="queryParams.pageSize"
            @pagination="getList"
lenovo's avatar
lenovo committed
189
        />
lenovo's avatar
lenovo committed
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

        <!-- 添加或修改Excel模板对话框 -->
        <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
            <el-form ref="form" :model="form" :rules="rules" label-width="80px">
<!--                <el-form-item label="状态" prop="status">-->
<!--                    <el-select v-model="form.status" placeholder="请选择状态">-->
<!--                        <el-option label="启用" :value="0"></el-option>-->
<!--                        <el-option label="禁用" :value="1"></el-option>-->
<!--                    </el-select>-->
<!--                </el-form-item>-->

                <el-upload
                    ref="uploadRef"
                    class="upload-demo"
                    drag
                    action=""
                    :before-upload="beforeUpload"
                    :on-change="handleChange"
                    :file-list="fileListName"
                >
                    <i class="el-icon-upload"></i>
                    <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
                    <div class="el-upload__tip" slot="tip">只能上传xlsx文件</div>
                </el-upload>

                <el-progress v-if="showProgress" :percentage="uploadProgress"></el-progress>

            </el-form>

            <div slot="footer" class="dialog-footer">
                <el-button type="primary" @click="submitForm">确 定</el-button>
                <el-button @click="cancel">取 消</el-button>
            </div>
        </el-dialog>

225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
        <!-- 添加或修改导入规则对话框 -->
        <el-dialog :title="title" :visible.sync="optionRole" width="500px" append-to-body>
            <el-form ref="forms" :model="forms" :rules="rules" label-width="80px">
                <el-form-item label="所属模板" prop="tempId">
                    <el-select v-model="selectedOption" filterable placeholder="请选择关联项" style="width:380px"  @change="handleOptionChange(selectedOption)" >
                        <el-option
                            v-for="option in options1"
                            :key="option.roleName"
                            :label="option.roleName"
                            :value="option.id"
                        ></el-option>
                    </el-select>
                </el-form-item>
                <el-form-item label="规则名称" prop="roleName">
                    <el-input v-model="forms.roleName" placeholder="请输入规则名称"  maxlength="36"/>
                </el-form-item>
            </el-form>
            <div slot="footer" class="dialog-footer">
                <el-button type="primary" @click="submitForm">确 定</el-button>
                <el-button @click="cancel">取 消</el-button>
            </div>
        </el-dialog>
lenovo's avatar
lenovo committed
247 248 249


        <div id="luckysheet" :style="{ position: positionValue, top: '0', left: '0', right: '0', bottom: '0' }"></div>
250 251 252 253
        <!-- 遮罩层组件 -->
        <div v-if="uploading" class="overlay">
            <div class="loader"></div>
        </div>
lenovo's avatar
lenovo committed
254
    </div>
255

lvzhuangzhuang's avatar
lvzhuangzhuang committed
256 257
</template>

258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
<style>
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 16px solid #f3f3f3; /* 转圈圈的颜色 */
    border-top: 16px solid #3498db; /* 转圈圈的主题颜色 */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

</style>

288 289
<style>
#luckysheet_info_detail_title {
lenovo's avatar
lenovo committed
290
    display: none;
291
}
lenovo's avatar
lenovo committed
292 293 294

#luckysheet_info_detail_update {
    display: none;
295
}
lenovo's avatar
lenovo committed
296 297 298

#luckysheet_info_detail_save {
    display: none;
299 300 301
}

.luckysheet-share-logo {
lenovo's avatar
lenovo committed
302
    display: none;
303 304 305
}
</style>

306

lvzhuangzhuang's avatar
lvzhuangzhuang committed
307
<script>
lenovo's avatar
lenovo committed
308
import {
lenovo's avatar
lenovo committed
309
    listSuppliesTemplate,
310 311 312
    listSuppliesrole,
    getSuppliesrole,
    updateSuppliesrole,
lenovo's avatar
lenovo committed
313 314 315 316 317 318
    getSuppliesTemplate,
    delSuppliesTemplate,
    addSuppliesTemplate,
    updateSuppliesTemplate,
    toggleEnable, toggleDisable,
    listSuppliesTemplateId, findName, releaseTemplateStatus, offShelfTemplateStatus, CopyTemplate
lenovo's avatar
lenovo committed
319 320 321 322
} from "@/api/ruoyi-myLuckyexcel/myluckyexcel";
import $ from 'jquery';
import XLSX from 'xlsx';
import LuckyExcel from 'luckyexcel';
323
import { Loading } from 'element-ui';
324

lenovo's avatar
lenovo committed
325
export default {
lenovo's avatar
lenovo committed
326 327 328
    name: "SuppliesTemplate",
    data() {
        return {
329
            selectedOption:'',
lenovo's avatar
lenovo committed
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
            positionValue: 'static',
            fileList: [{
                name: 'food.jpeg',
                url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
            }, {
                name: 'food2.jpeg',
                url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
            }],

            // 遮罩层
            loading: true,
            // 选中数组
            ids: [],
            name: [],
            // 非单个禁用
            single: true,
            // 非多个禁用
            multiple: true,
            // 显示搜索条件
            showSearch: true,
            // 总条数
            total: 0,
            // 状态数据字典
            statusOptions: [],
            // Excel模板表格数据
            SuppliesTemplateList: [],
            //模板详情
            TemplateId: [],
            fileListName: [],
            // 弹出层标题
            title: "",
            // 是否显示弹出层
            open: false,
            open1: false,
            showProgress: false,
            uploadProgress: 0,
366 367 368 369
            optionRole:false,

            options1:[],

lenovo's avatar
lenovo committed
370 371 372 373 374 375 376 377 378 379
            // 查询参数
            queryParams: {
                pageNum: 1,
                pageSize: 10,
                detId: null,
                templateName: null,
                templateContent: null,
                status: null,
            },
            form: {},
380
            forms: {},
lenovo's avatar
lenovo committed
381 382
            rules: {},
        }
383
    },
lenovo's avatar
lenovo committed
384
    created() {
385

lenovo's avatar
lenovo committed
386 387
        this.getList();
        this.positionValue = "static";
388 389

    },
lenovo's avatar
lenovo committed
390 391
    mounted() {
        window.handleReturnButtonClick = this.handleReturnButtonClick;
lenovo's avatar
lenovo committed
392 393
    },

lenovo's avatar
lenovo committed
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
    methods: {
        /**启用 */
        toggleEnable(SuppliesTemplate) {
            console.log('你点击了【' + SuppliesTemplate.s + '】的开关控件,当前开关值:' + SuppliesTemplate.status);
            let enableText = ['已发布', '未发布'];
            if (SuppliesTemplate.status === 0) {
                toggleEnable(SuppliesTemplate.id).then((response) => {
                    if (response.code === 200) {
                        let message = '操作成功,已经将【' + SuppliesTemplate.templateName + '】的状态改为【' + enableText[SuppliesTemplate.status] + '】 !';
                        this.$message({
                            message: message,
                            type: 'success'
                        });
                    } else {
                        this.$message.error(response.message);
                    }
lenovo's avatar
lenovo committed
410
                });
lenovo's avatar
lenovo committed
411 412 413 414 415 416 417 418 419 420 421 422 423
            } else {
                toggleDisable(SuppliesTemplate.id).then((response) => {
                    if (response.msg === "200") {
                        let message = '操作成功,已经将【' + SuppliesTemplate.templateName + '】的状态改为【' + enableText[SuppliesTemplate.status] + '】 !';
                        this.$message({
                            message: message,
                            type: 'error'
                        });
                    } else {
                        this.getList();
                        this.$message.error(response.msg);
                    }

lenovo's avatar
lenovo committed
424 425
                });
            }
lenovo's avatar
lenovo committed
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
        },

        /**显示序号*/
        indexMethod(index) {
            return index + 1;
        },

        /**清空上传文件列表*/
        handleChange(file) {
            // 清空 fileList 中的旧文件
            this.fileListName = [];
            // 添加文件到 fileList 中
            this.fileListName.push(file);
        },

        /**上传事件 */
442
        async beforeUpload(file) {
lenovo's avatar
lenovo committed
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
            //存在重复
            findName(file.name).then(result => {
                console.log(result.data)
                if (result.data === "存在重复") {

                    this.fileListName = [];
                    this.$message.error('上传文件名重复,请修改后上传!')

                }
            })

            const isJpgOrPng = file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';

            if (!isJpgOrPng) {
                this.$message.error('只能上传xlsx文件');
            }
459 460
            this.uploading = true;
            await LuckyExcel.transformExcelToLucky(file, (exportJson, lucksheetfile) => {
lenovo's avatar
lenovo committed
461 462 463
                this.form.templateName = file.name;
                this.form.templateContent = JSON.stringify(exportJson.sheets);
            });
464
            this.uploading = false;
lenovo's avatar
lenovo committed
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
            return isJpgOrPng;
        },

        // handleFileChange(event){
        //   var file = event.target.files[0];
        //   var fileName = file.name;
        //   fileName = fileName + "";
        //   LuckyExcel.transformExcelToLucky(file ,(exportJson,lucksheetfile)=>{
        //     this.form.templateName = fileName;
        //     this.form.templateContent = JSON.stringify(exportJson.sheets);
        //   });
        // },

        /** 查询Excel模板列表 */
        getList() {
            this.indexMethod(0);
            this.loading = true;
            listSuppliesTemplate(this.queryParams).then(response => {
                this.SuppliesTemplateList = response.rows;
                this.total = response.total;
                this.loading = false;
            });
        },
        // 取消按钮
        cancel() {
            this.open = false;
491
            this.optionRole = false;
lenovo's avatar
lenovo committed
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
            this.reset();
        },
        // 表单重置
        reset() {
            this.form = {
                id: null,
                detId: null,
                name: null,
                templateContent: null,
                status: 0,
                createBy: null,
                createTime: null,
                updateBy: null,
                updateTime: null
            };
            this.resetForm("form");
        },
        /** 搜索按钮操作 */
        handleQuery() {
            this.queryParams.pageNum = 1;
            this.getList();
        },
        /** 重置按钮操作 */
        resetQuery() {
            this.resetForm("queryForm");
            this.handleQuery();
        },
        // 多选框选中数据
        handleSelectionChange(selection) {
            this.ids = selection.map(item => item.id)
            this.name = selection.map(item => item.templateName)
            this.single = selection.length !== 1
            this.multiple = !selection.length
        },
        /** 新增按钮操作 */
        handleAdd() {
            this.fileListName = [];
            this.reset();
            this.open = true;
            this.title = "添加Excel模板";
        },
        /** 修改按钮操作 */
        handleUpdate(row) {
535 536 537 538 539 540 541 542 543 544 545 546 547
            if (row.status===1) {
                this.fileListName = [];
                this.reset();
                const id = row.id || this.ids
                getSuppliesTemplate(id).then(response => {
                    console.log(response.rows[0])
                    this.form = response.rows[0];
                    this.open = true;
                    this.title = "修改Excel模板";
                });
            }else {
                this.msgError("文件文件已发布无法修改!!!")
            }
lenovo's avatar
lenovo committed
548
        },
549 550 551 552 553 554

        detailUpdate(row) {
            this.title="修改导入规则";
            this.selectedOption='';
            this.forms='';
            this.instea='';
lenovo's avatar
lenovo committed
555
            const id = row.id || this.ids
556 557
            listSuppliesrole(id).then(response =>{
                this.options1 = response.rows;
lenovo's avatar
lenovo committed
558
            });
559 560 561 562 563 564 565 566 567 568
            this.optionRole = true;
        },

        handleOptionChange(selectedOption) {

            getSuppliesrole(selectedOption).then(response => {
                this.forms = response.data;
                this.optionRole = true;
            });

lenovo's avatar
lenovo committed
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
        },
        /** 提交按钮 */
        submitForm() {
            if (!this.form.templateName) {
                this.msgError("上传的文件不能为空!")
            } else {
                this.fileListName = [];
                if (!this.form.templateName) {
                    this.msgError("上传文件为空!!!")
                } else {
                    this.$refs["form"].validate(valid => {
                        if (valid) {
                            if (this.form.id != null) {
                                updateSuppliesTemplate(this.form).then(response => {
                                    this.msgSuccess("修改成功");
                                    this.open = false;
                                    this.getList();
                                });
                            } else {
                                this.form.status = 1;
                                addSuppliesTemplate(this.form).then(response => {
                                    this.msgSuccess("新增成功");
                                    this.open = false;
                                    this.getList();
                                });
                            }
                        }
                    });
                }
            }
        },
lenovo's avatar
lenovo committed
600 601


lenovo's avatar
lenovo committed
602 603
        /** 详情按钮操作 */
        handleSave(row) {
lenovo's avatar
lenovo committed
604

lenovo's avatar
lenovo committed
605
            listSuppliesTemplateId(row.id).then(response => {
lenovo's avatar
lenovo committed
606

lenovo's avatar
lenovo committed
607
                this.TemplateId = response.rows;
lenovo's avatar
lenovo committed
608

lenovo's avatar
lenovo committed
609
                this.luckyLook();
lenovo's avatar
lenovo committed
610

lenovo's avatar
lenovo committed
611
            })
lenovo's avatar
lenovo committed
612

lenovo's avatar
lenovo committed
613 614 615
        },
        /**展示详情luckysheet */
        luckyLook() {
lenovo's avatar
lenovo committed
616

lenovo's avatar
lenovo committed
617 618 619 620 621 622 623 624 625 626 627 628 629
            this.positionValue = 'absolute';
            luckysheet.destroy();
            luckysheet.create({
                container: "luckysheet", // Luckysheet 的容器元素 ID
                title: this.TemplateId[0].templateName, // Excel 文件名
                data: JSON.parse(this.TemplateId[0].templateContent), // Excel 数据
                showtoolbar: false, //是否第二列显示工具栏
                showinfobar: true, //是否显示顶部名称栏
                showsheetbar: false, //是否显示底部表格名称区域
                pointEdit: false, //是否是编辑器插入表格模式
                pointEditUpdate: null, //编辑器表格更新函数
                allowEdit: false,//作用:是否允许前台编辑
                functionButton: '<button id="exportButton" class="btn btn-primary" style=" padding:3px 6px; font-size: 16px;width: 100px;height: 27px; margin-right: 85px;" onclick="handleReturnButtonClick()">返回</button>',
lenovo's avatar
lenovo committed
630

lenovo's avatar
lenovo committed
631
            });
lenovo's avatar
lenovo committed
632

lenovo's avatar
lenovo committed
633 634 635 636 637 638 639 640 641 642 643 644 645
        },
        /**详情返回按钮 */
        handleReturnButtonClick() {

            this.positionValue = 'static';
            luckysheet.destroy();

        },

        /** 删除按钮操作*/
        handleDelete(row) {
            const ids = row.id || this.ids;
            const name = row.templateName || this.name;
646
            this.$confirm('是否确认删除模板名称为"' + name + '"的数据项?', "警告", {
lenovo's avatar
lenovo committed
647 648 649 650 651 652
                confirmButtonText: "确定",
                cancelButtonText: "取消",
                type: "warning"
            }).then(function () {
                return delSuppliesTemplate(ids);
            }).then((result) => {
653
                if (result.msg === "312") {
lenovo's avatar
lenovo committed
654
                    this.getList();
655 656 657 658 659
                    this.$confirm('模板名称为"' + result.data + '"的数据项下存在关联规则,请先删除关联规则在删除模板', "警告", {
                        confirmButtonText: "确定",
                        cancelButtonText: "取消",
                        type: "warning"
                    }).then(() =>{this.getList();})
lenovo's avatar
lenovo committed
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
                } else {
                    this.getList();
                    this.msgSuccess("删除成功");
                }
            }).catch(() => {
            })

        },
        releaseStatus(row) {

            const ids = row.id || this.ids;
            const name = row.templateName || this.name;
            this.$confirm('是否确认发布模板名称为"' + name + '"的数据项?(发布之后无法修改!)', "警告", {
                confirmButtonText: "确定",
                cancelButtonText: "取消",
                type: "warning"
            }).then(function () {
                return releaseTemplateStatus(ids);
            }).then((result) => {
                if (result.data === "发布失败") {
                    this.getList();
                    this.msgError("模板已发布");
                } else {
                    this.getList();
                    this.msgSuccess("发布成功");
                }
            }).catch(() => {
            })

        },

        offShelfStatus(row) {

            const ids = row.id || this.ids;
            const name = row.templateName || this.name;
            this.$confirm('是否确认下架模板名称为"' + name + '"的数据项?(下架之后转换规则中将无法使用该模板!)', "警告", {
                confirmButtonText: "确定",
                cancelButtonText: "取消",
                type: "warning"
            }).then(function () {
                return offShelfTemplateStatus(ids);
            }).then((result) => {
                if (result.data === "下架失败") {
                    this.getList();
                    this.msgError("下架失败");
                } else {
                    this.getList();
                    this.msgSuccess("下架成功");
                }
            }).catch(() => {
            })

        },

        handleCopy(row){

            this.$confirm('是否确认复制名称为"' + name + '"的模板?(复制后名称会改变)', "警告", {
                confirmButtonText: "确定",
                cancelButtonText: "取消",
                type: "warning"
            }).then(function () {
                return CopyTemplate(row.id);
            }).then((result) => {
lvzhuangzhuang's avatar
1  
lvzhuangzhuang committed
723

lenovo's avatar
lenovo committed
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
                if (result.data === "复制失败") {
                    this.getList();
                    this.msgError("复制失败");
                } else {
                    this.getList();
                    this.msgSuccess("复制成功,新模板名称为:“"+result.data+"");
                }
            }).catch(() => {
            })

        },

        // /** 导出按钮操作 */
        // handleExport() {
        //   const queryParams = this.queryParams;
        //   this.$confirm('是否确认导出所有导入规则数据项?', "警告", {
        //     confirmButtonText: "确定",
        //     cancelButtonText: "取消",
        //     type: "warning"
        //   }).then(function() {
        //     return exportMyluckyexcel(queryParams);
        //   }).then(response => {
        //     this.download(response.msg);
        //   })
        // }
    }
lenovo's avatar
lenovo committed
750 751
}
</script>