diff --git a/api/common.js b/api/common.js
index c1394d3..c2ec5aa 100644
--- a/api/common.js
+++ b/api/common.js
@@ -58,6 +58,25 @@ export default {
},
+ //考勤列表 --分页
+ clocking_list(data) {
+ let url = `/member/clocking_list`
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
+
+ //考勤-请假
+ clockingRest(data) {
+ let url = `/member/clocking_rest`
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
+
+
+
+
}
\ No newline at end of file
diff --git a/pages/common/contract_list.vue b/pages/common/contract_list.vue
index f117194..4bdbeb8 100644
--- a/pages/common/contract_list.vue
+++ b/pages/common/contract_list.vue
@@ -16,16 +16,24 @@
:key="k"
@click="openViewArticleInfo(v)"
>
- {{v.title}}
-
-
-
-
-
-
-
-
- {{v.show_time}}
+
+ 企业合同
+ 下载合同
+
+
+
+ 合同名称:
+ 海口晟誉网络科技有限责任公司入驻协议
+
+
+ 签署方:
+ 共商同祺(北京)商务有限公司(刘天吴)
+
+
+ 签署方:
+ 海口晟誉网络科技有限责任公司(王泽彦)
+
+
@@ -187,29 +195,38 @@ export default {
margin-bottom: 38rpx;
display: flex;
flex-direction: column;
-
padding: 32rpx 24rpx;
border-radius: 14rpx;
- background-color: rgba(255,255,255,1);
- border: 2rpx solid rgba(187,187,187,1);
-
- color: #4F4F4F;
- font-size: 32rpx;
-
- .title{
- }
- .img_box{
- margin-top: 30rpx;
- width: 100%;
- }
- .content{
- margin-top: 30rpx;
+ background-color: #434544;
+ color: #fff;
+ .top{
+ font-size: 28rpx;
+ display: flex;
+ justify-content: space-between;
+ .btn{
+ display: flex;
+ align-items: center;
+ color: #29D3B4;
+ }
}
- .time{
+ .bottom{
+ font-size: 26rpx;
+ margin-top: 25rpx;
display: flex;
- justify-content: flex-end;
- margin-top: 36rpx;
+ flex-direction: column;
+ gap: 15rpx;
+ .box{
+ display: flex;
+ justify-content: space-between;
+ .title{
+ width: 180rpx;
+ }
+ .content{
+ width: 100%;
+ }
+ }
}
+
}
}