From 6a7ee9735a663d363377ae0d1b030228330e41a1 Mon Sep 17 00:00:00 2001 From: wangxia <779219182@qq.com> Date: Sat, 18 Mar 2023 18:10:39 +0800 Subject: [PATCH] 1 --- src/App.vue | 7 +- src/components/FirstJob/recordBill.vue | 448 +++++---------------- .../userinfo/usercenter/components/mybill.vue | 158 +++++--- .../userinfo/usercenter/components/townsman.vue | 332 ++++++++++++++- src/style/index.less | 240 ++++++----- src/style/index.wxss | 23 +- 6 files changed, 708 insertions(+), 500 deletions(-) diff --git a/src/App.vue b/src/App.vue index 92647c5..db7e557 100644 --- a/src/App.vue +++ b/src/App.vue @@ -33,7 +33,7 @@ export default { }; diff --git a/src/components/FirstJob/recordBill.vue b/src/components/FirstJob/recordBill.vue index dde7f8a..95df57b 100644 --- a/src/components/FirstJob/recordBill.vue +++ b/src/components/FirstJob/recordBill.vue @@ -13,16 +13,14 @@ - - - + }} + + {{ i.userName }} - 修改 + }" v-if="isMaster && proxyStatus !== 'proxy'">修改 - +
{{ firminfo.aliasName }} - - + + {{ i.aliasName }} - 修改 + }" v-if="isMaster && storeStatus !== 'store'">修改
- +
{{ firminfo.jobName }} - - + + {{ i.aliasName }} - 修改 + }" v-if="isMaster && jobnameStatus !== 'jobname'">修改
- - - + + + - - - + + + - - + + - + -
+ " class="nloding">
上传证件
-
- + " class="uploading"> +
上传中
- +
- - + + - - + + @@ -344,64 +165,22 @@ - - + + - - - {{ item.name }} + + + {{ item.name }} - - + + - + - +
{{ form.policy }}
- 展开收起 + 展开收起
- - + + " @preview="handlePreview" :beforeUpload="beforeUpload" :data="dataObj"> 上传
- + }"> 取消 - + " @click="handleOk" :loading="confirmLoading"> 提交
- + example @@ -850,33 +591,54 @@ export default { //"S": val.getMilliseconds() //毫秒 //"q+": Math.floor((val.getMonth() + 3) / 3) //季度 }; - if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (value.getFullYear() + "").substr(4 - RegExp.$1.length)); + if (/(y+)/.test(fmt)) + fmt = fmt.replace( + RegExp.$1, + (value.getFullYear() + "").substr(4 - RegExp.$1.length) + ); for (var k in o) { if (new RegExp("(" + k + ")").test(fmt)) { - fmt = fmt.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length)); + fmt = fmt.replace( + RegExp.$1, + RegExp.$1.length == 1 + ? o[k] + : ("00" + o[k]).substr(("" + o[k]).length) + ); } } return fmt; }, getDateinfo() { this.isShow = true; - if(isEmptyCheck(this.form.interviewTime)) {//设置默认值 + if (isEmptyCheck(this.form.interviewTime)) { + //设置默认值 //判断当前时间是不是在16:00之后,如果在16:00之后,默认显示次日09:00,如果在16:00之前,则显示下一个整点时间 var mydate = new Date(); var tomorrow = new Date(); tomorrow.setDate(tomorrow.getDate() + 1); - this.form.interviewTime = mydate.toTimeString() >= '16:00' ? (this.formatDateYMD(tomorrow.toLocaleDateString()) + " " + "09:00") : (this.formatDateYMD(mydate.toLocaleDateString()) + " " + `${mydate.getHours() + 1}:00`); + this.form.interviewTime = + mydate.toTimeString() >= "16:00" + ? this.formatDateYMD(tomorrow.toLocaleDateString()) + " " + "09:00" + : this.formatDateYMD(mydate.toLocaleDateString()) + + " " + + `${mydate.getHours() + 1}:00`; } console.log(this.form.interviewTime); }, getDateinfo1() { this.isShow1 = true; - if(isEmptyCheck(this.form.receptionTime)) {//设置默认值 + if (isEmptyCheck(this.form.receptionTime)) { + //设置默认值 //判断当前时间是不是在16:00之后,如果在16:00之后,默认显示次日09:00,如果在16:00之前,则显示下一个整点时间 var mydate = new Date(); var tomorrow = new Date(); tomorrow.setDate(tomorrow.getDate() + 1); - this.form.receptionTime = mydate.toTimeString() >= '16:00' ? (this.formatDateYMD(tomorrow.toLocaleDateString()) + " " + "09:00") : (this.formatDateYMD(mydate.toLocaleDateString()) + " " + `${mydate.getHours() + 1}:00`); + this.form.receptionTime = + mydate.toTimeString() >= "16:00" + ? this.formatDateYMD(tomorrow.toLocaleDateString()) + " " + "09:00" + : this.formatDateYMD(mydate.toLocaleDateString()) + + " " + + `${mydate.getHours() + 1}:00`; } console.log(this.form.receptionTime); }, @@ -1324,34 +1086,34 @@ export default { } } -/deep/ .ant-radio { - border-color: #ddd; - box-shadow: none; +// /deep/ .ant-radio { +// border-color: #ddd; +// box-shadow: none; - &:after { - display: none; - } +// &:after { +// display: none; +// } - &:hover .ant-radio-inner { - border-color: #ff4400 !important; - box-shadow: none; - } -} +// &:hover .ant-radio-inner { +// border-color: #ff4400 !important; +// box-shadow: none; +// } +// } -/deep/ .ant-radio-checked { - .ant-radio-input:focus { - box-shadow: none; - } +// /deep/ .ant-radio-checked { +// .ant-radio-input:focus { +// box-shadow: none; +// } - .ant-radio-inner { - border-color: #ff4400; - box-shadow: none; +// .ant-radio-inner { +// border-color: #ff4400; +// box-shadow: none; - &::after { - background-color: #ff4400 !important; - } - } -} +// &::after { +// background-color: #ff4400 !important; +// } +// } +// } .ant-col { .ant-form-item { diff --git a/src/components/userinfo/usercenter/components/mybill.vue b/src/components/userinfo/usercenter/components/mybill.vue index 0e3110f..ce59516 100644 --- a/src/components/userinfo/usercenter/components/mybill.vue +++ b/src/components/userinfo/usercenter/components/mybill.vue @@ -156,7 +156,7 @@
- +
@@ -773,10 +802,9 @@ export default { } console.log(this.currentBillDetail); console.log(this.currentBillDetail.length); - let test = { - } + let test = {}; console.log(test[0]); - console.log(toString(this.currentBillDetail) == '{}'); + console.log(toString(this.currentBillDetail) == "{}"); }); this.billDetailVisible = true; console.log(item); @@ -797,13 +825,26 @@ export default { 截出跟进记录字符串 */ spliceStr(str) { + console.log(str.split("_")[1]); return str.split("_")[1]; }, /* 显示跟进记录详情弹出框 */ showInfo2(record) { - this.currentBillInfo = record; + // this.currentBillInfo = JSON.parse(record); + this.currentBillInfo = { + userName: "李俊中", + nation: "汉族", + age: "52", + sex: 1, + tel: 1311111111, + idCard: 412825197101040513, + address: "河南省上蔡县芦岗乡看花楼村王会庄9988", + storeJobName: "郑州西区格力绿色再生资源", + policy: + "●年龄性别:男 35-55;女 35-46 ●薪资明细:计件工资,多劳多得。不同岗位,计件工资约200-280元/天(出勤七天内,男170元/天,在职不满30天的保底工资按60%或按实际操作量计算工资)。入职会安全培训,上岗实习等,以上时间无工资 ●吃饭住宿:吃饭自理;住宿免费,水电均摊 ●代理利润:出勤15天利润400元;(具体政策以面试当天为准)", + }; this.zzvisible = true; }, /* @@ -860,9 +901,9 @@ export default { /* 关闭跟进详情弹出框 */ - handleOk() { - this.zzvisible = false; - }, + // handleOk() { + // this.zzvisible = false; + // }, formatDateYMDHM(time) { return formatDateYMDHM(time); }, @@ -1304,7 +1345,9 @@ export default { .billInfo { display: flex; justify-content: space-between; - + .policyControl { + white-space: pre-line; + } li { display: flex; flex-direction: column; @@ -1523,6 +1566,9 @@ export default { border-radius: 50%; padding: 2px; } + .titleMain:first-of-type > div { + color: #ff4400; + } .titleMain:first-of-type > div > img { background-color: #ff4400; } @@ -1533,4 +1579,18 @@ export default { } } } +.recordInfo { + /deep/ .ant-modal-content { + .ant-modal-body { + padding-left: 120px; + .mb8 { + margin-bottom: 20px !important; + } + .ant-row > div:first-child { + text-align: right; + margin-right: 32px; + } + } + } +} diff --git a/src/components/userinfo/usercenter/components/townsman.vue b/src/components/userinfo/usercenter/components/townsman.vue index 767ebc3..36c63ec 100644 --- a/src/components/userinfo/usercenter/components/townsman.vue +++ b/src/components/userinfo/usercenter/components/townsman.vue @@ -44,11 +44,170 @@ - +
老乡详情
+
+
+
+
+
+ + {{currentTownsmanDetail.username}}/ + {{currentTownsmanDetail.sex}}/ + {{currentTownsmanDetail.age}}/ + {{currentTownsmanDetail.nation}} + + 编辑 +
+

+ {{currentTownsmanDetail.position}} +

+
+
+ + + {{currentTownsmanDetail.IDcard}} + + + + {{currentTownsmanDetail.tel}} + +
+
+
+ + + +
+
+
+
+ 工作一 +
+
+ + + 报名岗位 + + + {{currentTownsmanDetail.jobName}} + + + + + 报名企业 + + + {{currentTownsmanDetail.storeName}} + + + + + 政策 + + + {{currentTownsmanDetail.policy}} + + {{policyStatus?'收起':'展开'}} + + + + 状态 + + + {{currentTownsmanDetail.status == 1 ? '在职中' : ''}} + + + + + 入职时间 + + + {{new Date(currentTownsmanDetail.entryTime)}} + + +
+
+
+
+ 跟进记录 +
+
+ + +
+ 老乡信息 +
+
+ + + + + + + + + + + + 男 + + + 女 + + + + + + + + + + + + + + + + {{item.name}} + + + + + + + + + + + + + + + + + 上传 + + + + + + + 取消 + 提交 + + + +
+
+
@@ -59,7 +218,7 @@ import { formatDateYMD, getUserApplyOrderStatusById, } from "../../../../utils/commonUtil"; - +import { nationlist } from "../../../../utils/datalist"; export default { // 组件名称 name: "", @@ -102,6 +261,27 @@ export default { }, data: [], townsmanDetailVisible: false, // 控制详情弹出框的显示 + currentTownsmanDetail: { + // 当前老乡详情信息 + username: "张润龙", + sex: "男", + age: "23", + nation: "汉族", + position: "河南省许昌市魏都区罗庄94号", + IDcard: 411002199811194015, + tel: 15603716868, + jobName: "郑州宇鑫物流装卸工", + storeName: "郑州宇鑫物流", + policy: + "●年龄性别:男 17-40;女 17-40 ●薪资明细:16-17元/小时(根据岗位情况定薪)200/月餐补 ●吃饭住宿:吃饭自理,餐补200元/月;厂区提供成本餐厅,饭菜非常便宜,有清真窗口;免费酒店式住宿,宿舍到厂区3公里左右免费班车接送 ●代理利润:1元/小时*3个月;(具体政策以面试当天为准) 伯才利润", + status: 1, + entryTime: 1678075200000, + }, + policyStatus: false, // 政策的展开状态 + editTownsmanVisibel: false, // 编辑老乡详情弹出框的显示 + nationOptions: nationlist, // 民族列表数据 + fileList2: [], // 上传文件的暂存 + }; }, // 计算属性 @@ -321,6 +501,7 @@ export default { */ toDetail(e) { this.townsmanDetailVisible = true; + // this.currentTownsmanDetail = e; console.log(e); }, /* @@ -329,6 +510,62 @@ export default { townsmanDetailModalClose() { this.townsmanDetailVisible = false; }, + /* + 切换政策展开状态 + */ + togglePolicyStatus() { + console.log(this.policyStatus); + this.policyStatus = !this.policyStatus; + let policy = document.querySelector(".policy"); + if (this.policyStatus == false) { + policy.style.height = "20px"; + } else { + policy.style.height = "auto"; + } + }, + /* + 编辑老乡详情 + */ + editTownsmanDetail() { + this.editTownsmanVisibel = true; + }, + /* + 关闭编辑老乡信息 + */ + cancelEditTownsman() { + this.editTownsmanVisibel = false; + }, + /* + 民族选择框变化 + */ + selectChange(e) { + console.log(e); + }, + /* + 上传附件 + */ + handleChange2({ file, fileList }) { + console.log(file); + console.log(fileList); + this.fileList2 = fileList; + }, + removeFile(file) { + // let fileList + // let _this = this + // fileList = this.$refs.headerUploadRef.$children[1].$children[0].items + + // console.log(this.$refs.headerUploadRef.$children[1].$children[0].items); + console.log(this.fileList2.indexOf(file)); + let index = this.fileList2.indexOf(file); + this.fileListT2.splice(index, 1); + + console.log(this.fileListT2); + // fileList.forEach((item, index) => { + // if (item.uid === file.uid) { + // _this.headerFileList.splice(index, 1) + // } + // }) + }, }, }; @@ -550,4 +787,95 @@ export default { border-bottom: 0px solid #000; } } +.detailContent { + .titleStyle { + font-weight: 600; + margin-bottom: 20px; + } + .boxStyle { + padding: 20px 0; + border-bottom: 1px solid #eee; + } + .userInfo { + border-bottom: 1px solid #eee; + .userInfo_top { + display: flex; + margin-bottom: 20px; + justify-content: space-between; + align-items: center; + & > div > div:first-child { + margin-bottom: 4px; + } + } + .userInfo_bottom { + margin-bottom: 20px; + + img { + width: 64px; + height: 64px; + margin-right: 10px; + border-radius: 4px; + } + } + } + .experienceContent { + .ant-row { + margin-bottom: 10px; + & > div { + color: #666; + } + .policy { + position: relative; + height: 20px; + margin-bottom: 20px; + overflow: hidden; + } + span { + position: absolute; + bottom: -5px; + right: 0; + color: #ff4400; + cursor: pointer; + } + } + } + div { + // border: 1px solid #eee; + } +} +.editDetailModal { + /deep/ .ant-modal-content { + .ant-modal-header { + background-color: #f5f5f5; + border-bottom: 0px solid #000; + } + .ant-modal-body { + padding: 30px 120px 30px 70px; + } + } +} +/deep/ .ant-form-item { + margin-bottom: 20px; + .ant-input { + height: 40px; + } + .ant-select-selection, + .ant-select-selection__rendered { + height: 40px; + line-height: 40px; + } +} +/deep/ .upload-list-inline .ant-upload-list-item { + float: left; + width: 220px; + margin-right: 16px; + + .ant-upload-animate-enter { + animation-name: uploadAnimateInlineIn; + } + + .ant-upload-animate-leave { + animation-name: uploadAnimateInlineOut; + } +} diff --git a/src/style/index.less b/src/style/index.less index d4abc33..12b7368 100644 --- a/src/style/index.less +++ b/src/style/index.less @@ -1,4 +1,4 @@ -@import "http://at.alicdn.com/t/c/font_3135652_malbnqa0h0e.css"; +@import "http://at.alicdn.com/t/c/font_3135652_me9fsfpihrt.css"; // 初始化页面样式 body, h1, @@ -28,8 +28,8 @@ td, div { margin: 0; padding: 0; - color: #333; - // color: #666; + color: #333; + // color: #666; font-family: PingFangSC, PingFangSC-Regular; } body, @@ -136,30 +136,29 @@ i { overflow: hidden; } - // 公用样式类名 .w { width: 1200px; margin: 0 auto; } .mb12 { - margin-bottom: 12px; + margin-bottom: 12px; } .mt20 { - margin-top: 20px; + margin-top: 20px; } .titlestyle { - font-size: 16px; - font-weight: 600; - color: #333; + font-size: 16px; + font-weight: 600; + color: #333; } .nobd { - border-left-color: transparent !important; - border-right-color: transparent !important; - border-top: none !important; - border-bottom: none !important; - margin-top: 0 !important; - margin-bottom: 0 !important; + border-left-color: transparent !important; + border-right-color: transparent !important; + border-top: none !important; + border-bottom: none !important; + margin-top: 0 !important; + margin-bottom: 0 !important; } // 日期选择框 .ant-calendar-picker-container-content { @@ -216,9 +215,9 @@ i { } input[type="text"] { box-shadow: none; - background-color: #fff; + background-color: #fff; border-color: #ddd; - border-radius: 0; + border-radius: 0; &:focus { border: 1px solid #ff4400; } @@ -228,7 +227,7 @@ i { } .ant-pagination-item { border: none; - border-radius: 0; + border-radius: 0; a:hover { color: #ff4400; } @@ -258,8 +257,8 @@ i { .ant-cascader-menus.monthlypay, .ant-cascader-menus.agestr, .ant-cascader-menus.gender { - // position: fixed !important; - // border-top: 1px solid #000; + // position: fixed !important; + // border-top: 1px solid #000; width: 100vw; margin: 0 auto; top: 45px !important; @@ -385,9 +384,9 @@ p.bottombox { position: relative; text-align: center; // border-bottom: 1px solid #eeefef; - font-weight: 600; + font-weight: 600; margin-top: 12px; - font-size: 16px; + font-size: 16px; padding-bottom: 12px; margin-bottom: 16px; color: rgba(0, 0, 0, 0.85); @@ -429,10 +428,11 @@ p.bottombox { background: rgba(0, 0, 0, 0.1); } } -.ant-select-dropdown-menu-item-active ,.ant-select-dropdown-menu-item-selected{ - color: #ff4400 !important; - font-weight: normal; - background-color: rgba(255, 106, 0,.1) !important; +.ant-select-dropdown-menu-item-active, +.ant-select-dropdown-menu-item-selected { + color: #ff4400 !important; + font-weight: normal; + background-color: rgba(255, 106, 0, 0.1) !important; } // 面包屑样式 @@ -455,103 +455,135 @@ p.bottombox { .ant-spin-text { color: #fda21d; } - .ant-popover { +.ant-popover { .ant-popover-content { .ant-popover-inner-content { - position: relative; - width: 600px; + position: relative; + width: 600px; white-space: pre-wrap !important; - >div{ - position: absolute; - width: 44px; - height: 22px; - right: 10px; - top: 10px; - border: 1px solid #ff4400; - color: #ff4400; - border-radius: 999px; - line-height:22px; - text-align: center; - cursor: pointer; - &:hover { - background-color: #ff4400; - color: #fff; - } - } + > div { + position: absolute; + width: 44px; + height: 22px; + right: 10px; + top: 10px; + border: 1px solid #ff4400; + color: #ff4400; + border-radius: 999px; + line-height: 22px; + text-align: center; + cursor: pointer; + &:hover { + background-color: #ff4400; + color: #fff; + } + } } } } -.xiangdan{ - .ant-modal-content{ - width: 600px; - max-height: calc(100vh - 40px); - .ant-modal-body{ - padding-top: 36px; - position: relative; - min-height: 480px; +.xiangdan { + .ant-modal-content { + width: 600px; + max-height: calc(100vh - 40px); + .ant-modal-body { + padding-top: 36px; + position: relative; + min-height: 480px; white-space: pre-wrap !important; - - // max-height: ; - // background-color: #000; - .copy { - position: absolute; - padding: 0px 12px; - right: 20px; - top: 7px; - font-size: 14px; - border: 1px solid #ff4400; - color: #ff4400; - border-radius: 5px; - line-height: 22px; - text-align: center; - cursor: pointer; - &:hover { - color: #fff; - background-color: #ff4400; - } - } - } - } - + + // max-height: ; + // background-color: #000; + .copy { + position: absolute; + padding: 0px 12px; + right: 20px; + top: 7px; + font-size: 14px; + border: 1px solid #ff4400; + color: #ff4400; + border-radius: 5px; + line-height: 22px; + text-align: center; + cursor: pointer; + &:hover { + color: #fff; + background-color: #ff4400; + } + } + } + } } // 日期选择器样式 -.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month{ - background: #ff4400; +.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month { + background: #ff4400; } .ant-calendar-date:hover { - border-color: #ff4400; - background-color: #fff; - color: #ff4400; + border-color: #ff4400; + background-color: #fff; + color: #ff4400; } .ant-calendar-today .ant-calendar-date { - background-color: #ff4400; - border-color: #ff4400; - color: #fff; + background-color: #ff4400; + border-color: #ff4400; + color: #fff; } -.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date, .ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date{ - background-color: #ff4400; - border-color: #ff4400; - color: #fff; +.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date, +.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date { + background-color: #ff4400; + border-color: #ff4400; + color: #fff; } -.ant-calendar-range .ant-calendar-in-range-cell::before{ - background: #fff3ef; +.ant-calendar-range .ant-calendar-in-range-cell::before { + background: #fff3ef; } -.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date:hover, .ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date:hover { - background: #ff4400; +.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date:hover, +.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date:hover { + background: #ff4400; } -.ant-calendar-header a:hover{ - color: #ff4400; +.ant-calendar-header a:hover { + color: #ff4400; } -.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover , .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year , .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade,.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover,.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover{ - background: #ff4400; +.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover, +.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year, +.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade, +.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover, +.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover { + background: #ff4400; } -.ant-calendar-month-panel-month:hover,.ant-calendar-year-panel-year:hover,.ant-calendar-decade-panel-decade:hover { - background: #fff3ef; +.ant-calendar-month-panel-month:hover, +.ant-calendar-year-panel-year:hover, +.ant-calendar-decade-panel-decade:hover { + background: #fff3ef; } // 全体样式 -.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up.on, .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down.on { - color: #ff4400; +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up.on, +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down.on { + color: #ff4400; +} +.ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td, +.ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td, +.ant-table-thead > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td, +.ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td { + background: #fff3ef; +} +.ant-radio-checked .ant-radio-inner { + border-color: #ff4400 !important; + box-shadow: none !important; +} +.ant-radio-checked .ant-radio-inner::after { + background-color: #ff4400 !important; +} +.ant-radio:hover .ant-radio-inner { + border-color: #ff4400 !important; + box-shadow: none; +} +.ant-radio-checked .ant-radio-inner::after { + background-color: #ff4400 !important; +} +.ant-radio-checked:hover .ant-radio-inner { + border-color: #ff4400 !important; +} +.ant-radio { + border-color: #ddd !important; + box-shadow: none !important; } -.ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td, .ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td, .ant-table-thead > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td, .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td{ - background: #fff3ef; -} \ No newline at end of file diff --git a/src/style/index.wxss b/src/style/index.wxss index 310f6dc..cd62c32 100644 --- a/src/style/index.wxss +++ b/src/style/index.wxss @@ -1,4 +1,4 @@ -@import "http://at.alicdn.com/t/c/font_3135652_malbnqa0h0e.css"; +@import "http://at.alicdn.com/t/c/font_3135652_me9fsfpihrt.css"; body, h1, h2, @@ -505,3 +505,24 @@ p.bottombox::after { .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td { background: #fff3ef; } +.ant-radio-checked .ant-radio-inner { + border-color: #ff4400 !important; + box-shadow: none !important; +} +.ant-radio-checked .ant-radio-inner::after { + background-color: #ff4400 !important; +} +.ant-radio:hover .ant-radio-inner { + border-color: #ff4400 !important; + box-shadow: none; +} +.ant-radio-checked .ant-radio-inner::after { + background-color: #ff4400 !important; +} +.ant-radio-checked:hover .ant-radio-inner { + border-color: #ff4400 !important; +} +.ant-radio { + border-color: #ddd !important; + box-shadow: none !important; +}