Преглед изворни кода

Task 零工公开

rongxin_dev
zhaodengke пре 8 месеци
родитељ
комит
5917cdf724
4 измењених фајлова са 5 додато и 204 уклоњено
  1. +1
    -80
      src/views/sunVillage_info/list_tourists_add.vue
  2. +1
    -31
      src/views/sunVillage_info/list_tourists_detail.vue
  3. +2
    -92
      src/views/sunVillage_info/list_tourists_edit.vue
  4. +1
    -1
      src/views/sunVillage_info/list_tourists_ranking.vue

+ 1
- 80
src/views/sunVillage_info/list_tourists_add.vue Прегледај датотеку

@@ -46,27 +46,11 @@
<van-field readonly input-align="right" :border="false" > <van-field readonly input-align="right" :border="false" >
<template #label> <template #label>
<img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18"> <img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18">
<p style="margin-left: 5px;">事前公开</p>
<p style="margin-left: 5px;">公开图片</p>
</template> </template>
</van-field> </van-field>
<!-- @delete="deleteFile1"--> <!-- @delete="deleteFile1"-->
<van-uploader v-model="fileList" multiple :after-read="afterRead" @delete="deleteFile1" style="margin-top: 10PX" /> <van-uploader v-model="fileList" multiple :after-read="afterRead" @delete="deleteFile1" style="margin-top: 10PX" />
<van-field readonly input-align="right" :border="false" >
<template #label>
<img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18">
<p style="margin-left: 5px;">事中公开</p>
</template>
</van-field>
<!-- @delete="deleteFile1"-->
<van-uploader v-model="fileList2" multiple :after-read="afterRead2" @delete="deleteFile2" style="margin-top: 10PX" />
<van-field readonly input-align="right" :border="false" >
<template #label>
<img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18">
<p style="margin-left: 5px;">事后公开</p>
</template>
</van-field>
<!-- @delete="deleteFile1"-->
<van-uploader v-model="fileList3" multiple :after-read="afterRead3" @delete="deleteFile3" style="margin-top: 10PX" />


