|
|
|
|
<!--
|
|
|
|
|
* @Author: zhou lei
|
|
|
|
|
* @Date: 2021-12-14 09:59:02
|
|
|
|
|
* @LastEditTime: 2022-01-20 11:53:51
|
|
|
|
|
* @LastEditors: zhou lei
|
|
|
|
|
* @Description:
|
|
|
|
|
* @FilePath: /wms_haiwai_app/src/App.vue
|
|
|
|
|
* 联系方式:910592680@qq.com 18669792120 科海达信息技术有限公司
|
|
|
|
|
-->
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
// #endif
|
|
|
|
|
export default Vue.extend({
|
|
|
|
|
mpType: 'app',
|
|
|
|
|
onLaunch() {
|
|
|
|
|
console.log('App Launch');
|
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
//checkAppUpdate();
|
|
|
|
|
// #endif
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
console.log('App Show');
|
|
|
|
|
},
|
|
|
|
|
onHide() {
|
|
|
|
|
console.log('App Hide');
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
|
|
|
|
|
@import '~uview-ui/index.scss';
|
|
|
|
|
|
|
|
|
|
/*每个页面公共css */
|
|
|
|
|
page {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.library {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
.library-left {
|
|
|
|
|
width: 45%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
view {
|
|
|
|
|
// width: 120rpx;
|
|
|
|
|
line-height: 100rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search {
|
|
|
|
|
padding-left: 30px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.library-right {
|
|
|
|
|
width: 55%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
.library-right-title {
|
|
|
|
|
width: 140rpx;
|
|
|
|
|
height: 100%;
|
|
|
|
|
line-height: 100rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input {
|
|
|
|
|
width: 200rpx;
|
|
|
|
|
height: 70rpx;
|
|
|
|
|
margin-top: 15rpx;
|
|
|
|
|
margin-left: 15rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// .uni-input-input:disabled{
|
|
|
|
|
// background:red;
|
|
|
|
|
// }
|
|
|
|
|
// .uni-input-input[disabled] {
|
|
|
|
|
// //background: rgb(233 231 231 / 38%);
|
|
|
|
|
// background-color: #ffffff;;
|
|
|
|
|
// color: rgb(158, 157, 157);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
.u-mode-center-box {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.uni-modal {
|
|
|
|
|
z-index: 20000;
|
|
|
|
|
}
|
|
|
|
|
uni-modal {
|
|
|
|
|
z-index: 19000;
|
|
|
|
|
}
|
|
|
|
|
.pickerMask {
|
|
|
|
|
z-index: 30000 !important;
|
|
|
|
|
}
|
|
|
|
|
</style>
|