This commit is contained in:
曹辉 2023-03-29 08:57:29 +08:00
parent a684225de2
commit 231109f013

View File

@ -157,7 +157,7 @@
<el-dialog
:title="!isEditFlag ? '添加海报模块信息' : '修改海报模块信息'"
:visible.sync="open"
width="1100px"
width="1200px"
:before-close="cancel"
append-to-body
>
@ -286,10 +286,16 @@
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
@click.native="taptypes(scope.row,item)"
></el-option>
</el-select>
</template>
</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">
<template slot-scope="scope">
<el-button size="mini" type="text" @click="addPictureUrl">新增</el-button>
@ -615,6 +621,9 @@ export default {
this.PosterImageJump();
},
methods: {
taptypes(row, e) {
row.jumpDictId = e.dictCode;
},
//
PosterImageJump() {
selectPosterImageJump().then(res => {