<div style="border-top: 1px solid #ededed;margin-top: 10PX;"> <div style="border-top: 1px solid #ededed;margin-top: 10PX;">
<van-field readonly input-align="right" :border="false" > <van-field readonly input-align="right" :border="false" >
@@ -118,16 +102,11 @@
form:{ form:{
openNy:this.format(new Date(),'yyyy-MM'), openNy:this.format(new Date(),'yyyy-MM'),
openPic:'', openPic:'',
openPic2:'',
openPic3:'',
openFile:'', openFile:'',
openName:this.format(new Date(),'yyyy')+ '年' + (this.format(new Date(),'MM')-1) + '月零工公开' openName:this.format(new Date(),'yyyy')+ '年' + (this.format(new Date(),'MM')-1) + '月零工公开'
}, },
openPic:[], openPic:[],
fileList:[], fileList:[],
fileList1:[],
fileList2:[],
fileList3:[],
openNy:new Date(), openNy:new Date(),
type:'', type:'',
openFile:[], openFile:[],
@@ -138,8 +117,6 @@
}, },
openFile2:[], openFile2:[],
openPic2:[], openPic2:[],
openPic3:[],
openPic4:[],
}; };
}, },
created() { created() {
@@ -161,8 +138,6 @@
var that = this; var that = this;
that.form.openFile = that.openFile2.join(',') that.form.openFile = that.openFile2.join(',')
that.form.openPic = that.openPic2.join(',') that.form.openPic = that.openPic2.join(',')
that.form.openPic2 = that.openPic3.join(',')
that.form.openPic3 = that.openPic4.join(',')
tempWorkerOpenAdd(that.form).then((r1) => { tempWorkerOpenAdd(that.form).then((r1) => {
if (r1.code == 200){ if (r1.code == 200){
that.$notify({ type: 'success', message: '新增成功' }); that.$notify({ type: 'success', message: '新增成功' });
@@ -181,14 +156,6 @@
this.openPic2.splice(detail.index,1) this.openPic2.splice(detail.index,1)
// this.form.openPic.splice(index,1); // this.form.openPic.splice(index,1);
}, },
deleteFile2(detail){
this.openPic3.splice(detail.index,1)
// this.form.openPic.splice(index,1);
},
deleteFile3(detail){
this.openPic4.splice(detail.index,1)
// this.form.openPic.splice(index,1);
},
deleteWord(index){ deleteWord(index){
this.openFileList.splice(index,1); this.openFileList.splice(index,1);
this.openFile2.splice(index,1); this.openFile2.splice(index,1);
@@ -216,52 +183,6 @@
}) })
} }
}, },
afterRead2(file) {
this.$toast.loading({
message: "上传中...",
forbidClick: true,
duration: 0,
});
// 此时可以自行将文件上传至服务器
if (file instanceof Array){//判断是否为数组,单张图片为array,多张为数组,数组返回true否则为false
file.map(res=>{
let params1 = new FormData();
params1.append("file", res.file);
commonUpload(params1).then((r1) => {
this.openPic3.push(r1.fileName);
})
})
}else{
let params1 = new FormData();
params1.append("file", file.file);
commonUpload(params1).then((r1) => {
this.openPic3.push(r1.fileName);
})
}
},
afterRead3(file) {
this.$toast.loading({
message: "上传中...",
forbidClick: true,
duration: 0,
});
// 此时可以自行将文件上传至服务器
if (file instanceof Array){//判断是否为数组,单张图片为array,多张为数组,数组返回true否则为false
file.map(res=>{
let params1 = new FormData();
params1.append("file", res.file);
commonUpload(params1).then((r1) => {
this.openPic4.push(r1.fileName);
})
})
}else{
let params1 = new FormData();
params1.append("file", file.file);
commonUpload(params1).then((r1) => {
this.openPic4.push(r1.fileName);
})
}
},
afterReadOpenFile(file){ afterReadOpenFile(file){
this.$toast.loading({ this.$toast.loading({
message: "上传中...", message: "上传中...",


+ 1
- 31
src/views/sunVillage_info/list_tourists_detail.vue Прегледај датотеку

@@ -36,28 +36,12 @@
<van-field readonly input-align="right" :border="false" > <van-field readonly input-align="right" :border="false" >
<template #label> <template #label>
<img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18"> <img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18">
<p style="margin-left: 5px;">事前公开</p>
<p style="margin-left: 5px;">公开图片</p>
</template> </template>
</van-field> </van-field>
<!-- @delete="deleteFile1"--> <!-- @delete="deleteFile1"-->
<van-uploader v-model="openPic" :show-upload="false" :deletable="false" multiple style="margin-top: 10PX" /> <van-uploader v-model="openPic" :show-upload="false" :deletable="false" multiple style="margin-top: 10PX" />
<van-field readonly input-align="right" :border="false" >
<template #label>
<img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18">
<p style="margin-left: 5px;">事中公开</p>
</template>
</van-field>
<!-- @delete="deleteFile1"-->
<van-uploader v-model="openPic2" :show-upload="false" :deletable="false" multiple style="margin-top: 10PX" />


<van-field readonly input-align="right" :border="false" >
<template #label>
<img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18">
<p style="margin-left: 5px;">事后公开</p>
</template>
</van-field>
<!-- @delete="deleteFile1"-->
<van-uploader v-model="openPic3" :show-upload="false" :deletable="false" multiple style="margin-top: 10PX" />
<div style="border-top: 1px solid #ededed;margin-top: 10PX;"> <div style="border-top: 1px solid #ededed;margin-top: 10PX;">
<van-field readonly input-align="right" :border="false" > <van-field readonly input-align="right" :border="false" >
<template #label> <template #label>
@@ -108,8 +92,6 @@
fjImg:'', fjImg:'',
fjImgShow:false, fjImgShow:false,
openPic:[], openPic:[],
openPic2:[],
openPic3:[],
fileList:[], fileList:[],
fileList1:[], fileList1:[],
openNy:new Date(), openNy:new Date(),
@@ -162,18 +144,6 @@
this.openPic.push({url:'/api'+rrr}) this.openPic.push({url:'/api'+rrr})
}) })
} }
if (res.data.openPic2 !='' && res.data.openPic2 != null && res.data.openPic2 != undefined){
res.data.openPic2 = res.data.openPic2.split(',')
res.data.openPic2.map((rrr,i)=>{
this.openPic2.push({url:'/api'+rrr})
})
}
if (res.data.openPic3 !='' && res.data.openPic3 != null && res.data.openPic3 != undefined){
res.data.openPic3 = res.data.openPic3.split(',')
res.data.openPic3.map((rrr,i)=>{
this.openPic3.push({url:'/api'+rrr})
})
}
this.form = res.data; this.form = res.data;
}) })
}, },


+ 2
- 92
src/views/sunVillage_info/list_tourists_edit.vue Прегледај датотеку

@@ -46,30 +46,12 @@
<van-field readonly input-align="right" :border="false" > <van-field readonly input-align="right" :border="false" >
<template #label> <template #label>
<img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18"> <img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18">
<p style="margin-left: 5px;">事前公开</p>
<p style="margin-left: 5px;">公开图片</p>
</template> </template>
</van-field> </van-field>
<!-- @delete="deleteFile1"--> <!-- @delete="deleteFile1"-->
<van-uploader v-model="openPic" multiple :after-read="afterRead" @delete="deleteFile1" style="margin-top: 10PX" /> <van-uploader v-model="openPic" multiple :after-read="afterRead" @delete="deleteFile1" style="margin-top: 10PX" />


<van-field readonly input-align="right" :border="false" >
<template #label>
<img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18">
<p style="margin-left: 5px;">事中公开</p>
</template>
</van-field>
<!-- @delete="deleteFile1"-->
<van-uploader v-model="openPicsz" multiple :after-read="afterRead2" @delete="deleteFile2" style="margin-top: 10PX" />

<van-field readonly input-align="right" :border="false" >
<template #label>
<img src="../../assets/images/sunVillage_info/add_tit_icon_03.png" width="18">
<p style="margin-left: 5px;">事后公开</p>
</template>
</van-field>
<!-- @delete="deleteFile1"-->
<van-uploader v-model="openPicsh" multiple :after-read="afterRead3" @delete="deleteFile3" style="margin-top: 10PX" />

