zhangwei
2024-08-20 ef1114c22614762e54e49bc7c600d2a2cd460791
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<template>
    <view class="full-page">
        <up-sticky>
            <view class="coreshop-ff content c-p-10">
                <up-search placeholder="请点击选择日期" v-model="value15" search-icon="calendar"></up-search>
            </view>
            <up-subsection :list="list" :current="current4" activeColor="#f9ae3d"
                @change="sectionChange"></up-subsection>
        </up-sticky>
        <view class="listrecord c-p-20">
            <view class="coreshop-ff chuany-bradius20">
                <view class="bgblue c-p-18 chuany-flex chuany-justify-between chuany-font34 chuany-text-bold">
                    <text class=''>
                        日期:2024-08-12
                    </text>
                </view>
                <view class="c-p-26">
                    <view class="chuany-flex chuany-justify-between">
                        <text class="chuany-font34 chuany-text-bold">
                            临时工
                        </text>
                        <view class="chuany-flex chuany-justify-between">
                            <!-- <text class="c-p-r-20">
                                
                            </text> -->
                            <up-tag class='c-m-r-10' text="已结算" shape="circle" type="success" plain plainFill size='mini'></up-tag>
                            <up-tag text="已确认" shape="circle" type="success" plain plainFill size='mini'></up-tag>
                        </view>
                    </view>
                    <view class="c-p-t-20">
                        打卡记录:08:00-12:00 13:00-17:00
                    </view>
                    <view class="chuany-flex chuany-justify-between c-p-t-20">
                        <text class="chuany-width50">
                            工作时长:8小时
                        </text>
                        <view class="chuany-width50">
                            <text>
                                方式:计时
                            </text>
                        </view>
                    </view>
                    <view class="chuany-flex chuany-justify-between c-p-t-20">
                        <text class="chuany-width50">
                            工价:17元/小时
                        </text>
                        <view class="chuany-width50">
                            <text>
                                当日工资:136元
                            </text>
                        </view>
                    </view>
                </view>
            </view>
        </view>
        <view class="listrecord c-p-20">
            <view class="coreshop-ff chuany-bradius20">
                <view class="bgblue c-p-18 chuany-flex chuany-justify-between chuany-font34 chuany-text-bold">
                    <text class=''>
                        日期:2024-08-12
                    </text>
                </view>
                <view class="c-p-26">
                    <view class="chuany-flex chuany-justify-between">
                        <text class="chuany-font34 chuany-text-bold">
                            临时工
                        </text>
                        <view class="chuany-flex chuany-justify-between">
                            <!-- <text class="c-p-r-20">
                                
                            </text> -->
                            <up-tag class='c-m-r-10' text="未结算" shape="circle" type="warning" plain plainFill size='mini'></up-tag>
                            <up-tag text="未确认" shape="circle" type="warning" plain plainFill size='mini'></up-tag>
                        </view>
                    </view>
                    <view class="c-p-t-20">
                        打卡记录:08:00-12:00 13:00-17:00
                    </view>
                    <!-- <view class="chuany-flex chuany-justify-between c-p-t-20">
                        
                    </view> -->
                    <view class="chuany-flex chuany-justify-between chuany-flex-wrap c-p-t-20">
                        <text class="chuany-width50">
                            工作时长:8小时
                        </text>
                        <view class="chuany-width50">
                            <text>
                                方式:计件
                            </text>
                        </view>
                        <text class="chuany-width50 c-p-t-20">
                            工价:0.5元/件
                        </text>
                        <view class="chuany-width50 chuany-flex c-p-t-20">
                            <text>
                                数量:
                            </text>
                            <up-input style="padding: 0;" size='mini' border="surround"></up-input>
                        </view>
                        <view class="chuany-width50 c-p-t-20">
                            <text>
                                当日工资:136元
                            </text>
                        </view>
                        <view class="chuany-width50 c-p-t-20">
                            <view class="chuany-width10">
                                <up-button class="button-layout__item" text="工资申报" size="mini" type="warning"></up-button>
                            </view>
                        </view>
                    </view>
                </view>
            </view>
        </view>
 
    </view>
</template>
 
<script setup>
    import {
        ref
    } from 'vue'
    let value15 = ref('')
    const list = ref(['全部', '未结算', '已结算']);
    const sectionChange = (index) => {
        current4.value = index;
    }
</script>
 
<style>
    .content {
        /* width: 100%; */
        box-sizing: border-box;
    }
 
    .bgblue {
        background-color: #4e96f5;
        border-radius: 20rpx 20rpx 0 0;
        color: #fff;
    }
 
    .listrecord {
        width: 100%;
        box-sizing: border-box;
    }
</style>