ef1a610f by 任超

style:样式修改

1 parent ba99dddd
......@@ -5,4 +5,4 @@ NODE_ENV=development
VUE_APP_BASE_API = '/bdcdj'
# 开发环境
VUE_APP_API_BASE_URL = 'http://192.168.2.95:8018'
VUE_APP_API_BASE_URL = 'http://192.168.2.88:8018'
......
......@@ -2,7 +2,7 @@
@mixin colorBtn($color) {
background: $color;
color:#fff;
color: #fff;
&:hover {
color: #fff;
......@@ -99,15 +99,9 @@
font-size: 14px;
border-radius: 4px;
}
// 搜索框按钮的位置
.btnCol{
.btnCol {
box-sizing: border-box;
text-align: right;
}
\ No newline at end of file
// 默认白色按钮样式
.el-button--default{
background: #FBFCFD;
border: 1px solid #E4EBF4;
border-radius: 4px;
}
......
......@@ -123,6 +123,7 @@
left: 0%;
}
.topButton {
@include flex;
width: 100%;
......
......@@ -144,6 +144,9 @@ export default {
operation (index, item) {
let that = this;
switch (item.value) {
case "lct":
console.log(2222222222);
break;
case "zsyl":
this.zsylFlag = true;
break;
......@@ -239,8 +242,6 @@ export default {
h("i", { style: "color: teal" }, obj.usernames.join(",")),
]),
showCancelButton: true,
confirmButtonText: "确定",
cancelButtonText: "取消",
beforeClose: (action, instance, done) => {
if (action === "confirm") {
instance.confirmButtonLoading = true;
......@@ -267,10 +268,10 @@ export default {
}).then((action) => {
this.$message({
type: "info",
message: "action: " + action,
});
});
},
},
};
message: "action: " + action
})
})
}
}
}
</script>
\ No newline at end of file
......