<div style="border-top: 1px solid #ededed;margin-top: 10PX;"> <div style="border-top: 1px solid #ededed;margin-top: 10PX;">
<van-field readonly input-align="right" :border="false" > <van-field readonly input-align="right" :border="false" >
<template #label> <template #label>
@@ -123,8 +105,6 @@
openFile:'', openFile:'',
}, },
openPic:[], openPic:[],
openPicsz:[],
openPicsh:[],
fileList:[], fileList:[],
fileList1:[], fileList1:[],
openNy:new Date(), openNy:new Date(),
@@ -137,8 +117,6 @@
deptId:'' deptId:''
}, },
openPic2:[], openPic2:[],
openPic3:[],
openPic4:[],
openFile2:[] openFile2:[]
}; };
}, },
@@ -183,20 +161,6 @@
this.openPic[i] = {url:'/api'+rrr} this.openPic[i] = {url:'/api'+rrr}
}) })
} }
if (res.data.openPic2!='' && res.data.openPic2 != null && res.data.openPic2 != undefined){
this.openPicsz = res.data.openPic2.split(',')
this.openPic3 = res.data.openPic2.split(',')
this.openPicsz.map((rrr,i)=>{
this.openPicsz[i] = {url:'/api'+rrr}
})
}
if (res.data.openPic3!='' && res.data.openPic3 != null && res.data.openPic3 != undefined){
this.openPicsh = res.data.openPic3.split(',')
this.openPic4 = res.data.openPic3.split(',')
this.openPicsh.map((rrr,i)=>{
this.openPicsh[i] = {url:'/api'+rrr}
})
}
that.form = res.data; that.form = res.data;
}) })
}, },
@@ -204,8 +168,6 @@
var that = this; var that = this;
that.form.openFile = that.openFile2.join(',') that.form.openFile = that.openFile2.join(',')
that.form.openPic = that.openPic2.join(',') that.form.openPic = that.openPic2.join(',')
that.form.openPic2 = that.openPic3.join(',')
that.form.openPic3 = that.openPic4.join(',')
tempWorkerOpenEdit(that.form).then((r1) => { tempWorkerOpenEdit(that.form).then((r1) => {
if (r1.code == 200){ if (r1.code == 200){
that.$notify({ type: 'success', message: '修改成功' }); that.$notify({ type: 'success', message: '修改成功' });
@@ -221,15 +183,9 @@
this.showBuildTime = false; this.showBuildTime = false;
}, },
deleteFile1(file,detail){ deleteFile1(file,detail){
console.log(detail)
//console.log(detail)
this.openPic2.splice(detail.index,1) this.openPic2.splice(detail.index,1)
}, },
deleteFile2(file,detail){
this.openPic3.splice(detail.index,1)
},
deleteFile3(file,detail){
this.openPic4.splice(detail.index,1)
},
deleteWord(index){ deleteWord(index){
this.openFile.splice(index,1); this.openFile.splice(index,1);
this.openFile2.splice(index,1); this.openFile2.splice(index,1);
@@ -257,52 +213,6 @@
}) })
} }
}, },
afterRead2(file) {
this.$toast.loading({
message: "上传中...",
forbidClick: true,
duration: 0,
});
// 此时可以自行将文件上传至服务器
if (file instanceof Array){//判断是否为数组,单张图片为array,多张为数组,数组返回true否则为false
file.map(res=>{
let params1 = new FormData();
params1.append("file", res.file);
commonUpload(params1).then((r1) => {
this.openPic3.push(r1.fileName);
})
})
}else{
let params1 = new FormData();
params1.append("file", file.file);
commonUpload(params1).then((r1) => {
this.openPic3.push(r1.fileName);
})
}
},
afterRead3(file) {
this.$toast.loading({
message: "上传中...",
forbidClick: true,
duration: 0,
});
// 此时可以自行将文件上传至服务器
if (file instanceof Array){//判断是否为数组,单张图片为array,多张为数组,数组返回true否则为false
file.map(res=>{
let params1 = new FormData();
params1.append("file", res.file);
commonUpload(params1).then((r1) => {
this.openPic4.push(r1.fileName);
})
})
}else{
let params1 = new FormData();
params1.append("file", file.file);
commonUpload(params1).then((r1) => {
this.openPic4.push(r1.fileName);
})
}
},
afterReadOpenFile(file){ afterReadOpenFile(file){
this.$toast.loading({ this.$toast.loading({
message: "上传中...", message: "上传中...",


+ 1
- 1
src/views/sunVillage_info/list_tourists_ranking.vue Прегледај датотеку

@@ -80,7 +80,7 @@
queryParams:{ queryParams:{
pageNum:1, pageNum:1,
pageSize:10, pageSize:10,
orderByColumn:'openNy',
orderByColumn:'jobNy',
isAsc:'desc', isAsc:'desc',
year:'', year:'',
}, },


Loading…
Откажи
Сачувај