|
@@ -54,7 +54,7 @@
|
|
|
</el-table>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<span style="font-size:12px;color:red;" v-show="finished">请处理所有冲突</span>
|
|
|
- <el-button size="small">取消</el-button>
|
|
|
+ <el-button size="small" @click="handleClose">取消</el-button>
|
|
|
<el-button size="small" type="primary" @click="userSelected">使用选择的表号功能号</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
@@ -75,6 +75,7 @@ export default {
|
|
|
tableData: [],
|
|
|
activeName: "first", //当前所在tab页
|
|
|
finished: false, //未处理所有冲突提示文字
|
|
|
+ force: false, //请求冲突-默认false
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -87,7 +88,10 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
handleClick() { },
|
|
|
- handleClose(done) { },
|
|
|
+ handleClose() {
|
|
|
+ this.dialogVisible = false;
|
|
|
+ this.$emit('cancel')
|
|
|
+ },
|
|
|
//检查是否处理完所有冲突
|
|
|
userSelected() {
|
|
|
let flag = true;
|