diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..96a7795
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,27 @@
+node_modules
+.DS_Store
+/dist
+unpackage
+uni_modules
+
+# local env files
+.env.local
+.env.*.local
+.env.development
+
+# Log files
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+
+# Editor directories and files
+.idea
+.vscode
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
+
+.env.development
\ No newline at end of file
diff --git a/.hbuilderx/launch.json b/.hbuilderx/launch.json
new file mode 100644
index 0000000..d4a72df
--- /dev/null
+++ b/.hbuilderx/launch.json
@@ -0,0 +1,16 @@
+{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
+ // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
+ "version": "0.0",
+ "configurations": [{
+ "default" :
+ {
+ "launchtype" : "local"
+ },
+ "mp-alipay" :
+ {
+ "launchtype" : "local"
+ },
+ "type" : "uniCloud"
+ }
+ ]
+}
diff --git a/App.vue b/App.vue
new file mode 100644
index 0000000..700aa9d
--- /dev/null
+++ b/App.vue
@@ -0,0 +1,25 @@
+
+
+
diff --git a/api/baseUrl.js b/api/baseUrl.js
new file mode 100644
index 0000000..7a694cf
--- /dev/null
+++ b/api/baseUrl.js
@@ -0,0 +1,4 @@
+
+// 肖兴越开发环境
+const baseUrl = "https://paystubs.vip.cpolar.top"
+export default baseUrl
\ No newline at end of file
diff --git a/api/create.js b/api/create.js
new file mode 100644
index 0000000..cccc390
--- /dev/null
+++ b/api/create.js
@@ -0,0 +1,31 @@
+/*首页*/
+import { request, requestLogin } from "./index.js";
+
+// 登录
+export function getToken(authCode){
+ return requestLogin({
+ method: "GET",
+ url: `/login?code=${authCode}`,
+ data: {
+ },
+ Header1: {
+
+ }
+ })
+}
+// 获取用户信息
+export function getUser(authCode){
+ return request({
+ method: "get",
+ url: "/user",
+ data: {
+ },
+ })
+}
+// 获取绩效考勤统计
+export function getPerformanceAttendanceApi(year,month){
+ return request({
+ method: "get",
+ url: `/performance/attendance/detail/${year}/${month}`,
+ })
+}
\ No newline at end of file
diff --git a/api/index.js b/api/index.js
new file mode 100644
index 0000000..dcec410
--- /dev/null
+++ b/api/index.js
@@ -0,0 +1,114 @@
+
+import allUrl from "./baseUrl.js"
+// const baseUrl = bootUrl
+export function request ( optaions ) {
+ let { url, method, data, header1 } = optaions
+ method = method || "GET"
+ data = data || {}
+ let newData = {}
+ for( let key in data){
+ if( data[key] !== null && data[key] !== ''){
+ newData[key] = data[key]
+ }
+ }
+ data = newData || {}
+ header1 = header1 || {
+ Authorization: 'Bearer ' + uni.getStorageSync('token')
+ }
+ return new Promise((reslove,reject)=>{
+ uni.request({
+ url: allUrl + url,
+ method,
+ header: header1,
+ data,
+ success: (res) => {
+ if(res.data.errcode == 401 ){
+ uni.showToast({ title: '登录已失效,即将重新登录!', icon: 'none' });
+ uni.removeStorageSync('userInfo');
+ uni.removeStorageSync('token');
+ setTimeout(()=>{
+ uni.reLaunch({ url: '/pages/newHomePage/newHomePage' });
+ }, 1000);
+ }else if(res.data.errcode != 0){
+ console.log('不正确走的')
+ reject(res)
+ uni.showToast({ title: res.data.errmsg, icon: 'none', duration: 2000 });
+ }else {
+ reslove(res.data)
+ }
+
+ },
+ fail: (err) => {
+ console.log('请求失败',err)
+ uni.hideLoading()
+ if(err.statusCode == 401 ){
+ uni.showToast({ title: '登录已失效,即将重新登录!', icon: 'none' });
+ uni.removeStorageSync('userInfo');
+ uni.removeStorageSync('token');
+ setTimeout(()=>{
+ uni.reLaunch({ url: '/pages/newHomePage/newHomePage' });
+ }, 1000);
+ }
+ if(err.data.errcode == 401 ){
+ uni.showToast({ title: '登录已失效,即将重新登录!', icon: 'none' });
+ uni.removeStorageSync('userInfo');
+ uni.removeStorageSync('token');
+ setTimeout(()=>{
+ uni.reLaunch({ url: '/pages/newHomePage/newHomePage' });
+ }, 1000);
+ }else{
+ uni.showToast({ title: err.data.errmsg, icon: 'none' });
+ }
+ reject()
+ },
+ complete: () => {
+ setTimeout(()=>{
+ uni.hideLoading()
+ }, 2000)
+ }
+ })
+ })
+}
+
+
+export function requestLogin ( optaions ) {
+ let { url, method, data } = optaions
+ method = method || "GET"
+ data = data || {}
+ let newData = {}
+ for( let key in data){
+ if( data[key] !== null && data[key] !== ''){
+ newData[key] = data[key]
+ }
+ }
+ data = newData || {}
+ return new Promise((reslove,reject)=>{
+ uni.request({
+ url: allUrl + url,
+ method,
+ data,
+ success: (res) => {
+ if(res.statusCode == 401 ){
+ uni.showToast({ title: '登录已失效,即将返回首页!', icon: 'none' });
+ uni.removeStorageSync('userInfo');
+ uni.removeStorageSync('token');
+ setTimeout(()=>{
+ uni.reLaunch({ url: '/pages/newHomePage/newHomePage' });
+ }, 1000);
+ }else if(res.statusCode != 200){
+ reject(res)
+ uni.showToast({ title: res.data.msg, icon: 'none', duration: 2000 });
+ }else {
+ reslove(res.data)
+ }
+
+ },
+ fail: () => {
+ reject()
+ },
+ complete: () => {
+ uni.hideLoading()
+ }
+ })
+ })
+}
diff --git a/api/uploadImage.js b/api/uploadImage.js
new file mode 100644
index 0000000..b8b1af8
--- /dev/null
+++ b/api/uploadImage.js
@@ -0,0 +1,42 @@
+import baseUrl from "./baseUrl.js"
+
+export function uploadImage (urls,) {
+ return new Promise( (resovle, reject) =>{
+ let urlArr = []
+ for(let i = 0; i < urls.length; i ++){
+ uni.uploadFile({
+ url: baseUrl + '/file/upload',
+ fileName: 'file',
+ header: {
+ 'content-type': 'multipart/form-data'
+ },
+ fileType: "image", // 必填
+ filePath: urls[i],
+ success: (res) => {
+ urlArr.push(res.data)
+ if( urls.length == urlArr.length){
+ uni.hideLoading();
+ uni.showToast({ title: '上传成功', icon: 'success', duration: 2000 });
+ resovle(urlArr)
+ }
+ },
+ fail: (err) =>{
+ console.log('--------')
+ console.log(err)
+ uni.showToast({ title: '上传失败', icon: 'error', duration: 2000 });
+ uni.hideLoading();
+ uni.showModal({
+ title: '提示',
+ content: err.msg,
+ });
+ resovle([])
+ },
+ complete: () => {
+
+ }
+ });
+ }
+
+ })
+
+}
diff --git a/com/index.js b/com/index.js
new file mode 100644
index 0000000..7676293
--- /dev/null
+++ b/com/index.js
@@ -0,0 +1,84 @@
+
+/*
+ 表单验证
+ form为表单
+ rules为需要验证的表单
+ rules:{ name: '请输入名称' } name为需要验证的字段
+ */
+export function rulesFun ( form, rules ) {
+ console.log('-------------------------------')
+ let flage = true
+ let JSONrules = JSON.stringify(rules)
+ if(JSONrules !== JSON.stringify({})){
+ for( let key in rules){
+ if(Array.isArray( form[key] ) && form[key].length == 0 ){
+ uni.showToast({
+ title: rules[key],
+ })
+ flage = false
+ break;
+ }else if( !form[key] && form[key] !== 0 ){
+ uni.showToast({
+ title: rules[key],
+ })
+ flage = false
+ break;
+ }
+ }
+ }
+ return flage
+}
+
+/* 手机号验证 */
+export function rulesPhone ( phoneVal ) {
+ let phoneReg = /(^1\d{10}$)|(^[0-9]\d{7}$)/;
+ if(!phoneReg.test(phoneVal)) {
+ uni.showToast({
+ title: '请输入正确的手机号',
+ })
+ return false;
+ }else{
+ return true
+ }
+}
+
+/* 身份证验证 */
+export function rulesIdCard ( IdcardVal ) {
+ var idCardReg = /^(\d{15}$|^\d{18}$|^\d{17}(\d|X|x))$/;
+ if(!idCardReg.test(IdcardVal)) {
+ uni.showToast({
+ title: '身份证号码格式错误!',
+ })
+ return false;
+ } else{
+ return true
+ }
+}
+
+// 计算
+export function calculator ( startNum, endNum, operator = '+'){
+ if(operator == '+'){
+ return (Number(startNum * 1000) + Number(endNum * 1000)) / 1000
+ }else if( operator == '-' ){
+ return (Number(startNum * 1000) - Number(endNum * 1000)) / 1000
+ }else if( operator == '/' ){
+ return (Number(startNum * 1000) / Number(endNum * 1000)) / 1000
+ }else if( operator == '*' ){
+ return (Number(startNum * 1000) * Number(endNum * 1000)) / 1000
+ }
+}
+// timeStr表示时间 separator表示分隔符 type == yaer表示只返回年月日
+export function formatDate (timeStr = (new Date()), separator = '-', type){
+ const date = new Date(timeStr)
+ let yaer = date.getFullYear()
+ let month = date.getMonth() + 1
+ let day = date.getDate()
+ let hour = date.getHours()
+ let minute = date.getMinutes()
+ let second = date.getSeconds()
+ if(type == 'year'){
+ return yaer + separator + month + separator + day
+ }else {
+ return yaer + separator + month + separator + day + ' ' + hour + ':' + minute + ':' + second
+ }
+}
diff --git a/components/form/date-li.vue b/components/form/date-li.vue
new file mode 100644
index 0000000..1e6a753
--- /dev/null
+++ b/components/form/date-li.vue
@@ -0,0 +1,103 @@
+
+
+
+
+
+ * {{label}}
+
+ {{value}}
+ 请选择{{label}}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/components/form/input-li.vue b/components/form/input-li.vue
new file mode 100644
index 0000000..8a41373
--- /dev/null
+++ b/components/form/input-li.vue
@@ -0,0 +1,99 @@
+
+
+-->
+
+
+ * {{ label }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/components/form/select-li.vue b/components/form/select-li.vue
new file mode 100644
index 0000000..989c897
--- /dev/null
+++ b/components/form/select-li.vue
@@ -0,0 +1,122 @@
+
+
+
+
+
+
+ * {{ label }}
+
+
+
+ {{ array[index].name }}
+ 请选择{{label}}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..c3ff205
--- /dev/null
+++ b/index.html
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/main.js b/main.js
new file mode 100644
index 0000000..f9866a9
--- /dev/null
+++ b/main.js
@@ -0,0 +1,122 @@
+import App from './App'
+import Inputli from './components/form/input-li.vue';
+import Selectli from './components/form/select-li.vue';
+import Dateli from './components/form/date-li.vue';
+import { getToken,getUser } from './api/create.js'
+import { formatDate, calculator } from './com/index.js'
+
+// #ifndef VUE3
+import Vue from 'vue'
+Vue.config.productionTip = false
+Vue.prototype.a = '1234456'
+const msg = (title,icon = 'none', duration = 1500, mask = false, ) => {
+ //统一提示方便全局修改
+ if (Boolean(title) === false) {
+ return;
+ }
+ uni.showToast({
+ title,
+ duration,
+ mask,
+ icon
+ });
+}
+
+const setNavigationBar = ( title = '教育平台', backgroundColor = '#ffffff') =>{
+ my.setNavigationBar({
+ title,
+ backgroundColor
+ });
+}
+const navTo = (url, skip = 'navigateTo') =>{
+ uni[skip]({
+ url
+ });
+}
+const login = () => {
+ // uni.showLoading({
+ // mask: true,
+ // title: '登录中...'
+ // })
+ return new Promise((reslove, reject) => {
+ uni.getAuthCode({
+ success: (user) => {
+ getToken(user.authCode).then((res) => {
+ if (res.errcode == 0) {
+ uni.setStorageSync('token', res.result.token)
+ getUser().then(data => {
+ console.log(data)
+ uni.setStorageSync('user',data)
+ uni.hideLoading()
+ // uni.showToast({
+ // title: '登录成功',
+ // icon: 'success'
+ // })
+ })
+ reslove(res)
+ }
+ }).catch(err => {
+ uni.showToast({
+ title: '登录失败,服务器出错了',
+ icon: 'error'
+ })
+ })
+ },
+ })
+ })
+
+}
+// 提示框 点击确定进入resolve 取消进入reject
+const showModel = (content) =>{
+ return new Promise((resolve, reject)=>{
+ uni.showModal({
+ title: '提示',
+ content: content,
+ cancelText: '取消',
+ confirmText: '确定',
+ success: function (res) {
+ if (res.confirm) {
+ console.log('用户点击确定');
+ resolve('affirm')
+ } else if (res.cancel) {
+ console.log('用户点击取消');
+ reject('cancal')
+ }
+ }
+ });
+ })
+}
+
+Vue.prototype.$navTo = navTo //
+Vue.prototype.$msg = msg
+Vue.prototype.$setNavigationBar = setNavigationBar
+Vue.prototype.$login = login
+Vue.prototype.$calculator = calculator // 计算数
+Vue.prototype.$formatDate = formatDate // 日期格式修改
+Vue.prototype.$showModel = showModel // 提示框
+
+
+
+Vue.component("Inputli",Inputli)
+Vue.component("Selectli",Selectli)
+Vue.component("Dateli",Dateli)
+
+App.mpType = 'app'
+const app = new Vue({
+ ...App
+})
+app.$mount()
+// #endif
+
+
+
+
+// #ifdef VUE3
+import { createSSRApp } from 'vue'
+export function createApp() {
+ const app = createSSRApp(App)
+ return {
+ app
+ }
+}
+// #endif
\ No newline at end of file
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..f5ca3e6
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,73 @@
+{
+ "name": "template",
+ "appid": "__UNI__9F20DF1",
+ "description": "",
+ "versionName": "1.0.0",
+ "versionCode": "100",
+ "transformPx": false,
+ /* 5+App特有相关 */
+ "app-plus": {
+ "usingComponents": true,
+ "nvueStyleCompiler": "uni-app",
+ "compilerVersion": 3,
+
+ "splashscreen": {
+ "alwaysShowBeforeRender": true,
+ "waiting": true,
+ "autoclose": true,
+ "delay": 0
+ },
+ /* 模块配置 */
+ "modules": {},
+ /* 应用发布信息 */
+ "distribute": {
+ /* android打包配置 */
+ "android": {
+ "permissions": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ]
+ },
+ /* ios打包配置 */
+ "ios": {},
+ /* SDK配置 */
+ "sdkConfigs": {}
+ }
+ },
+ /* 快应用特有相关 */
+ "quickapp": {},
+ /* 小程序特有相关 */
+ "mp-weixin": {
+ "appid": "",
+ "setting": {
+ "urlCheck": false
+ },
+ "usingComponents": true
+ },
+ "mp-alipay": {
+ "usingComponents": true
+ },
+ "mp-baidu": {
+ "usingComponents": true
+ },
+ "mp-toutiao": {
+ "usingComponents": true
+ },
+ "uniStatistics": {
+ "enable": false
+ },
+ "vueVersion": "2"
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..6ea5c6e
--- /dev/null
+++ b/package.json
@@ -0,0 +1,5 @@
+{
+ "dependencies": {
+ "mini-smooth-signature": "^1.2.3"
+ }
+}
diff --git a/pages.json b/pages.json
new file mode 100644
index 0000000..898f92e
--- /dev/null
+++ b/pages.json
@@ -0,0 +1,98 @@
+{
+ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
+ // 示例模版页面
+ // {
+ // "path": "pages/index/index",
+ // "style": {
+ // // 顶部标题字
+ // "navigationBarTitleText": "uni-app",
+ // // 开启下拉加载
+ // "enablePullDownRefresh": true,
+ // // 下拉的距离触发下拉事件
+ // "pull-distance": 50,
+ // // 设置背景颜色
+ // "backgroundColor": "#ffffff",
+ // // 上拉触底的距离
+ // "onReachBottomDistance": 100
+ // }
+ // },
+ {
+ "path": "pages/homePage/homePage",
+ "style": {
+ // 顶部标题字
+ "navigationBarTitleText": "uni-app",
+ // 开启下拉加载
+ "enablePullDownRefresh": true,
+ // 下拉的距离触发下拉事件
+ "pull-distance": 50,
+ // 设置背景颜色
+ "backgroundColor": "#ffffff",
+ // 上拉触底的距离
+ "onReachBottomDistance": 100
+ }
+ }
+ ,{
+ "path" : "pages/attendanceManagement/attendanceManagement",
+ "style" :
+ {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false
+ }
+
+ }
+ ,{
+ "path" : "pages/salaryDetails/salaryDetails",
+ "style" :
+ {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false
+ }
+
+ }
+
+ ,{
+ "path" : "pages/sign/sign",
+ "style" :
+ {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false
+ }
+
+ }
+ ],
+ "subPackages": [
+ {
+ "root":"subPackages",
+ "pages":[{
+ "path" : "sub/sub",
+ "style" :
+ {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false
+ }
+
+ }
+ ]
+ }
+ ],
+ "globalStyle": {
+ "navigationBarTextStyle": "black",
+ "navigationBarTitleText": "uni-app",
+ "navigationBarBackgroundColor": "#F8F8F8",
+ "backgroundColor": "#F8F8F8"
+ },
+ "uniIdRouter": {},
+ "uni-app": {
+ "scripts": {
+ "mp-dingtalk": {
+ "title": "钉钉小程序",
+ "env": {
+ "UNI_PLATFORM": "mp-alipay"
+ },
+ "define": {
+ "MP-DINGTALK": true
+ }
+ }
+ }
+ }
+}
diff --git a/pages/attendanceManagement/attendanceManagement.vue b/pages/attendanceManagement/attendanceManagement.vue
new file mode 100644
index 0000000..3b388c2
--- /dev/null
+++ b/pages/attendanceManagement/attendanceManagement.vue
@@ -0,0 +1,516 @@
+
+
+
+
+
+ {{ selectedYear }}年{{ selectedMonth < 10 ? '0' + selectedMonth : selectedMonth }}月
+
+
+ 月度
+
+
+
+
+ 打卡统计
+
+
+ 迟到
+ {{ attendanceData.late }}次
+
+
+ 严重迟到
+ {{ attendanceData.seriousLate }}次
+
+
+ 旷工
+ {{ attendanceData.absenteeism }}次
+
+
+ 早退
+ {{ attendanceData.early }}次
+
+
+ 未打卡
+ {{ attendanceData.absenceCount }}次
+
+
+ 未签到签退
+ {{ attendanceData.missedCount }}次
+
+
+ 未提交日志
+ {{ attendanceData.missingLogCount }}次
+
+
+
+
+
+
+ 请假统计
+
+
+ 事假
+ {{ attendanceData.personalLeave }}小时
+
+
+ 病假
+ {{ attendanceData.sickLeave }}天
+
+
+ 婚假
+ {{ attendanceData.marriageLeave }}天
+
+
+ 产假
+ {{ attendanceData.maternityLeave }}天
+
+
+ 陪产假
+ {{ attendanceData.paternityLeave }}天
+
+
+ 丧假
+ {{ attendanceData.bereavementLeave }}天
+
+
+ 年休假
+ {{ attendanceData.annualLeave }}天
+
+
+ 年休假(管理岗)
+ {{ attendanceData.managementAnnualLeave }}天
+
+
+
+
+
+
+ 加班、调休统计
+
+
+ 节假日加班
+ {{ attendanceData.holidayOvertime }}小时
+
+
+ 休息日加班
+ {{ attendanceData.restdayOvertime }}小时
+
+
+ 工作日加班
+ {{ attendanceData.workdayOvertime }}小时
+
+
+
+
+
+
+ 说明:请核实当月考勤记录,确认无误请签字确认
+
+
+
+
+
+ 员工签字
+ /保留员工签字
+
+
+
+
+
+
+ 签字确认
+
+
+
+
+ {{ currentStep === 'year' ? '选择年份' : '选择月份' }}
+
+
+
+
+
+ {{ year }}年
+
+
+
+
+
+
+
+
+ {{ tempSelectedYear }}年{{ month < 10 ? '0' + month : month }}月
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/homePage/homePage.vue b/pages/homePage/homePage.vue
new file mode 100644
index 0000000..3540bb9
--- /dev/null
+++ b/pages/homePage/homePage.vue
@@ -0,0 +1,343 @@
+
+
+
+
+
+
+ {{ thisYear }}年{{ thisMonth }}月考勤统计
+
+ 查看详情
+
+
+
+
+
+
+
+
+
+ {{ selectedYear }}年{{ selectedMonth < 10 ? '0' + selectedMonth : selectedMonth }}月工资条
+
+ ⚠
+ 工资表为系统自动生成,如有疑问请联系财务部门
+
+
+ 查看明细
+
+
+
+
+
+ {{ currentStep === 'year' ? '选择年份' : '选择月份' }}
+
+
+
+
+
+ {{ year }}年
+
+
+
+
+
+
+
+
+ {{ tempSelectedYear }}年{{ month < 10 ? '0' + month : month }}月
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/index/index.vue b/pages/index/index.vue
new file mode 100644
index 0000000..5666a47
--- /dev/null
+++ b/pages/index/index.vue
@@ -0,0 +1,153 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/salaryDetails/salaryDetails.vue b/pages/salaryDetails/salaryDetails.vue
new file mode 100644
index 0000000..417d4ee
--- /dev/null
+++ b/pages/salaryDetails/salaryDetails.vue
@@ -0,0 +1,260 @@
+
+
+
+
+ 2025年04月实发工资
+ 3000.00
+ 感谢您为公司的付出,辛苦了
+
+
+
+
+ 收入项目
+
+
+ 基本工资
+ 2500
+
+
+ 年度绩效奖金
+ 500
+
+
+ 月度绩效奖金
+ 500
+
+
+ 其他奖金
+ 1000
+
+
+ 总经理补贴
+ 0
+
+
+ 交通补贴
+ 50
+
+
+ 其他补贴
+ 0
+
+
+ 工龄工资
+ 50
+
+
+ 加班工资
+ 0
+
+
+ 应发小计
+ 5000
+
+
+
+
+
+
+ 扣除项目
+
+
+ 年度绩效奖金
+ 2500
+
+
+ 月度绩效奖金
+ 500
+
+
+ 事假
+ 500
+
+
+ 病假
+ 1000
+
+
+ 婚假、丧假、陪产假
+ 0
+
+
+ 迟到、早退
+ 50
+
+
+ 签到、签退
+ 0
+
+
+ 缺卡
+ 50
+
+
+ 旷工
+ 0
+
+
+ 违纪
+ 0
+
+
+
+
+
+
+ 福利
+
+
+ 基本养老
+ 2500
+
+
+ 失业保险
+ 500
+
+
+ 基本医疗
+ 500
+
+
+ 大额医疗
+ 1000
+
+
+ 住房公积金
+ 0
+
+
+
+
+
+
+ 其他
+
+
+ 其他扣款
+ 2500
+
+
+ 个税
+ 500
+
+
+ 扣款小计
+ 2000
+
+
+
+
+
+ 备注
+
+
+
+
+
+
diff --git a/pages/sign/sign.vue b/pages/sign/sign.vue
new file mode 100644
index 0000000..ccfad5a
--- /dev/null
+++ b/pages/sign/sign.vue
@@ -0,0 +1,216 @@
+
+
+
+
+
+ 请在空白区域内横向签字
+
+ 清空
+ 确认
+
+
+
+
+
+
+
diff --git a/static/WorkAtt.png b/static/WorkAtt.png
new file mode 100644
index 0000000..f469cb4
Binary files /dev/null and b/static/WorkAtt.png differ
diff --git a/static/arr.png b/static/arr.png
new file mode 100644
index 0000000..9833595
Binary files /dev/null and b/static/arr.png differ
diff --git a/static/logo.png b/static/logo.png
new file mode 100644
index 0000000..b5771e2
Binary files /dev/null and b/static/logo.png differ
diff --git a/static/money.png b/static/money.png
new file mode 100644
index 0000000..031b058
Binary files /dev/null and b/static/money.png differ
diff --git a/subPackages/sub/sub.vue b/subPackages/sub/sub.vue
new file mode 100644
index 0000000..5e014bf
--- /dev/null
+++ b/subPackages/sub/sub.vue
@@ -0,0 +1,17 @@
+
+
+ 12355555555555
+
+
+
+
+
+
+
diff --git a/uni.scss b/uni.scss
new file mode 100644
index 0000000..a05adb4
--- /dev/null
+++ b/uni.scss
@@ -0,0 +1,76 @@
+/**
+ * 这里是uni-app内置的常用样式变量
+ *
+ * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
+ * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
+ *
+ */
+
+/**
+ * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
+ *
+ * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
+ */
+
+/* 颜色变量 */
+
+/* 行为相关颜色 */
+$uni-color-primary: #007aff;
+$uni-color-success: #4cd964;
+$uni-color-warning: #f0ad4e;
+$uni-color-error: #dd524d;
+
+/* 文字基本颜色 */
+$uni-text-color:#333;//基本色
+$uni-text-color-inverse:#fff;//反色
+$uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息
+$uni-text-color-placeholder: #808080;
+$uni-text-color-disable:#c0c0c0;
+
+/* 背景颜色 */
+$uni-bg-color:#ffffff;
+$uni-bg-color-grey:#f8f8f8;
+$uni-bg-color-hover:#f1f1f1;//点击状态颜色
+$uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色
+
+/* 边框颜色 */
+$uni-border-color:#c8c7cc;
+
+/* 尺寸变量 */
+
+/* 文字尺寸 */
+$uni-font-size-sm:12px;
+$uni-font-size-base:14px;
+$uni-font-size-lg:16;
+
+/* 图片尺寸 */
+$uni-img-size-sm:20px;
+$uni-img-size-base:26px;
+$uni-img-size-lg:40px;
+
+/* Border Radius */
+$uni-border-radius-sm: 2px;
+$uni-border-radius-base: 3px;
+$uni-border-radius-lg: 6px;
+$uni-border-radius-circle: 50%;
+
+/* 水平间距 */
+$uni-spacing-row-sm: 5px;
+$uni-spacing-row-base: 10px;
+$uni-spacing-row-lg: 15px;
+
+/* 垂直间距 */
+$uni-spacing-col-sm: 4px;
+$uni-spacing-col-base: 8px;
+$uni-spacing-col-lg: 12px;
+
+/* 透明度 */
+$uni-opacity-disabled: 0.3; // 组件禁用态的透明度
+
+/* 文章场景相关 */
+$uni-color-title: #2C405A; // 文章标题颜色
+$uni-font-size-title:20px;
+$uni-color-subtitle: #555555; // 二级标题颜色
+$uni-font-size-subtitle:26px;
+$uni-color-paragraph: #3F536E; // 文章段落颜色
+$uni-font-size-paragraph:15px;