diff --git a/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceAdd.js b/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceAdd.js
deleted file mode 100644
index 2dada0fa4418a355b78b819ee5a54f2c5726a77b..0000000000000000000000000000000000000000
--- a/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceAdd.js
+++ /dev/null
@@ -1,170 +0,0 @@
-
-// 车辆保险
-layui.config({
- base: basePath,
- version: skyeyeVersion
-}).extend({
- window: 'js/winui.window'
-}).define(['window', 'jquery', 'winui', 'fileUpload', 'tagEditor', 'laydate'], function (exports) {
- winui.renderColor();
- layui.use(['form'], function (form) {
- var index = parent.layer.getFrameIndex(window.name);
- var $ = layui.$,
- laydate = layui.laydate;
- var insuranceaddtableTemplate = $('#insuranceaddtableTemplate').html();
-
- // 获取当前登录员工信息
- systemCommonUtil.getSysCurrentLoginUserMation(function (data) {
- var userName = data.bean.userName;
- $("#insuranceTitle").html("车辆保险登记单-" + userName + "-" + (new Date()).getTime()) + Math.floor(Math.random()*100);
- });
-
- // 车辆险种
- sysDictDataUtil.queryDictDataListByDictTypeCode(sysDictData["admVehicleCoverage"]["key"], function (data) {
- var row = data.rows;
- for(var i = 0;i < data.rows.length; i++){
- var params = {
- id: row[i].id,
- name: row[i].name
- };
- $("#addTable").append(getDataUseHandlebars(insuranceaddtableTemplate, params));
- }
- form.render('checkbox');
- });
-
- // 查询所有的车牌号用于下拉选择框
- adminAssistantUtil.queryAllVehicleList(function (data) {
- $("#licensePlate").html(getDataUseHandlebars(getFileContent('tpl/template/select-option-must.tpl'), data));
- form.render('select');
- });
-
- // 投保有效期时间
- laydate.render({elem: '#validityTime', type: 'date', range: true, trigger: 'click'});
-
- skyeyeEnclosure.init('enclosureUpload');
- matchingLanguage();
- form.render();
- form.on('checkbox(checkboxProperty)', function(data) {
- var rowId = $(this).attr("rowId");
- var fu = $("#addTable").find("input[rowId=" + rowId + "]").parent();
- if (data.elem.checked == true){
- fu.next().find("input").removeAttr('disabled');
- fu.next().next().find("input").removeAttr('disabled');
- fu.next().next().next().find("input").removeAttr('disabled');
- fu.next().find("input").removeClass('layui-disabled');
- fu.next().next().find("input").removeClass('layui-disabled');
- fu.next().next().next().find("input").removeClass('layui-disabled');
- } else {
- fu.next().find("input").attr('disabled','disabled');
- fu.next().next().find("input").attr('disabled','disabled');
- fu.next().next().next().find("input").attr('disabled','disabled');
- fu.next().find("input").addClass('layui-disabled');
- fu.next().next().find("input").addClass('layui-disabled');
- fu.next().next().next().find("input").addClass('layui-disabled');
- fu.next().find("input").val("");
- fu.next().next().find("input").val("");
- fu.next().next().next().find("input").val("");
- bftotal();
- }
- });
-
- $("body").on("blur", "#addTable input",function(){
- bftotal();
- })
-
- //计算总保费
- function bftotal(){
- var bftotal = 0;
- $.each($('input:checkbox:checked'),function(){
- var rowId = $(this).attr("rowId");//选中的复选框的值
- var fu = $("#addTable").find("input[rowId=" + rowId + "]").parent();
- var bf = "";
- bf = fu.next().find("input").val();//对应的保费
- if (!isNull(bf)){
- bftotal = parseFloat(bftotal) + parseFloat(bf);
- bftotal = bftotal.toFixed(2);
- }
- });
- $("#insuranceAllPrice").html(bftotal);
- }
-
- form.on('submit(formAddBean)', function (data) {
- if (winui.verifyForm(data.elem)) {
- var params = {
- insuranceTitle: $("#insuranceTitle").html(),
- insuranceCompany: $("#insuranceCompany").val(),
- insuredTelephone: $("#insuredTelephone").val(),
- validityStartTime: $("#validityTime").val().split(" - ")[0],
- validityEndTime: $("#validityTime").val().split(" - ")[1],
- roomAddDesc: $("#roomAddDesc").val(),
- insuranceAllPrice: $("#insuranceAllPrice").html(),
- enclosureInfo: skyeyeEnclosure.getEnclosureIdsByBoxId('enclosureUpload')
- };
- var coverageIds = "";
- var istrue = true;
- $.each($('input:checkbox:checked'),function(){
- if(istrue){
- var rowId = $(this).attr("rowId");//选中的复选框的值
- var fu = $("#addTable").find("input[rowId="+rowId+"]").parent();
- var bf = fu.next().find("input").val();//对应的保费
- var be = fu.next().next().find("input").val();//对应的保额
- if(isNull(bf)){
- winui.window.msg('请输入选中的险种对应的保费', {icon: 2, time: 2000});
- istrue = false;
- } else {
- var str = /^0{1}([.]\d{1,2})?$|^[1-9]\d*([.]{1}[0-9]{1,2})?$/;
- var flag = str.test(bf);
- if(!flag){
- winui.window.msg('保费小数点后最多两位!', {icon: 2, time: 2000});
- istrue = false;
- } else {
- if(isNull(be)){
- winui.window.msg('请输入选中的险种对应的保额', {icon: 2, time: 2000});
- istrue = false;
- } else {
- var flag = str.test(be);
- if(!flag){
- winui.window.msg('保额小数点后最多两位!', {icon: 2, time: 2000});
- istrue = false;
- }
- }
- }
- }
- var desc = fu.next().next().next().find("input").val();//对应的备注
- str = rowId + "," + bf + "," + be + "," + desc;
- coverageIds = coverageIds + str + ";";
- }
- });
- if(istrue){
- params.coverageIds = coverageIds;
- if(isNull(params.coverageIds)){
- winui.window.msg('请选择险种', {icon: 2, time: 2000});
- return false;
- }
- params.vehicleId = data.field.licensePlate;
- if(isNull(params.vehicleId)){
- winui.window.msg('请选择车牌号', {icon: 2, time: 2000});
- return false;
- }
- if(params.insuredTelephone != ""){
- var mobile = /^0?1[3|4|5|8][0-9]\d{8}$/,phone = /^0[\d]{2,3}-[\d]{7,8}$/;
- var flag = mobile.test(params.insuredTelephone) || phone.test(params.insuredTelephone);
- if(!flag){
- winui.window.msg('请输入正确的投保电话', {icon: 2, time: 2000});
- return false;
- }
- }
- AjaxPostUtil.request({url: flowableBasePath + "insurance002", params: params, type: 'json', callback: function (json) {
- parent.layer.close(index);
- parent.refreshCode = '0';
- }});
- }
- }
- return false;
- });
-
- $("body").on("click", "#cancle", function() {
- parent.layer.close(index);
- });
- });
-});
\ No newline at end of file
diff --git a/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceDetails.js b/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceDetails.js
deleted file mode 100644
index b5edfaa9f125d735d50e7c6e88fb2b759284e9b0..0000000000000000000000000000000000000000
--- a/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceDetails.js
+++ /dev/null
@@ -1,76 +0,0 @@
-
-layui.config({
- base: basePath,
- version: skyeyeVersion
-}).extend({
- window: 'js/winui.window'
-}).define(['window', 'jquery', 'winui'], function (exports) {
- winui.renderColor();
- layui.use(['form'], function (form) {
- var index = parent.layer.getFrameIndex(window.name);
- var $ = layui.$;
- var insuranceaddtableTemplate = $('#insuranceaddtableTemplate').html();
-
- showGrid({
- id: "showForm",
- url: flowableBasePath + "insurance006",
- params: {rowId:parent.rowId},
- pagination: false,
- template: getFileContent('tpl/vehicleManageInsurance/vehicleManageInsuranceDetailsTemplate.tpl'),
- ajaxSendLoadBefore: function(hdb) {
- },
- ajaxSendAfter:function (json) {
- var coveragestr = "";
- var arr = json.bean.coverageId.split(",");
- for(var i = 0; i < arr.length; i++){
- var str = arr[i].split("-");
- for(var j = 0; j < str.length; j++){
- coveragestr = coveragestr + str[0] + ",";
- }
- }
-
- // 车辆险种
- sysDictDataUtil.showDictDataListByDictTypeCode(sysDictData["admVehicleCoverage"]["key"], 'checkbox', "coverageChoose", json.bean.coverageId, form);
-
- // 附件回显
- skyeyeEnclosure.showDetails({"enclosureUploadBtn": json.bean.enclosureInfo});
-
- matchingLanguage();
- // 车辆险种
- sysDictDataUtil.queryDictDataListByDictTypeCode(sysDictData["admVehicleCoverage"]["key"], function (data) {
- var row = data.rows;
- var coveragearr = coveragestr.split(",");
- for(var i = 0;i < data.total; i++){
- var params = {
- id: row[i].id,
- name: row[i].name
- };
- var f = false;
- for(var m = 0;m < coveragearr.length; m++){
- if(row[i].id == coveragearr[m]){
- f = true;
- }
- }
- if(f){
- $("#addTable").append(getDataUseHandlebars(insuranceaddtableTemplate, params));
- }
- form.render('checkbox');
- }
- var arr = json.bean.coverageId.split(",");
- for(var i = 0; i < arr.length; i++){
- var str = arr[i].split("-");
- for(var j = 0; j < str.length; j++){
- var fu = $("#addTable").find("span[rowId="+str[0]+"]").parent();
- fu.next().find("span").html(str[1]);//对应的保费
- fu.next().next().find("span").html(str[2]);//对应的保额
- if(str.length > 3){
- fu.next().next().next().find("span").html(str[3]);//对应的备注
- }
- }
- }
- });
- }
- });
-
- });
-});
\ No newline at end of file
diff --git a/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceEdit.js b/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceEdit.js
deleted file mode 100644
index f335d5d8bdc37bc4055ff6609db31724cd94758c..0000000000000000000000000000000000000000
--- a/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceEdit.js
+++ /dev/null
@@ -1,187 +0,0 @@
-
-// 车辆保险
-layui.config({
- base: basePath,
- version: skyeyeVersion
-}).extend({
- window: 'js/winui.window'
-}).define(['window', 'jquery', 'winui', 'fileUpload', 'tagEditor', 'laydate'], function (exports) {
- winui.renderColor();
- layui.use(['form'], function (form) {
- var index = parent.layer.getFrameIndex(window.name);
- var $ = layui.$,
- laydate = layui.laydate;
- var insuranceaddtableTemplate = $('#insuranceaddtableTemplate').html();
-
- form.on('checkbox(checkboxProperty)', function(data) {
- var rowId = $(this).attr("rowId");
- var fu = $("#addTable").find("input[rowId=" + rowId + "]").parent();
- if (data.elem.checked == true){
- fu.next().find("input").removeAttr('disabled');
- fu.next().next().find("input").removeAttr('disabled');
- fu.next().next().next().find("input").removeAttr('disabled');
- fu.next().find("input").removeClass('layui-disabled');
- fu.next().next().find("input").removeClass('layui-disabled');
- fu.next().next().next().find("input").removeClass('layui-disabled');
- } else {
- fu.next().find("input").attr('disabled','disabled');
- fu.next().next().find("input").attr('disabled','disabled');
- fu.next().next().next().find("input").attr('disabled','disabled');
- fu.next().find("input").addClass('layui-disabled');
- fu.next().next().find("input").addClass('layui-disabled');
- fu.next().next().next().find("input").addClass('layui-disabled');
- fu.next().find("input").val("");
- fu.next().next().find("input").val("");
- fu.next().next().next().find("input").val("");
- bftotal();
- }
- });
-
- $("body").on("blur", "#addTable input",function(){
- bftotal();
- })
-
- //计算总的保费
- function bftotal(){
- var bftotal = 0;
- $.each($('input:checkbox:checked'),function(){
- var rowId = $(this).attr("rowId");//选中的复选框的值
- var fu = $("#addTable").find("input[rowId=" + rowId + "]").parent();
- var bf = "";
- bf = fu.next().find("input").val();//对应的保费
- if (!isNull(bf)){
- bftotal = parseFloat(bftotal) + parseFloat(bf);
- bftotal = bftotal.toFixed(2);
- }
- });
- $("#insuranceAllPrice").html(bftotal);
- }
-
- showGrid({
- id: "showForm",
- url: flowableBasePath + "insurance004",
- params: {rowId:parent.rowId},
- pagination: false,
- template: getFileContent('tpl/vehicleManageInsurance/vehicleManageInsuranceEditTemplate.tpl'),
- ajaxSendLoadBefore: function(hdb) {
- },
- ajaxSendAfter:function (json) {
- // 投保有效期时间
- laydate.render({elem: '#validityTime', type: 'date', range: true, trigger: 'click'});
-
- $("#insuranceAllPrice").html(json.bean.insuranceAllPrice);
-
- // 车辆险种
- sysDictDataUtil.queryDictDataListByDictTypeCode(sysDictData["admVehicleCoverage"]["key"], function (data) {
- var row = data.rows;
- for(var i = 0;i < data.rows.length; i++){
- var params = {
- id: row[i].id,
- name: row[i].name
- };
- $("#addTable").append(getDataUseHandlebars(insuranceaddtableTemplate, params));
- form.render('checkbox');
- }
- var arr = json.bean.coverageId.split(",");
- for(var i = 0; i < arr.length; i++){
- var str = arr[i].split("-");
- for(var j = 0; j < str.length; j++){
- $('input:checkbox[rowId="' + str[0] + '"]').attr("checked", true);
- var fu = $("#addTable").find("input[rowId=" + str[0] + "]").parent();
- fu.next().find("input").val(str[1]);//对应的保费
- fu.next().next().find("input").val(str[2]);//对应的保额
- if(str.length > 3){
- fu.next().next().next().find("input").val(str[3]);//对应的备注
- }
- fu.next().find("input").removeAttr('disabled');
- fu.next().next().find("input").removeAttr('disabled');
- fu.next().next().next().find("input").removeAttr('disabled');
- fu.next().find("input").removeClass('layui-disabled');
- fu.next().next().find("input").removeClass('layui-disabled');
- fu.next().next().next().find("input").removeClass('layui-disabled');
- }
- }
- // 附件回显
- skyeyeEnclosure.initTypeISData({'enclosureUpload': json.bean.enclosureInfo});
-
- matchingLanguage();
- form.render();
- form.on('submit(formEditBean)', function (data) {
- if (winui.verifyForm(data.elem)) {
- var params = {
- rowId: parent.rowId,
- insuranceCompany: $("#insuranceCompany").val(),
- insuredTelephone: $("#insuredTelephone").val(),
- validityStartTime: $("#validityTime").val().split(" - ")[0],
- validityEndTime: $("#validityTime").val().split(" - ")[1],
- insuranceAllPrice: $("#insuranceAllPrice").val(),
- roomAddDesc: $("#roomAddDesc").val(),
- insuranceAllPrice: $("#insuranceAllPrice").html(),
- enclosureInfo: skyeyeEnclosure.getEnclosureIdsByBoxId('enclosureUpload')
- };
- var coverageIds = "";
- var istrue = true;
- $.each($('input:checkbox:checked'),function(){
- if(istrue){
- var rowId = $(this).attr("rowId");//选中的复选框的值
- var fu = $("#addTable").find("input[rowId=" + rowId + "]").parent();
- var bf = fu.next().find("input").val();//对应的保费
- var be = fu.next().next().find("input").val();//对应的保额
- if(isNull(bf)){
- winui.window.msg('请输入选中的险种对应的保费', {icon: 2, time: 2000});
- istrue = false;
- } else {
- var str = /^0{1}([.]\d{1,2})?$|^[1-9]\d*([.]{1}[0-9]{1,2})?$/;
- var flag = str.test(bf);
- if(!flag){
- winui.window.msg('保费小数点后最多两位!', {icon: 2, time: 2000});
- istrue = false;
- } else {
- if(isNull(be)){
- winui.window.msg('请输入选中的险种对应的保额', {icon: 2, time: 2000});
- istrue = false;
- } else {
- var flag = str.test(be);
- if(!flag){
- winui.window.msg('保额小数点后最多两位!', {icon: 2, time: 2000});
- istrue = false;
- }
- }
- }
- }
- var desc = fu.next().next().next().find("input").val();//对应的备注
- str = rowId + "," + bf + "," + be + "," + desc;
- coverageIds = coverageIds + str + ";";
- }
- });
- if(istrue){
- params.coverageIds = coverageIds;
- if(isNull(params.coverageIds)){
- winui.window.msg('请选择险种', {icon: 2, time: 2000});
- return false;
- }
- if(params.insuredTelephone != ""){
- var mobile = /^0?1[3|4|5|8][0-9]\d{8}$/,phone = /^0[\d]{2,3}-[\d]{7,8}$/;
- var flag = mobile.test(params.insuredTelephone) || phone.test(params.insuredTelephone);
- if(!flag){
- winui.window.msg('请输入正确的投保电话', {icon: 2, time: 2000});
- return false;
- }
- }
- AjaxPostUtil.request({url: flowableBasePath + "insurance005", params: params, type: 'json', callback: function (json) {
- parent.layer.close(index);
- parent.refreshCode = '0';
- }});
- }
- }
- return false;
- });
- });
- }
- });
-
- $("body").on("click", "#cancle", function() {
- parent.layer.close(index);
- });
- });
-});
\ No newline at end of file
diff --git a/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceList.js b/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceList.js
deleted file mode 100644
index 4665dbcb0180dd6c9f00713a4acddfdb179ff1a1..0000000000000000000000000000000000000000
--- a/admin-assistant/src/main/resources/template/js/vehicleManageInsurance/vehicleManageInsuranceList.js
+++ /dev/null
@@ -1,139 +0,0 @@
-var rowId = "";
-
-layui.config({
- base: basePath,
- version: skyeyeVersion
-}).extend({
- window: 'js/winui.window'
-}).define(['window', 'table', 'jquery', 'winui', 'form', 'laydate'], function (exports) {
- winui.renderColor();
- var $ = layui.$,
- form = layui.form,
- table = layui.table,
- laydate = layui.laydate;
-
- // 新增车辆保险
- authBtn('1597479769139');
-
- // 查询所有的车牌号用于下拉选择框
- adminAssistantUtil.queryAllVehicleList(function (data) {
- $("#insurancePlate").html(getDataUseHandlebars(getFileContent('tpl/template/select-option.tpl'), data));
- form.render('select');
- });
-
- showInsuranceList();
- // 保险信息管理
- function showInsuranceList(){
- table.render({
- id: 'insuranceTable',
- elem: '#insuranceTable',
- method: 'post',
- url: flowableBasePath + "insurance001",
- where: getTableParams(),
- even: true,
- page: true,
- limits: getLimits(),
- limit: getLimit(),
- cols: [[
- { title: systemLanguage["com.skyeye.serialNumber"][languageType], type: 'numbers' },
- { field: 'insuranceTitle', title: '主题', align: 'left', width: 300, templet: function (d) {
- return '' + d.insuranceTitle + '';
- }},
- { field: 'licensePlate', title: '车牌号', align: 'center', width: 120},
- { field: 'validityTime', title: '保险有效期', align: 'center', width: 180 },
- { field: 'insuranceAllPrice', title: '投保总费用(元)', width: 150 },
- { field: 'insuranceCompany', title: '投保公司', width: 170 },
- { title: systemLanguage["com.skyeye.operation"][languageType], fixed: 'right', align: 'center', width: 150, toolbar: '#insurancetableBar'}
- ]],
- done: function(json) {
- matchingLanguage();
- }
- });
- }
-
- table.on('tool(insuranceTable)', function (obj) {
- var data = obj.data;
- var layEvent = obj.event;
- if (layEvent === 'insurancedetails') { //详情
- insurancedetails(data);
- } else if (layEvent === 'insurancedelet'){ //删除
- insurancedelet(data);
- } else if (layEvent === 'insuranceedit'){ //编辑
- insuranceedit(data);
- }
- });
-
- form.render();
-
- // 保险详情
- function insurancedetails(data) {
- rowId = data.id;
- _openNewWindows({
- url: "../../tpl/vehicleManageInsurance/vehicleManageInsuranceDetails.html",
- title: systemLanguage["com.skyeye.detailsPageTitle"][languageType],
- pageId: "vehicleManageInsuranceDetails",
- area: ['90vw', '90vh'],
- callBack: function (refreshCode) {
- }});
- }
-
- // 删除保险
- function insurancedelet(data) {
- layer.confirm(systemLanguage["com.skyeye.deleteOperationMsg"][languageType], {icon: 3, title: systemLanguage["com.skyeye.deleteOperation"][languageType]}, function (index) {
- layer.close(index);
- AjaxPostUtil.request({url: flowableBasePath + "insurance003", params: {rowId: data.id}, type: 'json', callback: function (json) {
- winui.window.msg(systemLanguage["com.skyeye.deleteOperationSuccessMsg"][languageType], {icon: 1, time: 2000});
- loadInsuranceTable();
- }});
- });
- }
-
- // 登记保险
- $("body").on("click", "#addInsuranceBean", function() {
- _openNewWindows({
- url: "../../tpl/vehicleManageInsurance/vehicleManageInsuranceAdd.html",
- title: "车辆保险登记单",
- pageId: "vehicleManageInsuranceAdd",
- area: ['90vw', '90vh'],
- callBack: function (refreshCode) {
- winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1, time: 2000});
- loadInsuranceTable();
- }});
- });
-
- // 编辑保险
- function insuranceedit(data) {
- rowId = data.id;
- _openNewWindows({
- url: "../../tpl/vehicleManageInsurance/vehicleManageInsuranceEdit.html",
- title: "编辑车辆保险信息",
- pageId: "vehicleManageInsuranceEdit",
- area: ['90vw', '90vh'],
- callBack: function (refreshCode) {
- winui.window.msg(systemLanguage["com.skyeye.successfulOperation"][languageType], {icon: 1, time: 2000});
- loadInsuranceTable();
- }});
- }
-
- // 搜索表单
- $("body").on("click", "#insuranceformSearch", function() {
- table.reloadData("insuranceTable", {page: {curr: 1}, where: getTableParams()});
- });
-
- $("body").on("click", "#reloadInsuranceTable", function() {
- loadInsuranceTable();
- });
-
- function loadInsuranceTable(){
- table.reloadData("insuranceTable", {where: getTableParams()});
- }
-
- function getTableParams() {
- return {
- insuranceTitle: $("#insuranceTitle").val(),
- insurancePlate: $("#insurancePlate").val()
- };
- }
-
- exports('vehicleManageInsuranceList', {});
-});
diff --git a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceAdd.html b/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceAdd.html
deleted file mode 100644
index dd6a10407c954b86585bc19cb4ab12ae11c71055..0000000000000000000000000000000000000000
--- a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceAdd.html
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceDetails.html b/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceDetails.html
deleted file mode 100644
index 313731600efaaafde71a2932c4585ff409384da4..0000000000000000000000000000000000000000
--- a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceDetails.html
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceDetailsTemplate.tpl b/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceDetailsTemplate.tpl
deleted file mode 100644
index 0843df17c3d7e28ec2d40c9bbb83fbc9ae3a91b9..0000000000000000000000000000000000000000
--- a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceDetailsTemplate.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-{{#bean}}
-
-
-
-
-
-
- 险种 |
- 保费 |
- 保额 |
- 备注 |
-
-
-
-
-
-
-
-
-
-
-{{/bean}}
\ No newline at end of file
diff --git a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceEdit.html b/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceEdit.html
deleted file mode 100644
index 09d18c5f22d2abc5b7b9896b20dac40b0951131b..0000000000000000000000000000000000000000
--- a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceEdit.html
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceEditTemplate.tpl b/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceEditTemplate.tpl
deleted file mode 100644
index 71c539fe8c9f2eadd3d22c7f2dfcb5121c55fee2..0000000000000000000000000000000000000000
--- a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceEditTemplate.tpl
+++ /dev/null
@@ -1,67 +0,0 @@
-{{#bean}}
-
-
-
-
-
-
- 险种* |
- 保费* |
- 保额* |
- 备注 |
-
-
-
-
-
-
-
-
-
-
-
-{{/bean}}
diff --git a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceList.html b/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceList.html
deleted file mode 100644
index 316308629c2929c8295ee06e52494a70cd48ff47..0000000000000000000000000000000000000000
--- a/admin-assistant/src/main/resources/template/tpl/vehicleManageInsurance/vehicleManageInsuranceList.html
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file