|
@@ -28,23 +28,23 @@
|
|
</el-col >
|
|
</el-col >
|
|
<el-col :span="22"><span class="hg">{{form.mailTheme}}</span></el-col>
|
|
<el-col :span="22"><span class="hg">{{form.mailTheme}}</span></el-col>
|
|
</el-row>
|
|
</el-row>
|
|
- <!--<el-row :gutter="80">-->
|
|
|
|
- <!--<el-col :span="1">-->
|
|
|
|
- <!--<el-tag>附件</el-tag>-->
|
|
|
|
- <!--</el-col >-->
|
|
|
|
- <!--<el-col :span="22">-->
|
|
|
|
- <!--<span class="hg" v-for="site in fujianpath">-->
|
|
|
|
- <!--<img :src="devapi + site" alt="">-->
|
|
|
|
- <!--</span></el-col>-->
|
|
|
|
- <!--</el-row>-->
|
|
|
|
|
|
+ <el-row :gutter="80">
|
|
|
|
+ <el-col :span="1">
|
|
|
|
+ <el-tag>附件</el-tag>
|
|
|
|
+ </el-col >
|
|
|
|
+ <el-col :span="22">
|
|
|
|
+ <span class="hg" v-for="site in fujianpath">
|
|
|
|
+ <a class="fujian" :href="devapi + site.path">{{site.name}} </a>
|
|
|
|
+ </span></el-col>
|
|
|
|
+ </el-row>
|
|
</el-card>
|
|
</el-card>
|
|
<el-row>
|
|
<el-row>
|
|
<p class="text">
|
|
<p class="text">
|
|
- <el-row>
|
|
|
|
- <span class="hg" v-for="site in fujianpath">
|
|
|
|
- <img :src="devapi + site" alt="">
|
|
|
|
- </span>
|
|
|
|
- </el-row>
|
|
|
|
|
|
+ <!--<el-row>-->
|
|
|
|
+ <!--<span class="hg" v-for="site in fujianpath">-->
|
|
|
|
+ <!--<img :src="devapi + site" alt="">-->
|
|
|
|
+ <!--</span>-->
|
|
|
|
+ <!--</el-row>-->
|
|
<el-row>
|
|
<el-row>
|
|
{{form.mailContent}}
|
|
{{form.mailContent}}
|
|
</el-row>
|
|
</el-row>
|
|
@@ -100,6 +100,8 @@
|
|
rules: {
|
|
rules: {
|
|
},
|
|
},
|
|
fujianpath:'',
|
|
fujianpath:'',
|
|
|
|
+ fujianName:'',
|
|
|
|
+ fujian:[],
|
|
devapi:'',
|
|
devapi:'',
|
|
};
|
|
};
|
|
},
|
|
},
|
|
@@ -125,8 +127,16 @@
|
|
// this.form = response.data;
|
|
// this.form = response.data;
|
|
this.form = response.data[0];
|
|
this.form = response.data[0];
|
|
this.fujianpath = this.form.filePath;
|
|
this.fujianpath = this.form.filePath;
|
|
|
|
+ this.fujianName = this.form.fileName;
|
|
// console.log(response.data);
|
|
// console.log(response.data);
|
|
this.fujianpath =this.fujianpath.split(',')
|
|
this.fujianpath =this.fujianpath.split(',')
|
|
|
|
+ this.fujianName =this.fujianName.split(',')
|
|
|
|
+ for(var i=0;i< this.fujianName.length;i++){
|
|
|
|
+ this.fujian.push({
|
|
|
|
+ "path": this.fujianpath[i],
|
|
|
|
+ "name":this.fujianName[i]
|
|
|
|
+ });
|
|
|
|
+ }
|
|
this.devapi = process.env.VUE_APP_BASE_API
|
|
this.devapi = process.env.VUE_APP_BASE_API
|
|
// this.open = true;
|
|
// this.open = true;
|
|
// this.title = "修改【请填写功能名称】";
|
|
// this.title = "修改【请填写功能名称】";
|
|
@@ -201,7 +211,7 @@
|
|
// this.reset();
|
|
// this.reset();
|
|
const mailDetailGuid = row.mailDetailGuid || this.ids
|
|
const mailDetailGuid = row.mailDetailGuid || this.ids
|
|
console.log(mailDetailGuid);
|
|
console.log(mailDetailGuid);
|
|
- this.$router.push({path:'/email/receiveList/xiangqing',query: {id:mailDetailGuid[0] }})
|
|
|
|
|
|
+ this.$router.push({path:'/Emile/receiveList/xiangqing',query: {id:mailDetailGuid[0] }})
|
|
|
|
|
|
getDetail(mailDetailGuid).then(response => {
|
|
getDetail(mailDetailGuid).then(response => {
|
|
// this.form = response.data;
|
|
// this.form = response.data;
|
|
@@ -289,7 +299,7 @@
|
|
}
|
|
}
|
|
.text{
|
|
.text{
|
|
span{
|
|
span{
|
|
- margin: 20px;
|
|
|
|
|
|
+ /*margin: 20px;*/
|
|
}
|
|
}
|
|
padding: 0 20px;
|
|
padding: 0 20px;
|
|
}
|
|
}
|