From 48ecae4d9d39ddb15a69b8c79a015f4a57757a04 Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Wed, 9 Oct 2024 16:21:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/fileprovide/filenum/filenum.html | 242 ++++++++++++++---- 1 file changed, 186 insertions(+), 56 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/filenum.html b/ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/filenum.html index ec11d6b..bc3b950 100644 --- a/ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/filenum.html +++ b/ruoyi-admin/src/main/resources/templates/system/fileprovide/filenum/filenum.html @@ -33,9 +33,9 @@

上级下发

-
+
-
+
  • @@ -67,8 +67,48 @@
+
+
    +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
@@ -80,6 +120,9 @@ var detailFlag = [[${@permission.hasPermi('system:filenum:print')}]]; var instancyExtentDatas = [[${@dict.getType('sys_file_jinjichengdu')}]]; var fileSecretDatas = [[${@dict.getType('sys_file_miji')}]]; + var carrierLevelDatas = [[${@dict.getType('sys_provide_level')}]]; + var carrierExtentDatas = [[${@dict.getType('sys_file_jinjichengdu')}]]; + var stateDatas = [[${@dict.getType('carrier_issued_status')}]]; var prefix = ctx + "system/filenum"; let datas = [] $.ajax({ @@ -90,59 +133,6 @@ datas = res.data }) , }); - $(function() { - var options = { - url: prefix + "/list", - exportUrl: prefix + "/export", - modalName: "载体下发", - pageSize:5, - columns: [ - { - field: 'carrierNumber', - title: '编号' - }, - { - field: 'areaCity', - title: '所属市州', - formatter: function(value, row, index) { - return getCity(datas, value) - } - }, - { - field: 'carrierName', - title: '载体名称' - }, - { - field: 'carrierCount', - title: '载体数量' - }, - { - field: 'carrierExtent', - title: '紧急程度', - formatter: function(value, row, index) { - return $.table.selectDictLabel(instancyExtentDatas, value); - } - }, - - { - field: 'carrierSecret', - title: '载体密级', - formatter: function(value, row, index) { - return $.table.selectDictLabel(fileSecretDatas, value); - } - }, - { - title: '操作', - align: 'center', - formatter: function(value, row, index) { - var actions = []; - actions.push('打印 '); - return actions.join(''); - } - }] - }; - $.table.init(options); - }); var app = new Vue({ el: '#app', data: { @@ -152,7 +142,132 @@ Area:'', params:{ parentId:'', - } + }, + optionsA: { + url: prefix + "/list", + exportUrl: prefix + "/export", + modalName: "自行制作", + pageSize:5, + columns: [ + { + field: 'carrierNumber', + title: '编号' + }, + { + field: 'areaCity', + title: '所属市州', + formatter: function(value, row, index) { + return getCity(datas, value) + } + }, + { + field: 'carrierName', + title: '载体名称' + }, + { + field: 'carrierCount', + title: '载体数量' + }, + { + field: 'carrierExtent', + title: '紧急程度', + formatter: function(value, row, index) { + return $.table.selectDictLabel(instancyExtentDatas, value); + } + }, + + { + field: 'carrierSecret', + title: '载体密级', + formatter: function(value, row, index) { + return $.table.selectDictLabel(fileSecretDatas, value); + } + }, + { + title: '操作', + align: 'center', + formatter: function(value, row, index) { + var actions = []; + actions.push('打印 '); + return actions.join(''); + } + }] + }, + optionsB: { + url: prefix + "/listIssued", + detailUrl: prefix + "/detail/{id}", + exportUrl: prefix + "/export", + modalName: "上级下发", + columns: [ + { + checkbox: true + }, + { + field: 'id', + title: 'id', + visible: false + }, + { + field: 'areaCity', + title: '所属市州', + formatter: function(value, row, index) { + return getCity(datas, value) + } + }, + { + field: 'carrierName', + title: '载体名称' + }, + { + field: 'carrierLevel', + title: '载体类型', + formatter: function(value, row, index) { + return $.table.selectDictLabel(carrierLevelDatas, value); + } + }, + { + field: 'carrierExtent', + title: '紧急程度', + formatter: function(value, row, index) { + return $.table.selectDictLabel(carrierExtentDatas, value); + } + }, + + { + field: 'carrierSecret', + title: '密级', + formatter: function(value, row, index) { + return $.table.selectDictLabel(fileSecretDatas, value); + } + }, + { + field: 'carrierTerm', + title: '保密期限' + }, + { + field: 'createTime', + title: '创建时间', + sortable: true + }, + { + field: 'status', + title: '状态', + formatter: function(value, row, index) { + return $.table.selectDictLabel(stateDatas, value); + } + }, + { + title: '操作', + align: 'center', + formatter: function(value, row, index) { + var actions = []; + actions.push('详细 '); + return actions.join(''); + } + }] + }, + isStateA:'0', + view:true, }, mounted(){ // 初始化地市列表 @@ -160,6 +275,8 @@ if (this.City){ this.getAreaList() } + $.table.init(this.optionsA) + this.isStateA = '3' }, methods:{ getCityList(){ @@ -182,6 +299,19 @@ this.AreaList = res.data }) , }); + }, + changeExamine(){ + if (this.isStateA === '3'){ + $.table.destroy() + $.table.init(this.optionsB) + this.isStateA = '0' + this.view = false + }else if(this.isStateA === '0'){ + $.table.destroy() + $.table.init(this.optionsA) + this.isStateA = '3' + this.view = true + } } } })