修改
This commit is contained in:
parent
6cc2964f69
commit
d30fad7d78
@ -71,4 +71,11 @@ export function delPoser(nurseStationId, moduleType, nurseItemId) {
|
|||||||
url: `/system/poser/deletePoserInfo?moduleType=${moduleType}&nurseStationId=${nurseStationId}&nurseItemId=${nurseItemId}`,
|
url: `/system/poser/deletePoserInfo?moduleType=${moduleType}&nurseStationId=${nurseStationId}&nurseItemId=${nurseItemId}`,
|
||||||
method: 'delete'
|
method: 'delete'
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function selectPosterImageJump() {
|
||||||
|
return request({
|
||||||
|
url: '/system/poser/selectPosterImageJump',
|
||||||
|
method: 'GET',
|
||||||
|
})
|
||||||
}
|
}
|
||||||
@ -174,7 +174,7 @@
|
|||||||
<el-dialog
|
<el-dialog
|
||||||
:title="!isEditFlag ? '添加海报模块信息' : '修改海报模块信息'"
|
:title="!isEditFlag ? '添加海报模块信息' : '修改海报模块信息'"
|
||||||
:visible.sync="open"
|
:visible.sync="open"
|
||||||
width="1100px"
|
width="1200px"
|
||||||
:before-close="cancel"
|
:before-close="cancel"
|
||||||
append-to-body
|
append-to-body
|
||||||
>
|
>
|
||||||
@ -300,13 +300,19 @@
|
|||||||
<el-select v-model="scope.row.jumpType" placeholder="请选择" style="width: 208px">
|
<el-select v-model="scope.row.jumpType" placeholder="请选择" style="width: 208px">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in jumpTypes"
|
v-for="item in jumpTypes"
|
||||||
:key="item.value"
|
:key="item.dictValue"
|
||||||
:label="item.label"
|
:label="item.dictLabel"
|
||||||
:value="item.value"
|
:value="item.dictValue"
|
||||||
|
@click.native="taptypes(scope.row,item)"
|
||||||
></el-option>
|
></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column label="图片跳转链接" align="center" width="300">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-input v-model="scope.row.jumpLink" placeholder="请输入跳转链接" style="widt h:250px"></el-input>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="操作" align="center" width="250">
|
<el-table-column label="操作" align="center" width="250">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button size="mini" type="text" @click="addPictureUrl">新增</el-button>
|
<el-button size="mini" type="text" @click="addPictureUrl">新增</el-button>
|
||||||
@ -473,7 +479,8 @@ import {
|
|||||||
getListByUser,
|
getListByUser,
|
||||||
getListBy,
|
getListBy,
|
||||||
updatePoser,
|
updatePoser,
|
||||||
updatePicture
|
updatePicture,
|
||||||
|
selectPosterImageJump
|
||||||
} from "@/api/system/poser";
|
} from "@/api/system/poser";
|
||||||
import { list } from "@/api/system/nurseItem";
|
import { list } from "@/api/system/nurseItem";
|
||||||
import stationAcatar from "../stationAvatar/index.vue";
|
import stationAcatar from "../stationAvatar/index.vue";
|
||||||
@ -518,6 +525,7 @@ export default {
|
|||||||
poserList: [],
|
poserList: [],
|
||||||
// 存储新上传的图片数组
|
// 存储新上传的图片数组
|
||||||
deletNewImgs: [],
|
deletNewImgs: [],
|
||||||
|
jumpTypes: [],
|
||||||
objitem: [],
|
objitem: [],
|
||||||
nurseItemList: [],
|
nurseItemList: [],
|
||||||
// 弹出层判断新增还是修改
|
// 弹出层判断新增还是修改
|
||||||
@ -607,20 +615,6 @@ export default {
|
|||||||
// },
|
// },
|
||||||
],
|
],
|
||||||
imgsurl: { pictureUrlList: [] },
|
imgsurl: { pictureUrlList: [] },
|
||||||
jumpTypes: [
|
|
||||||
{
|
|
||||||
value: "NEW_PEOPLE_WELFARE",
|
|
||||||
label: "新人福利"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "HOME_PAGE",
|
|
||||||
label: "首页"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "SHOPPING",
|
|
||||||
label: "商城"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
//页面链接
|
//页面链接
|
||||||
stationid: "",
|
stationid: "",
|
||||||
imgone: "",
|
imgone: "",
|
||||||
@ -641,8 +635,18 @@ export default {
|
|||||||
created() {
|
created() {
|
||||||
this.videourl = baseurl + "/system/station/updateNurseStationHeads";
|
this.videourl = baseurl + "/system/station/updateNurseStationHeads";
|
||||||
this.info();
|
this.info();
|
||||||
|
this.PosterImageJump();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
taptypes(row, e) {
|
||||||
|
row.jumpDictId = e.dictCode;
|
||||||
|
},
|
||||||
|
//类型字典
|
||||||
|
PosterImageJump() {
|
||||||
|
selectPosterImageJump().then(res => {
|
||||||
|
this.jumpTypes = res.data;
|
||||||
|
});
|
||||||
|
},
|
||||||
nurseStationidchange(e) {
|
nurseStationidchange(e) {
|
||||||
this.nurseItemquery.nurseStationId = e;
|
this.nurseItemquery.nurseStationId = e;
|
||||||
this.queryParams.nurseItemName = "";
|
this.queryParams.nurseItemName = "";
|
||||||
@ -651,7 +655,6 @@ export default {
|
|||||||
},
|
},
|
||||||
//删除海报图片列表
|
//删除海报图片列表
|
||||||
delPictureUrl(item) {
|
delPictureUrl(item) {
|
||||||
console.log(item);
|
|
||||||
if (item.idd && !item.id) {
|
if (item.idd && !item.id) {
|
||||||
if (this.form.posterPictureUrlLists.length == 1) {
|
if (this.form.posterPictureUrlLists.length == 1) {
|
||||||
this.$message.error("最后一条不可删除");
|
this.$message.error("最后一条不可删除");
|
||||||
@ -674,9 +677,11 @@ export default {
|
|||||||
addPictureUrl() {
|
addPictureUrl() {
|
||||||
this.idd++;
|
this.idd++;
|
||||||
var obj = {
|
var obj = {
|
||||||
posterPictureUrl: "",
|
posterPictureUrl: null,
|
||||||
jumpType: "",
|
jumpType: null,
|
||||||
idd: this.idd
|
idd: this.idd,
|
||||||
|
jumpLink: null,
|
||||||
|
jumpDictId: null
|
||||||
};
|
};
|
||||||
if (this.form.posterPictureUrlLists.length >= 5) {
|
if (this.form.posterPictureUrlLists.length >= 5) {
|
||||||
this.$message.error("最多新增5条");
|
this.$message.error("最多新增5条");
|
||||||
@ -836,7 +841,6 @@ export default {
|
|||||||
obj.pictureUrlList.push(e.posterPictureUrl);
|
obj.pictureUrlList.push(e.posterPictureUrl);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
console.log(this.deletNewImgs);
|
|
||||||
if (obj.pictureUrlList.length > 0) {
|
if (obj.pictureUrlList.length > 0) {
|
||||||
updatePicture({ pictureUrlList: this.deletNewImgs }).then(res => {
|
updatePicture({ pictureUrlList: this.deletNewImgs }).then(res => {
|
||||||
this.open = false;
|
this.open = false;
|
||||||
@ -853,16 +857,18 @@ export default {
|
|||||||
this.form = {
|
this.form = {
|
||||||
posterPictureUrlLists: [
|
posterPictureUrlLists: [
|
||||||
{
|
{
|
||||||
posterPictureUrl: "",
|
posterPictureUrl: null,
|
||||||
jumpType: "",
|
jumpType: null,
|
||||||
idd: this.idd
|
idd: this.idd,
|
||||||
|
jumpLink: null,
|
||||||
|
jumpDictId: null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
moduleType: null,
|
||||||
id: null,
|
id: null,
|
||||||
poserName: null,
|
poserName: null,
|
||||||
posterPictureUrl: null,
|
posterPictureUrl: null,
|
||||||
posterVideoUrl: null,
|
posterVideoUrl: null,
|
||||||
posterVideoUrl2: null,
|
|
||||||
poserSort: null,
|
poserSort: null,
|
||||||
nurseStationName: "请选择所属护理站",
|
nurseStationName: "请选择所属护理站",
|
||||||
nurseStationId: null,
|
nurseStationId: null,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user