Commit 27941010 authored by 黄奎's avatar 黄奎

评论删除,文件上传压缩调整

parent 9ecc4e6f
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
<div class="evalTemplate evaluationMan"> <div class="evalTemplate evaluationMan">
<div class="head-title"> <div class="head-title">
评价管理 评价管理
<el-button @click="CommonJump('carEvaluation')" style="float:right;margin-left:10px" size="small" <el-button @click="CommonJump('carEvaluation')" style="float:right;margin-left:10px" size="small" type="primary">
type="primary">添加司导评价</el-button> 添加司导评价</el-button>
<el-button @click="CommonJump('customerEvaluation')" style="float:right;margin-left:10px" size="small" <el-button @click="CommonJump('customerEvaluation')" style="float:right;margin-left:10px" size="small"
type="primary">添加客户评价</el-button> type="primary">添加客户评价</el-button>
<el-button @click="CommonJump('evaluationTemplate')" style="float:right" size="small" type="primary">回复模板 <el-button @click="CommonJump('evaluationTemplate')" style="float:right" size="small" type="primary">回复模板
...@@ -12,15 +12,15 @@ ...@@ -12,15 +12,15 @@
<div class="content"> <div class="content">
<div style="margin-bottom:20px"> <div style="margin-bottom:20px">
<span>评价类型</span> <span>评价类型</span>
<el-select style="margin:0 10px" class="w100" @change="msg.pageIndex=1,getList()" v-model="msg.CommentGrade" size="small" <el-select style="margin:0 10px" class="w100" @change="msg.pageIndex=1,getList()" v-model="msg.CommentGrade"
placeholder="请选择"> size="small" placeholder="请选择">
<el-option label="全部评价" :value="0"></el-option> <el-option label="全部评价" :value="0"></el-option>
<el-option v-for="item in templateList" :key="item.Id" :label="item.Name" :value="item.Id"> <el-option v-for="item in templateList" :key="item.Id" :label="item.Name" :value="item.Id">
</el-option> </el-option>
</el-select> </el-select>
<span>所属平台</span> <span>所属平台</span>
<el-select class="w100" @change="msg.pageIndex=1,getList()" style="margin-right: 10px;" v-model="msg.OrderSource" size="small" <el-select class="w100" @change="msg.pageIndex=1,getList()" style="margin-right: 10px;"
placeholder="请选择"> v-model="msg.OrderSource" size="small" placeholder="请选择">
<el-option label="全平台" :value="0"></el-option> <el-option label="全平台" :value="0"></el-option>
<el-option v-for="item in platList" :key="item.Id" :label="item.Name" :value="item.Id"> <el-option v-for="item in platList" :key="item.Id" :label="item.Name" :value="item.Id">
</el-option> </el-option>
...@@ -125,8 +125,8 @@ ...@@ -125,8 +125,8 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-pagination style="text-align:right" background @current-change="handleCurrentChange" :page-size="msg.pageSize" :current-page.sync="msg.pageIndex" <el-pagination style="text-align:right" background @current-change="handleCurrentChange" :page-size="msg.pageSize"
layout="prev, pager, next" :total="total"> :current-page.sync="msg.pageIndex" layout="prev, pager, next" :total="total">
</el-pagination> </el-pagination>
</div> </div>
<!-- 评论回复 --> <!-- 评论回复 -->
...@@ -262,9 +262,7 @@ ...@@ -262,9 +262,7 @@
mounted() {}, mounted() {},
methods: { methods: {
OpenImg(item) { OpenImg(item) {
// this.imgSrc=item;
this.imgSrc = 'https://cdnimg.iotweixin.com/uploads/mall1285/20200316/586d61c616082de7c3a7d1d778104785.jpg'; this.imgSrc = 'https://cdnimg.iotweixin.com/uploads/mall1285/20200316/586d61c616082de7c3a7d1d778104785.jpg';
this.seeimgDig = true; this.seeimgDig = true;
}, },
// 批量回复 // 批量回复
...@@ -293,7 +291,7 @@ ...@@ -293,7 +291,7 @@
Type: 1, Type: 1,
Content: '', Content: '',
} }
this.hfMsg.Content=row.Reply; this.hfMsg.Content = row.Reply;
this.addDig = true; this.addDig = true;
}, },
czsubmitForm() { czsubmitForm() {
...@@ -320,13 +318,18 @@ ...@@ -320,13 +318,18 @@
return; return;
} }
let Ids = ""; let Ids = "";
let OrderDetailIds = '';
let IdList = []; let IdList = [];
let DetailIdList = [];
this.SelectList.forEach(item => { this.SelectList.forEach(item => {
IdList.push(item.OrderDetailId); IdList.push(item.Id);
DetailIdList.push(item.OrderDetailId);
}) })
Ids = IdList.join(','); Ids = IdList.join(',');
OrderDetailIds = DetailIdList.join(',');
let msg = { let msg = {
OrderDetailIds: Ids, Ids: Ids,
OrderDetailIds: OrderDetailIds,
Type: index, Type: index,
} }
let str = ""; let str = "";
...@@ -346,7 +349,6 @@ ...@@ -346,7 +349,6 @@
}).catch(() => { }).catch(() => {
}); });
}, },
changeSwitch(item) { changeSwitch(item) {
let index = 4; let index = 4;
...@@ -365,16 +367,17 @@ ...@@ -365,16 +367,17 @@
// 显示隐藏 // 显示隐藏
setBatch(item, index) { setBatch(item, index) {
let msg = { let msg = {
Ids: item.Id,
OrderDetailIds: item.OrderDetailId, OrderDetailIds: item.OrderDetailId,
Type: index, Type: index,
} }
if(index==6){ if (index == 6) {
this.delComent(msg); this.delComent(msg);
}else{ } else {
this.commonSet(msg); this.commonSet(msg);
} }
}, },
delComent(msg){ delComent(msg) {
let that = this; let that = this;
that.$confirm("确认删除?", '提示', { that.$confirm("确认删除?", '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
...@@ -382,15 +385,15 @@ ...@@ -382,15 +385,15 @@
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
this.apipost("/api/order/SetCommentBatchByOrderDetailId", msg, res => { this.apipost("/api/order/SetCommentBatchByOrderDetailId", msg, res => {
this.loading = false; this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.Success(res.data.message) this.Success(res.data.message)
this.getList(); this.getList();
this.addDig = false; this.addDig = false;
} else { } else {
this.Error(res.data.message) this.Error(res.data.message)
} }
}) })
}).catch(() => { }).catch(() => {
}); });
......
...@@ -54,7 +54,7 @@ export default { ...@@ -54,7 +54,7 @@ export default {
//域名管理对象 //域名管理对象
Vue.prototype.domainManager = function () { Vue.prototype.domainManager = function () {
let domainUrl = "http://192.168.10.68:8200"; let domainUrl = "http://192.168.10.68:5000";
// let domainUrl = "https://mallapi.oytour.com"; // let domainUrl = "https://mallapi.oytour.com";
let javaUrl = 'http://192.168.10.214:8018'; let javaUrl = 'http://192.168.10.214:8018';
let vtUploadUrl = "http://192.168.10.214:8120"; let vtUploadUrl = "http://192.168.10.214:8120";
...@@ -177,11 +177,12 @@ export default { ...@@ -177,11 +177,12 @@ export default {
var upInfo = JSON.parse(localStorage.uploadInfo); var upInfo = JSON.parse(localStorage.uploadInfo);
let maxSize = 500 * 1024 let maxSize = 500 * 1024
if ((fileObj.type == "image/png" || fileObj.type == "image/jpeg") && fileObj.size > maxSize) { if ((fileObj.type == "image/png" || fileObj.type == "image/jpeg") && fileObj.size > maxSize) {
let that = this let that = this;
lrz(fileObj, { var lrzObj = {
width: 750, width: 750,
quality: 0.9 quality: 0.9
}) }
lrz(fileObj, lrzObj)
.then(function (rst) { .then(function (rst) {
//成功时执行 //成功时执行
var arr = rst.base64.split(','); var arr = rst.base64.split(',');
...@@ -197,7 +198,13 @@ export default { ...@@ -197,7 +198,13 @@ export default {
}); });
if (upInfo && upInfo.IsDefault == 1) { if (upInfo && upInfo.IsDefault == 1) {
if (upInfo.StoreType == 1) { if (upInfo.StoreType == 1) {
that.uploadStart(path, newFile, callback) var cachaInfo = that.getLocalStorage();
if (cachaInfo && cachaInfo.TenantId == 29) {
that.uploadStart(path, fileObj, callback)
} else {
that.uploadStart(path, newFile, callback)
}
console.log("cachaInfo", cachaInfo)
} }
if (upInfo.StoreType == 2) { if (upInfo.StoreType == 2) {
that.uploadToAli(path, newFile, callback) that.uploadToAli(path, newFile, callback)
......
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