修改前端功能

dev_xd
haha 2025-02-05 23:47:15 +08:00
parent dedd2dc535
commit 3540ec00ee
3 changed files with 10 additions and 5 deletions

View File

@ -165,10 +165,10 @@ getCookie();
border-radius: 6px; border-radius: 6px;
background-image: url("../assets/images/loginbg2.png"); background-image: url("../assets/images/loginbg2.png");
background-size: 100% 100%; background-size: 100% 100%;
width: 300px; width: 360px;
padding: 50px 25px 5px 25px; padding: 50px 25px 5px 25px;
position: absolute; position: absolute;
height: 440px; height: 480px;
right: 10%; right: 10%;
.el-form-item{ .el-form-item{
position: relative; position: relative;

View File

@ -204,6 +204,7 @@ const data = reactive({
currentPrjId:'', currentPrjId:'',
types:greenCarbonData.types, types:greenCarbonData.types,
delDatas:[], delDatas:[],
delDataIds:[],
importData:[], importData:[],
openImport:false, openImport:false,
}); });
@ -272,6 +273,7 @@ function resetQuery() {
function handleSelectionChange(selection) { function handleSelectionChange(selection) {
ids.value = selection.map(item => item.id); ids.value = selection.map(item => item.id);
data.delDatas=selection.map(item=> getGreenCarbon(item.carbonFactorType).text +' - '+item.carbonName); data.delDatas=selection.map(item=> getGreenCarbon(item.carbonFactorType).text +' - '+item.carbonName);
data.delDataIds=selection.map(item=> item.id);
single.value = selection.length != 1; single.value = selection.length != 1;
multiple.value = !selection.length; multiple.value = !selection.length;
} }
@ -324,8 +326,9 @@ function submitForm() {
/** 删除按钮操作 */ /** 删除按钮操作 */
function handleDelete(row) { function handleDelete(row) {
const _ids =row && row.id? getGreenCarbon(row.carbonFactorType).text +' - '+row.carbonName:data.delDatas.join(","); const names =row && row.id? getGreenCarbon(row.carbonFactorType).text +' - '+row.carbonName:data.delDatas.join(",");
proxy.$modal.confirm('是否确认删【' + _ids + '】的数据项?').then(function () { const _ids =row && row.id? row.id:data.delDataIds.join(",");
proxy.$modal.confirm('是否确认删【' + names + '】的数据项?').then(function () {
return delGreenCarbonItem(_ids); return delGreenCarbonItem(_ids);
}).then(() => { }).then(() => {
getList(); getList();

View File

@ -396,6 +396,7 @@ function doImageUpload(type) {
form.value.userName=form.value.userName||d.data.name||''; form.value.userName=form.value.userName||d.data.name||'';
form.value.certificateCode=form.value.certificateCode||d.data.cardId||''; form.value.certificateCode=form.value.certificateCode||d.data.cardId||'';
form.value.address=form.value.address||d.data.address||''; form.value.address=form.value.address||d.data.address||'';
from.value.nativePlace=form.value.native||d.data.native||'';
let nation=d.data.nation||""; let nation=d.data.nation||"";
if(nation){ if(nation){
let tmps= data.nationOpts.filter(it=>it.indexOf(nation)>=0); let tmps= data.nationOpts.filter(it=>it.indexOf(nation)>=0);
@ -416,6 +417,7 @@ function doImageUpload(type) {
}); });
} }
}else if(type==2){ }else if(type==2){
/*
url=form.value.certificatePhoto2; url=form.value.certificatePhoto2;
if(url){ if(url){
url=location.origin+url; url=location.origin+url;
@ -423,7 +425,7 @@ function doImageUpload(type) {
proxy.$http.get(`/system/tools/id/back?url=${url}`).then(d=>{ proxy.$http.get(`/system/tools/id/back?url=${url}`).then(d=>{
form.value.nativePlace=form.value.nativePlace||d.data.issuing||''; form.value.nativePlace=form.value.nativePlace||d.data.issuing||'';
}); });
} } */
} }
}, 800); }, 800);
} }