|
|
@@ -27,7 +27,7 @@
|
|
|
placeholder="请输入货主名称/联系人/联系人手机号"
|
|
|
prefix-icon="el-icon-search"
|
|
|
v-model="term"
|
|
|
- style="height: 32px; width: 330px; line-height: 32px"
|
|
|
+ style="width: 330px"
|
|
|
></el-input>
|
|
|
<div class="seach-btn" @click="getVoyageList()">查询</div>
|
|
|
</div>
|
|
|
@@ -109,7 +109,7 @@
|
|
|
</template>
|
|
|
<script>
|
|
|
import { ref, h, reactive, toRefs, onMounted } from "vue";
|
|
|
-import { Notification, Msgbox, Message } from "element3";
|
|
|
+import { ElNotification, ElMessageBox, ElMessage } from "element-plus";
|
|
|
import store from "../../store";
|
|
|
import router from "../../router";
|
|
|
import md5 from "md5";
|
|
|
@@ -205,10 +205,6 @@ export default {
|
|
|
text-align: center;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
-:deep().el-input__icon {
|
|
|
- line-height: 100% !important;
|
|
|
-}
|
|
|
-
|
|
|
:deep().el-dialog {
|
|
|
width: 560px;
|
|
|
padding: 20px 50px;
|
|
|
@@ -246,10 +242,10 @@ export default {
|
|
|
}
|
|
|
|
|
|
.radio-btns {
|
|
|
- height: 34px;
|
|
|
+ height: 38px;
|
|
|
width: 103px;
|
|
|
border: 1px solid #1486f9;
|
|
|
- line-height: 34px;
|
|
|
+ line-height: 38px;
|
|
|
text-align: center;
|
|
|
font-size: 14px;
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
|
@@ -259,13 +255,13 @@ export default {
|
|
|
}
|
|
|
|
|
|
.left-radius {
|
|
|
- border-top-left-radius: 17px;
|
|
|
- border-bottom-left-radius: 17px;
|
|
|
+ border-top-left-radius: 19px;
|
|
|
+ border-bottom-left-radius: 19px;
|
|
|
}
|
|
|
|
|
|
.right-radius {
|
|
|
- border-top-right-radius: 17px;
|
|
|
- border-bottom-right-radius: 17px;
|
|
|
+ border-top-right-radius: 19px;
|
|
|
+ border-bottom-right-radius: 19px;
|
|
|
}
|
|
|
.currentbtn {
|
|
|
background: #1486f9;
|
|
|
@@ -275,7 +271,7 @@ export default {
|
|
|
.seach-btn {
|
|
|
display: inline-block;
|
|
|
width: 60px;
|
|
|
- height: 32px;
|
|
|
+ height: 38px;
|
|
|
background: #0094fe;
|
|
|
border-radius: 2px;
|
|
|
font-size: 14px;
|
|
|
@@ -283,25 +279,21 @@ export default {
|
|
|
font-weight: 400;
|
|
|
color: #ffffff;
|
|
|
text-align: center;
|
|
|
- line-height: 32px;
|
|
|
+ line-height: 38px;
|
|
|
margin-left: 10px;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
|
|
|
-:deep().el-input__icon {
|
|
|
- line-height: 100% !important;
|
|
|
-}
|
|
|
-
|
|
|
.voyage-add {
|
|
|
width: 80px;
|
|
|
- height: 32px;
|
|
|
+ height: 36px;
|
|
|
border-radius: 2px;
|
|
|
border: 1px solid #0094fe;
|
|
|
font-size: 14px;
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #0094fe;
|
|
|
- line-height: 32px;
|
|
|
+ line-height: 36px;
|
|
|
text-align: center;
|
|
|
cursor: pointer;
|
|
|
}
|