Commit bf4201fe authored by youjie's avatar youjie

no message

parent ce8662d9
......@@ -347,7 +347,7 @@
<div class="row-c cursor-pointer radius5 change py5" @click="goRoomDetails(item,'订房详情')">
<span class="c059FF6">明细/编辑</span>
</div>
<div v-if="item.OrderStatus==1" class="row-c cursor-pointer radius5 change1 py5"
<div v-if="item.OrderStatus==2" class="row-c cursor-pointer radius5 change1 py5"
@click="clickRightButtom(item,2)">
<i v-loading="loading2"></i>
<span class="c20C997">收损</span>
......@@ -505,14 +505,17 @@
//提交
submitForm(msg) {
//提交创建、修改表单
this.$refs[msg].validate(valid => {
if (valid) {
this.saveUpdate();
} else {
// this.Error("请完成必填项");
return false;
}
});
this.$refs[msg].validate(valid => {
if (valid) {
if(!this.loading2){
this.saveUpdate();
}
} else {
// this.Error("请完成必填项");
return false;
}
});
},
saveUpdate(){
this.$confirm("是否确认设置收损?", "提示", {
......
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