Commit 27941010 authored by 黄奎's avatar 黄奎

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

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