|
|
@@ -132,7 +132,7 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
|
|
|
- <el-row :gutter="20" v-if="item.type=='1005'" type="flex" justify="space-between">
|
|
|
+ <el-row :gutter="20" v-else-if="item.type=='1005'" type="flex" justify="space-between">
|
|
|
<el-col :span="8">
|
|
|
<el-form ref="form" :model="item" label-width="80px">
|
|
|
<el-form-item label="商品名称">
|
|
|
@@ -231,6 +231,7 @@
|
|
|
</el-form>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+
|
|
|
<el-row :gutter="20" v-else type="flex" justify="space-between">
|
|
|
<el-col :span="8">
|
|
|
<el-form ref="form" :model="item" label-width="80px">
|
|
|
@@ -799,7 +800,8 @@ export default {
|
|
|
this.$message.warning('请填写名称!');
|
|
|
return
|
|
|
}
|
|
|
- item.modifyFlag = 'Y'
|
|
|
+ item.modifyFlag = 'Y';
|
|
|
+ delete item.arContentChildList;
|
|
|
this.$http.post({
|
|
|
url: '/arContent/update',
|
|
|
data: item
|
|
|
@@ -816,18 +818,18 @@ export default {
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
.img {
|
|
|
- height: 300px;
|
|
|
- background-size: cover;
|
|
|
- background-position: center center;
|
|
|
- background-repeat: no-repeat;
|
|
|
- background-color: #ccc;
|
|
|
- margin-left: 20px;
|
|
|
- border-radius: 4px;
|
|
|
+ height: 300px;
|
|
|
+ background-size: cover;
|
|
|
+ background-position: center center;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-color: #ccc;
|
|
|
+ margin-left: 20px;
|
|
|
+ border-radius: 4px;
|
|
|
}
|
|
|
.right {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- flex-direction: column;
|
|
|
- align-self: stretch;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ flex-direction: column;
|
|
|
+ align-self: stretch;
|
|
|
}
|
|
|
</style>
|