Commit 15660a6a authored by 黄奎's avatar 黄奎

页面更新

parent da826258
......@@ -2,7 +2,7 @@
<div v-loading="loading" class="h_edit_brand">
<div class="head-title">
<span @click="CommonJump('hbrand')" class="blue point">品牌管理</span>
/ 编辑品牌管理
{{ addMsg.Id ? '/ 编辑品牌管理' : '/ 新增品牌管理' }}
</div>
<div class="content">
<el-form :rules="rules" :model="addMsg" ref="addMsg" label-width="150px" style="width: 70%">
......@@ -194,6 +194,7 @@ export default {
}
});
} else {
this.$message.error('请填写完整信息');
return false;
}
});
......@@ -201,7 +202,7 @@ export default {
}
};
</script>
<style>
<style scoped>
.app-add-cat .el-checkbox-group {
font-size: 14px !important;
}
......
<template>
<div class="performanceStatics">
<div class="happraise">
<div class="head-title">
估价列表
</div>
......@@ -67,7 +67,6 @@
<img style="width: 32px;height: 32px;" @click="showReplayForm(scope.row, 2)"
src="../../assets/img/userman/icon-show.png" />
</el-tooltip>
</template>
</el-table-column>
</el-table>
......@@ -77,7 +76,7 @@
</div>
<!-- 回复 -->
<el-dialog :title="editTitle" :visible.sync="isShowReplayForm" width="800px">
<el-form ref="answerform" label-width="150px" :rules="rules" :model="replayMsg" @validate="answerTest">
<el-form ref="answerform" label-width="150px" :rules="rules" :model="replayMsg">
<el-form-item label="咨询用户" class="user">
{{ replayMsg.UserName }}
</el-form-item>
......@@ -117,12 +116,12 @@
</el-form-item>
<el-form-item label="回复内容" prop="ReplyContent">
<template v-if="showType == 1">
<el-input style="width:250px" size="small" maxlength="800" :rows="4" type="textarea"
<el-input style="width:400px" size="small" maxlength="800" show-word-limit :rows="4" type="textarea"
v-model="replayMsg.ReplyContent">
</el-input>
</template>
<template v-else>
{{ replayMsg.ReplyContent }}
<p>{{ replayMsg.ReplyContent }}</p>
</template>
</el-form-item>
</el-form>
......@@ -226,19 +225,16 @@ export default {
});
},
showReplayForm(item, showType) {
this.editTitle = '回复'
this.replayMsg.GoodsId = item.Id;
this.replayMsg.GoodsImgList = item.GoodsImgList;
this.replayMsg.MoreImgList = item.MoreImgList;
this.replayMsg.Remark = item.Remark;
this.replayMsg.CategoryName = item.CategoryName;
this.replayMsg.BrandName = item.BrandName;
this.replayMsg.UserName = item.UserName;
this.replayMsg.CreateDate = item.CreateDate;
let { GoodsImgList, MoreImgList, Remark, CategoryName, BrandName, UserName, CreateDate } = item;
this.replayMsg = { GoodsImgList, MoreImgList, Remark, CategoryName, BrandName, UserName, CreateDate }
this.showType = showType;
this.srcList = item.GoodsImgList.map(v => v.Path);
this.moreImg = item.MoreImgList.map(v => v.Path);
if (this.showType == 2) {
this.replayMsg.ReplyContent = item.ReplyContent;
this.editTitle = '查看'
}
this.isShowReplayForm = true;
},
......@@ -294,27 +290,17 @@ export default {
}
});
} else {
this.$message.error('请输入回复内容');
return false;
}
});
// if (this.pass) {
// this.assetsApipost("/api/Assess/SetGoodsReply", this.replayMsg, res => {
// if (res.data.resultCode == 1) {
// this.isShowReplayForm = false;
// this.Success(res.data.message);
// this.getList();
// } else {
// this.Error(res.data.message);
// }
// });
// }
},
//回复验证结果
},
};
</script>
<style scoped>
.performanceStatics .content {
.happraise .content {
background: #fff;
margin-top: 10px;
padding: 20px;
......@@ -322,36 +308,37 @@ export default {
box-sizing: border-box;
}
.performanceStatics .shopImg1 {
.happraise .shopImg1 {
display: flex;
flex-wrap: wrap;
margin-top: 10px;
}
.performanceStatics .shopImg1>div {
.happraise .shopImg1>div {
width: 20%;
}
.performanceStatics .img_Des {
.happraise .img_Des {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.performanceStatics .el-form-item {
.happraise .el-form-item {
margin-bottom: 0;
}
.performanceStatics .remark {
margin-top: 30px;
.happraise .remark {
margin: 20px 0;
}
.performanceStatics .answer-con {
.happraise .answer-con {
display: -webkit-box;
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
/* white-space: pre-line; */
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
}
......
<template>
<div class="performanceStatics">
<div class="hbrand">
<div class="head-title">
品牌管理
<el-button style="float:right;margin-top: -5px;" type="primary" class="el-button--small"
......@@ -149,8 +149,8 @@ export default {
}
};
</script>
<style>
.performanceStatics .content {
<style scoped>
.hbrand .content {
background: #fff;
margin-top: 10px;
padding: 20px;
......@@ -158,16 +158,16 @@ export default {
box-sizing: border-box;
}
.performanceStatics .edit-img {
.hbrand .edit-img {
margin-right: 10px;
}
.performanceStatics .moredesc-con {
.hbrand .moredesc-con {
display: -webkit-box;
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
white-space: pre-line;
/* white-space: pre-line; */
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
}
......
<template>
<div class="performanceStatics">
<div class="hcategory">
<div class="head-title">
分类管理
<el-button style="float:right;margin-top: -5px;" type="primary" class="el-button--small"
......@@ -11,7 +11,7 @@
<el-input type="text" style="width:250px" size="small" maxlength="100" v-model="msg.Name"
@input="(msg.pageIndex = 1), getList()" clearable>
</el-input>
<el-button @click="(msg.pageIndex = 1), getList()" size="small" type="primary">
<el-button :disabled="iscx" @click="(msg.pageIndex = 1), getList()" size="small" type="primary">
查询
</el-button>
</div>
......@@ -110,11 +110,13 @@ export default {
isShowChooseImage: false,
rules: {
Name: [{ required: true, message: "请输入名称", trigger: "blur" }],
Image: [{ required: true, message: "请选择文件", trigger: "blur" }]
Image: [{ required: true, message: "请选择文件" }]
},
// 验证是否通过
pass: ""
pass: "",
//节流字段
iscx: ''
};
},
created() { },
......@@ -152,11 +154,8 @@ export default {
showCategoryForm(item) {
if (item) {
this.editTitle = "修改分类";
this.postMsg.Id = item.Id;
this.postMsg.Name = item.Name;
this.postMsg.Image = item.Image;
this.postMsg.Enable = item.Enable;
this.postMsg.Sort = item.Sort;
let { Id, Name, Image, Enable, Sort } = item;
this.postMsg = { Id, Name, Image, Enable, Sort };
} else {
this.editTitle = "新增分类";
this.postMsg.Id = 0;
......@@ -171,19 +170,6 @@ export default {
formTest(res, pass) {
this.pass = pass;
},
// saveData() {
// if (this.pass && this.postMsg.Image) {
// this.assetsApipost("/api/Assess/SetCategoryInfo", this.postMsg, res => {
// if (res.data.resultCode == 1) {
// this.Success(res.data.message);
// this.getList();
// } else {
// this.Error(res.data.message);
// }
// });
// }
// },
//新增修改分类
saveData(editform) {
this.$refs[editform].validate((valid) => {
......@@ -197,6 +183,7 @@ export default {
}
});
} else {
this.$message.error('请填写完整信息');
return false;
}
});
......@@ -224,8 +211,8 @@ export default {
}
};
</script>
<style>
.performanceStatics .content {
<style scoped>
.hcategory .content {
background: #fff;
margin-top: 10px;
padding: 20px;
......@@ -233,7 +220,7 @@ export default {
box-sizing: border-box;
}
.performanceStatics .edit-img {
.hcategory .edit-img {
margin-right: 10px;
}
</style>
......@@ -221,7 +221,7 @@
</div>
</div>
</template>
<script>
<script scoped>
export default {
data() {
return {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment