Commit 23719c45 authored by zhangjianqian's avatar zhangjianqian

Merge remote-tracking branch 'origin/master'

parents e5c2a384 98ca7524
This diff is collapsed.
...@@ -134,7 +134,7 @@ ...@@ -134,7 +134,7 @@
@click="workDetail(scope.row)" @click="workDetail(scope.row)"
v-hasPermi="['system:order:edit']" v-hasPermi="['system:order:edit']"
>详情</el-button> >详情</el-button>
<el-button v-if="scope.row.workStatus == '0' || scope.row.workStatus == '1'" <el-button v-if="scope.row.workStatus == '0' || scope.row.workStatus == '1'" key="edit"
size="mini" size="mini"
type="text" type="text"
icon="el-icon-edit" icon="el-icon-edit"
...@@ -660,7 +660,7 @@ export default { ...@@ -660,7 +660,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const workIds = row.workId || this.ids; const workIds = row.workId || this.ids;
this.$confirm('是否确认删除燃气任务编号为"' + workIds + '"的数据项?', "警告", { this.$confirm('是否确认删除燃气任务名称为"' + row.workTitle + '"的数据项?', "警告", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning" type: "warning"
...@@ -856,11 +856,19 @@ export default { ...@@ -856,11 +856,19 @@ export default {
this.$refs["feedBookForm"].validate(valid => { this.$refs["feedBookForm"].validate(valid => {
if (valid) { if (valid) {
if (this.feedBookForm.workId != null) { if (this.feedBookForm.workId != null) {
//this.feedBookForm.workStatus = '2'; this.feedBookForm.workStatus = '2';
/*const param ={...this.feedBookForm};
param.workStatus = '2';*/
updateOrder(this.feedBookForm).then(response => { updateOrder(this.feedBookForm).then(response => {
if(response.code = 200){
this.msgSuccess("反馈成功"); this.msgSuccess("反馈成功");
this.feedBookOpen = false; this.feedBookOpen = false;
this.getList(); this.getList();
}
/*if(!this.feedBookOpen){
this.getList();
}*/
//this.getList();
}); });
} }
} }
......
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