1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <template>
- <view class="login">
- <view class="content">
- <view class="border-customl">
- <view class="border-boke">
- <view class="sawda" @click="Waereroter">
- <uni-icons
- type="calendar-filled"
- color="#ff0505"
- size="45"></uni-icons>
- <text style="margin-top: 5px">出库</text>
- </view>
- </view>
- </view>
- <!-- 主体表单 -->
- </view>
- </view>
- </template>
- <script>
- let _this;
- export default {
- data() {
- return { dynamicTitle: "出库" };
- },
- onLoad() {
- uni.setNavigationBarTitle({
- title: this.dynamicTitle,
- success: () => {
- console.log("修改标题成功");
- },
- fail: () => {
- console.log("修改标题失败");
- },
- complete: () => {
- console.log("修改标题结束");
- },
- });
- },
- mounted() {
- _this = this;
- //this.isLogin();
- },
- methods: {
- Waereroter() {
- uni.navigateTo({
- url: "/pages/index/search/Outbound/Outbound",
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .border-customl {
- display: flex;
- flex-wrap: wrap;
- .border-boke {
- border: 1px solid #e5e5e5;
- width: 30%;
- height: 6rem;
- background: white;
- justify-content: center;
- display: flex;
- align-items: center;
- .sawda {
- position: absolute;
- display: grid;
- text-align: center;
- }
- }
- }
- </style>
|