修改
This commit is contained in:
parent
a684225de2
commit
231109f013
@ -157,7 +157,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
|
||||||
>
|
>
|
||||||
@ -286,10 +286,16 @@
|
|||||||
:key="item.dictValue"
|
:key="item.dictValue"
|
||||||
:label="item.dictLabel"
|
:label="item.dictLabel"
|
||||||
:value="item.dictValue"
|
: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>
|
||||||
@ -615,6 +621,9 @@ export default {
|
|||||||
this.PosterImageJump();
|
this.PosterImageJump();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
taptypes(row, e) {
|
||||||
|
row.jumpDictId = e.dictCode;
|
||||||
|
},
|
||||||
//类型字典
|
//类型字典
|
||||||
PosterImageJump() {
|
PosterImageJump() {
|
||||||
selectPosterImageJump().then(res => {
|
selectPosterImageJump().then(res => {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user