1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <view class="changyong-list">
- <view class="changyong-item u-flex u-col-top" v-for="(item,index) in 5" :key="index">
- <view class="item-text u-flex-1">
- 我目前正在看机会,对这个职位很感兴趣,希望可以详聊~
- </view>
- <image src="static/edit.png" mode=""></image>
- <image src="static/del.png" mode=""></image>
- </view>
- <view class="changyong-down">
- <view class="u-flex u-row-center changyong-btn">
- <text @click="toadd">添加常用语</text>
- </view>
- <view class="safe-area-inset-bottom"></view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- methods: {
- toadd() {
- uni.navigateTo({
- url: "/pagesC/changyong-add"
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .changyong-list {
- padding: 0 32rpx;
- .changyong-down {
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 99;
- background-color: #fff;
- box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.1);
- width: 750rpx;
- .changyong-btn {
- padding: 16rpx 0;
- text {
- width: 686rpx;
- line-height: 88rpx;
- background: #0C66C2;
- border-radius: 12rpx;
- text-align: center;
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- }
- }
- }
- .changyong-item {
- padding: 32rpx 0;
- border-bottom: 2rpx solid #F0F0F0;
- .item-text {
- margin-right: 16rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #222222;
- }
- image {
- width: 40rpx;
- height: 40rpx;
- margin-left: 32rpx;
- }
- }
- }
- </style>
|