list.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. <template>
  2. <view>
  3. <view v-if="datalist.length>0">
  4. <!-- 预约 -->
  5. <block v-if="type=='order'">
  6. <view class="ylist" v-for="(ite,idx) in datalist" :key='idx' @click="getDetail(ite.reservatId)">
  7. <image :src="ysta" class="ystaimg" v-if="ite.visitType==3"></image>
  8. <image :src="ystb" class="ystaimg" v-if="ite.visitType==2"></image>
  9. <view class="ytop flexc">
  10. <view class="tit">{{ite.visitName.charAt(0)}}</view>
  11. <view class="cent">
  12. <view class="ctit">{{ite.visitName}}提交的预约来访申请</view>
  13. <view class="ctime">提交时间:{{ite.createTime}}</view>
  14. </view>
  15. <view class="right" v-if="ite.visitType==1">
  16. <image :src="ybga"></image>
  17. <view>待审核</view>
  18. </view>
  19. </view>
  20. <view class="ybox">
  21. <view class="yblist mw50"><text>预约日期</text>{{ite.visitDate}}</view>
  22. <view class="yblist mw50"><text>预约时间</text>{{ite.visitTime}}</view>
  23. <view class="yblist mw50"><text>手机号码</text>{{ite.visitPhone}}</view>
  24. <view class="yblist mw50"><text>人 数</text>{{ite.visitNum}}</view>
  25. <view class="yblist mw50"><text>来访地点</text>{{kaType(ite.appointmentSite,adrlist)}}</view>
  26. <view class="yblist mw50"><text>来访事由</text>{{ite.visitReason}}</view>
  27. </view>
  28. <view class="ybtn">
  29. <view class="ybtns btn1" v-if="checkPermi(['system:reservat:remove'])" @click.stop="getDelFn(ite.reservatId)">删除</view>
  30. <view class="flex1"></view>
  31. <block v-if="ite.visitType==1&&checkPermi(['system:reservat:sh'])">
  32. <view class="ybtns btn2" @click.stop="gettypeFn(2,ite.reservatId)">拒绝</view>
  33. <view class="ybtns btn3" @click.stop="gettypeFn(3,ite.reservatId)">同意</view>
  34. </block>
  35. </view>
  36. </view>
  37. </block>
  38. <!-- 访客记录 -->
  39. <block v-if="type=='visitor'">
  40. <view class="ylist" v-for="(ite,idx) in datalist" :key='idx' @click="getDetail(ite.recordId)">
  41. <view class="ytop flexc">
  42. <view class="tit" v-if="ite.recordName">{{ite.recordName.charAt(0)}}</view>
  43. <view class="cent">
  44. <view class="ctit">{{ite.recordName}}</view>
  45. </view>
  46. </view>
  47. <view class="ybox">
  48. <view class="yblist mw50"><text>出入时间</text>{{ite.recordDateTime}}</view>
  49. <view class="yblist mw50"><text>人员类型</text>{{kaType(ite.recordType,fklist)}}</view>
  50. <view class="yblist mw50"><text>手机号码</text>{{ite.recordPhone}}</view>
  51. <view class="yblist mw50"><text>记录来源</text>{{kaType(ite.recordSource,adrlist)}}</view>
  52. </view>
  53. <view class="ybtn">
  54. <view class="ybtns btn1" v-if="checkPermi(['system:record:remove'])" @click.stop="getDelFn(ite.recordId)">删除</view>
  55. </view>
  56. </view>
  57. </block>
  58. <!-- 人员信息权限 -->
  59. <block v-if="type=='limit'">
  60. <view class="ylist" v-for="(ite,idx) in datalist" :key='idx' @click="getDetail(ite.personneId)">
  61. <view class="ytop flexc">
  62. <view class="tit" v-if="ite.personneName">{{ite.personneName.charAt(0)}}</view>
  63. <view class="cent">
  64. <view class="ctit">{{ite.personneName}}</view>
  65. </view>
  66. </view>
  67. <view class="ybox">
  68. <view class="yblist mw50"><text>手机号码</text>{{ite.personnePhone}}</view>
  69. <view class="yblist mw50"><text>部门名称</text>{{ite.deptName}}</view>
  70. <view class="yblist mw50"><text>门禁</text>{{statusFormats(ite.guard,mjlist)}}</view>
  71. <view class="yblist mw50"><text>状态</text>{{ite.isEnable=='0'?'启用':'禁用'}}</view>
  72. </view>
  73. <view class="ybtn">
  74. <view class="ybtns btn1" v-if="checkPermi(['system:management:remove'])" @click.stop="getDelFn(ite.personneId)">删除</view>
  75. </view>
  76. </view>
  77. </block>
  78. <!-- 打卡列表 -->
  79. <block v-if="type=='clock'">
  80. <view class="ylist rlist" style="padding-top: 12rpx;" v-for="(ite,idx) in datalist" :key='idx' @click="getDetail(ite)">
  81. <view class="ytop flexc">
  82. <view class="tit" v-if="ite.userName">{{ite.userName.charAt(0)}}</view>
  83. <view class="cent">
  84. <view class="ctit">{{ite.userName}}的打卡记录</view>
  85. <view class="ctime">最新打卡:{{ite.recordTime}}</view>
  86. </view>
  87. <view class="rights" v-if="ite.type=='N'">
  88. <image :src="ybga"></image>
  89. <view>缺卡</view>
  90. <!-- <view>迟到</view> -->
  91. </view>
  92. </view>
  93. <view class="ybox">
  94. <view class="yblist mw50 line"><text>上班打卡</text>{{ite.workingTime}}
  95. <!-- <view class="tip">迟到</view> -->
  96. </view>
  97. <view class="yblist mw50"><text>下班打卡</text>{{ite.dutyTime}}
  98. </view>
  99. </view>
  100. </view>
  101. </block>
  102. <!-- 会议记录 -->
  103. <block v-if="type=='meetlist'">
  104. <view class="ylist rlist" style="padding-top: 12rpx;" v-for="(ite,idx) in datalist" :key='idx' @click="getDetail(ite.conferenceRoomOrderId)">
  105. <view class="ytop flexc">
  106. <view class="ytit">{{ite.conferenceName}}</view>
  107. <view class="delbtn mr20" v-if="checkPermi(['system:order:remove'])" @click.stop="getDelFn(ite.conferenceRoomOrderId)">
  108. <image :src="delimg"></image>取消预约
  109. </view>
  110. <!-- <view class="rights" v-if="ite.visitType==1">
  111. <image :src="ybga"></image>
  112. <view>已结束</view>
  113. <view>迟到</view>
  114. </view> -->
  115. </view>
  116. <view class="ybox">
  117. <view class="listsm">
  118. <view class="txt"><text class="tit">会议时间</text><text class="lh17">{{ite.startTime}} 至 {{ite.endTime}}</text></view>
  119. <view class="txt"><text class="tit">会议室</text><text>{{ite.conferenceRoomName}}</text></view>
  120. <view class="txt"><text class="tit">参会人数</text><text>{{ite.conferenceNumber}}人</text></view>
  121. <view class="txt"><text class="tit">会议要求</text><text>{{ite.remark}}</text></view>
  122. <view class="flexcj mb8">
  123. <view class="txt" style="margin-bottom: 0;"><text class="tit">席卡需求</text><text>{{ite.useXk=='Y'?'需要':'暂不'}}</text></view>
  124. </view>
  125. <view class="txt" v-if="ite.xkDetail"><text class="tit">席卡人员</text><text>{{ite.xkDetail}}</text></view>
  126. </view>
  127. </view>
  128. </view>
  129. </block>
  130. <!-- 就餐记录 -->
  131. <block v-if="type=='eatlist'">
  132. <view class="ylist rlist" style="padding-top: 12rpx;" v-for="(ite,idx) in datalist" :key='idx' @click="getDetail(ite.orderFoodId)">
  133. <view class="ytop flexc">
  134. <view class="ytit">{{ite.orderFoodUser}}</view>
  135. </view>
  136. <view class="ybox">
  137. <view class="listsm">
  138. <view class="txt"><text class="tit">就餐时间</text><text class="lh17">{{ite.orderFoodTime}}</text></view>
  139. <view class="flexcj mb8">
  140. <view class="txt" style="margin-bottom: 0;"><text class="tit">就餐类型</text><text>{{kaType(ite.orderFoodType,jclxlist)}}</text></view>
  141. <view class="delbtn" v-if="checkPermi(['system:food:remove'])" @click.stop="getDelFn(ite.orderFoodId)">
  142. <image :src="delimg"></image>取消预约
  143. </view>
  144. </view>
  145. </view>
  146. </view>
  147. </view>
  148. </block>
  149. <!-- 园区食谱 -->
  150. <block v-if="type=='menulist'">
  151. <view class="menulist" v-for="(ite,idx) in datalist" :key='idx'
  152. :data-idx="idx"
  153. @touchstart="drawStart" @touchmove="drawMove" @touchend="drawEnd" :style="'right:'+ite.right+'px'">
  154. <view class="mentop" >
  155. <!-- <view class="mentopa" v-if="ite.menuFoodDetailBk">
  156. <image :src="dayc" class="dayimg"></image>
  157. <view class="mentit">{{ite.menuFoodDetailBk}}</view>
  158. </view> -->
  159. <view class="mentopa" v-if="ite.menuFoodDetailLu">
  160. <image :src="daya" class="dayimg"></image>
  161. <view class="mentit">{{ite.menuFoodDetailLu}}</view>
  162. </view>
  163. <view class="mentopa" v-if="ite.menuFoodDetailDi">
  164. <image :src="dayb" class="dayimg"></image>
  165. <view class="mentit">{{ite.menuFoodDetailDi}}</view>
  166. </view>
  167. </view>
  168. <view class="menbtn flexc">
  169. <view class="usetit flexc flex1 act" v-if="ite.isUse=='Y'"><image :src="useimg"></image>当前已启用</view>
  170. <view class="usetit flexc flex1" v-else><image :src="nuseimg"></image>当前未启用</view>
  171. <block v-if="checkPermi(['system:menuFood:edit'])">
  172. <view class="usebtn btna" @click.stop="getPut(ite,'put')"><image :src="putimg"></image>修改</view>
  173. <view class="usebtn btnb" v-if="ite.isUse=='Y'" @click.stop="getPut(ite,'use')"><image :src="nusebtn"></image>禁用</view>
  174. <view class="usebtn btnc" v-else @click.stop="getPut(ite,'use')"><image :src="usebtn"></image>启用</view>
  175. </block>
  176. </view>
  177. <view class="spdel" v-if="checkPermi(['system:menuFood:remove'])&&ite.right>0" @click.stop="getDelFn(ite.menuFoodId)">删除</view>
  178. </view>
  179. </block>
  180. <block v-if="type=='menulists'">
  181. <view class="splist" v-for="(ite,idx) in datalist" :key='idx' @click="getDetail(ite.orderFoodId)" >
  182. <!-- @touchstart="drawStart" @touchmove="drawMove" @touchend="drawEnd" -->
  183. <view>
  184. <view class="sptop flexc">
  185. <view class="tit flex1">11/04 周一 ~ 11/09 周六</view>
  186. <view class="spr" @click.stop="getCookFn(2)">每日食谱</view>
  187. </view>
  188. <view class="sptxt">本周是2024年11月第一周</view>
  189. <view class="spbox flexc " :class="ite.day?'act':''">
  190. <view class="ltit">
  191. <view>今日</view>
  192. <view>食谱</view>
  193. </view>
  194. <view class="flex1">
  195. <view class="rtit"><text>午餐:</text>米饭,酱汁里脊肉,蒜泥生菜,平菇蛋花 汤,土豆焖鸭,胡萝卜肉丝</view>
  196. <view class="rtit"><text>晚餐:</text>米饭,酱汁里脊肉,蒜泥生菜,平菇蛋花 汤,土豆焖鸭,胡萝卜肉丝</view>
  197. </view>
  198. <image :src="fineshimg" class="fineshimg" v-if="!ite.day"></image>
  199. </view>
  200. </view>
  201. </view>
  202. </block>
  203. <block v-if="type=='recordlist'">
  204. <view class="splist" v-for="(ite,idx) in datalist" :key='idx' @click="getDetail(ite.menuFoodId)"><view>
  205. <view class="sptop">
  206. <view class="tit">{{ite.menuFoodTime}}</view>
  207. </view>
  208. <view class="spbox flexc act">
  209. <view class="ltit">
  210. <view>当日</view>
  211. <view>食谱</view>
  212. </view>
  213. <view class="flex1">
  214. <!-- <view class="rtit"><text>早餐:</text>{{ite.menuFoodDetailBk}}</view> -->
  215. <view class="rtit"><text>午餐:</text>{{ite.menuFoodDetailLu}}</view>
  216. <view class="rtit"><text>晚餐:</text>{{ite.menuFoodDetailDi}}</view>
  217. </view>
  218. </view>
  219. </view>
  220. </view>
  221. </block>
  222. <view class="shax" v-if="wtdt">{{wtdt}}</view>
  223. </view>
  224. <block v-else>
  225. <no-data></no-data>
  226. </block>
  227. </view>
  228. </template>
  229. <script>
  230. import { selectDictValue } from '@/utils/common.js';
  231. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  232. import noData from "@/components/nodata/nodata.vue"
  233. export default {
  234. props:{
  235. datalist: {
  236. type: Array,
  237. default () {
  238. return []
  239. }
  240. },
  241. adrlist:{
  242. type: Array,
  243. default () {
  244. return []
  245. }
  246. },
  247. fklist:{
  248. type:Array,
  249. default () {
  250. return []
  251. }
  252. },
  253. jclxlist:{
  254. type: Array,
  255. default () {
  256. return []
  257. }
  258. },
  259. mjlist:{
  260. type:Array,
  261. default () {
  262. return []
  263. }
  264. },
  265. wtdt:{
  266. type: String,
  267. default () {
  268. return ''
  269. }
  270. },
  271. type:{
  272. type: [String,Number],
  273. default () {
  274. return ''
  275. }
  276. },
  277. },
  278. components:{
  279. noData
  280. },
  281. data(){
  282. return{
  283. time:require("@/static/images/home/time.png"),
  284. chose:require("@/static/images/home/chose.png"),
  285. close:require("@/static/images/home/close.png"),
  286. bgaimg:require("@/static/images/home/hbgg.png"),
  287. bgbimg:require("@/static/images/home/hbgh.png"),
  288. ybg:require("@/static/images/order/staff/ybg.png"),
  289. ybga:require("@/static/images/order/staff/ybga.png"),
  290. ysta:require("@/static/images/order/staff/ysta.png"),
  291. ystb:require("@/static/images/order/staff/ystb.png"),
  292. delimg:require("@/work/static/yuy/del.png"),
  293. fineshimg:require("@/work/static/yuy/finesh.png"),
  294. daya:require("@/work/static/yuy/daya.png"),
  295. dayb:require("@/work/static/yuy/dayb.png"),
  296. dayc:require("@/work/static/yuy/dayb.png"),
  297. prea:require("@/work/static/yuy/prea.png"),
  298. preb:require("@/work/static/yuy/preb.png"),
  299. useimg:require("@/work/static/yuy/use.png"),
  300. nuseimg:require("@/work/static/yuy/nuse.png"),
  301. usebtn:require("@/work/static/yuy/usebtn.png"),
  302. nusebtn:require("@/work/static/yuy/nusebtn.png"),
  303. putimg:require("@/work/static/yuy/put.png"),
  304. //左滑默认宽度
  305. delBtnWidth:66,
  306. csListArrl:[],
  307. startX:'',
  308. }
  309. },
  310. watch:{
  311. datalist:{
  312. handler(newVal) {
  313. var data=newVal;
  314. this.csListArrl=JSON.parse(JSON.stringify(data))
  315. },
  316. deep: true
  317. },
  318. },
  319. onLoad: function() {
  320. },
  321. methods:{
  322. checkPermi, checkRole,
  323. kaType(data, list) {
  324. return selectDictValue(list, data);
  325. },
  326. statusFormats(ite,list,type){//多选匹配
  327. if(ite){
  328. var actions = [];
  329. list.forEach(s => {
  330. if(ite.indexOf(s.dictValue)>-1){
  331. actions.push(s.dictLabel);
  332. }
  333. })
  334. return actions.join(',')
  335. }else{
  336. return ''
  337. }
  338. },
  339. getDelFn(id){
  340. var that=this;
  341. uni.showModal({
  342. title: '确认删除',
  343. content: "是否确认删除该记录",
  344. cancelText: '取消',
  345. confirmText: '确认',
  346. success: function(res) {
  347. if (res.confirm) {
  348. that.$emit("getDelFn",id)
  349. } else if (res.cancel) {
  350. // console.log('用户点击取消');
  351. }
  352. }
  353. });
  354. },
  355. gettypeFn(type,id){
  356. var that=this;
  357. var str="拒绝"
  358. if(type==3){
  359. str='同意'
  360. }
  361. uni.showModal({
  362. title: '确认'+str,
  363. content: "是否确认"+str+"该预约",
  364. cancelText: '取消',
  365. confirmText: '确认',
  366. success: function(res) {
  367. if (res.confirm) {
  368. var newobj={
  369. type:type,
  370. id:id
  371. }
  372. that.$emit("gettypeFn",newobj)
  373. } else if (res.cancel) {
  374. // console.log('用户点击取消');
  375. }
  376. }
  377. });
  378. },
  379. getDetail(e){
  380. this.$emit('getDetail',e)
  381. },
  382. getPut(ite,type){
  383. var data={
  384. ite:ite,
  385. type:type
  386. }
  387. this.$emit('getPut',data)
  388. },
  389. getCookFn(e){
  390. this.$emit('getCookFn',e)
  391. },
  392. typeFn(data){
  393. if(data){
  394. var newArr=[]
  395. var astr=data.split('-')
  396. astr.forEach(ite=>{
  397. var a=ite.substring(0,5);
  398. newArr.push(a)
  399. })
  400. return newArr.join('-')
  401. }else{
  402. return ''
  403. }
  404. },
  405. //开始触摸滑动
  406. drawStart(e) {
  407. // console.log("开始触发");
  408. var touch = e.touches[0];
  409. this.startX = touch.clientX;
  410. },
  411. //触摸滑动
  412. drawMove(e) {
  413. // console.log("滑动");
  414. for (var index in this.datalist) {
  415. // this.csListArrl[index].right=0
  416. this.$set(this.datalist[index],'right',0);
  417. }
  418. var idx=e.currentTarget.dataset.idx
  419. var touch = e.touches[0];
  420. var item = this.datalist[idx];
  421. var disX = this.startX - touch.clientX;
  422. if (disX >= 20) {
  423. if (disX > this.delBtnWidth) {
  424. disX = this.delBtnWidth;
  425. }
  426. // this.csListArrl[idx].right=disX
  427. this.$set(this.datalist[idx],'right',disX);
  428. } else {
  429. // this.csListArrl[idx].right=0
  430. this.$set(this.datalist[idx],'right',0);
  431. }
  432. },
  433. //触摸滑动结束
  434. drawEnd(e) {
  435. // console.log("滑动结束");
  436. var idx=e.currentTarget.dataset.idx
  437. var item = this.datalist[idx];
  438. if (item.right >= this.delBtnWidth / 2) {
  439. // this.datalist[idx].right=this.delBtnWidth
  440. this.$set(this.datalist[idx],'right',this.delBtnWidth);
  441. } else {
  442. this.datalist[idx].right=0
  443. }
  444. },
  445. },
  446. }
  447. </script>
  448. <style lang="scss" scoped>
  449. // 预约
  450. .ylist{background: #FFFFFF;border-radius: 14rpx;margin-bottom: 30rpx;position: relative;
  451. .ystaimg{width: 140rpx;height: 140rpx;top: 22rpx;right: 22rpx;position: absolute;}
  452. .ytop{padding: 16rpx 0 24rpx 16rpx;
  453. .tit{width: 62rpx;height: 62rpx;background: #0391FD;border-radius: 6rpx;font-weight: 500;
  454. font-size: 34rpx;color: #FFFFFF;margin-right: 18rpx;text-align: center;line-height: 62rpx;flex: 0 0 auto;}
  455. .cent{
  456. flex: 1;
  457. .ctit{font-weight: bold;font-size: 28rpx;color: #161616;margin-bottom: 6rpx;}
  458. .ctime{font-weight: 500;font-size: 18rpx;color: #666666;}
  459. }
  460. .right{position: relative;flex: 0 0 auto;margin-left: 10rpx;
  461. image{width: 144rpx;height: 56rpx;}
  462. view{font-weight: 800;font-size: 22rpx;color: #FFFFFF;position: absolute;left: 0;top: 0;right: 0;bottom: 0;text-align: center;padding-left: 20rpx;box-sizing: border-box;line-height: 56rpx;}
  463. }
  464. .rights{position: relative;width: 96rpx;height: 38rpx;right: 0;top: 0;
  465. image{width: 100%;height: 100%;}
  466. view{font-weight: 500;font-size: 20rpx;
  467. color: #FFFFFF;position: absolute;left: 0;top: 0;right: 0;bottom: 0;text-align: center;padding-left: 20rpx;box-sizing: border-box;line-height: 38rpx;}
  468. }
  469. }
  470. .ytit{font-weight: bold;font-size: 28rpx;color: #161616;flex: 1;}
  471. .ybox{padding: 0rpx 24rpx 24rpx 16rpx;display: flex;flex-wrap: wrap;
  472. .yblist{display: flex;font-size: 24rpx;font-weight: 500;color: #161616;padding: 6rpx 0 6rpx 8rpx;line-height: 40rpx;position: relative;
  473. text{font-weight: normal;color: #aaa;flex: 0 0 auto;width: 100rpx;text-align-last: justify;margin-right: 12rpx;}
  474. .tip{border-radius: 12rpx;font-weight: 500;font-size: 16rpx;color: #F87C29;border: 2rpx solid #F87C29;height: 28rpx;box-sizing: border-box;
  475. display: flex;align-items: center;padding: 0 8rpx;margin-left: 12rpx;flex: 0 0 auto;margin-top: 6rpx;
  476. }
  477. &.line{
  478. &::after{
  479. position: absolute;content: '';width: 2rpx;height: 30rpx;background: #CDCDCD;right: 0;top: 9rpx;
  480. }
  481. }
  482. }
  483. .listsm{padding: 28rpx 10rpx 2rpx 0;width: 100%;border-top: 2rpx solid #DADADA;
  484. .tit{margin-right: 8rpx;flex: 0 0 auto;min-width:110rpx;text-align-last: justify;margin-right: 20rpx;color: #aaa;}
  485. .line{margin-right: 8rpx;color: #aaaaaa;flex: 0 0 auto;}
  486. .txt{font-size: 26rpx;color: #161616;margin-bottom: 16rpx;display: flex;padding-left: 10rpx;}
  487. .flexcw{
  488. display: flex;align-items: center;flex-wrap: wrap;
  489. .txt{min-width: 50%;}
  490. }
  491. }
  492. }
  493. .ybtn{border-top: 2rpx solid #DADADA;padding: 20rpx 18rpx;display: flex;align-items: center;
  494. .ybtns{width: 130rpx;border-radius: 6rpx;height: 52rpx;font-weight: 500;font-size: 26rpx;display: flex;align-items: center;justify-content: center;box-sizing: border-box;flex: 0 0 auto;
  495. &.btn1{border: 2rpx solid #FC3838;color: #FC3838;}
  496. &.btn2{border: 2rpx solid #666666;color: #666666;}
  497. &.btn3{background-color: #0391FD;color: #ffffff;margin-left: 22rpx;}
  498. }
  499. }
  500. // 记录
  501. &.rlist{padding-top:28rpx;
  502. .rtop{position: relative;padding-left: 22rpx;
  503. .rlistl{flex: 1;
  504. image{width: 30rpx;height: 30rpx;margin-right: 18rpx;}
  505. view{font-weight: bold;font-size: 28rpx;color: #161616;}
  506. }
  507. .right{position: relative;width: 96rpx;height: 38rpx;right: 0;top: 0;
  508. image{width: 100%;height: 100%;}
  509. view{font-weight: 500;font-size: 20rpx;
  510. color: #FFFFFF;position: absolute;left: 0;top: 0;right: 0;bottom: 0;text-align: center;padding-left: 20rpx;box-sizing: border-box;line-height: 38rpx;}
  511. }
  512. }
  513. .ytop{padding-bottom: 18rpx;}
  514. .ybox{padding-bottom: 14rpx;}
  515. .rbox{padding: 0 22rpx 8rpx 22rpx;
  516. .rboxa{width: 306rpx;height: 104rpx;position: relative;margin-bottom: 20rpx;
  517. .rbg{width: 100%;height: 100%;}
  518. .rboxb{box-sizing: border-box;padding:14rpx 0 16rpx 28rpx;
  519. position: absolute;left: 0;top: 0;right: 0;bottom: 0;
  520. .tit{font-weight: 500;font-size: 26rpx;color: #161616;margin-bottom: 10rpx;}
  521. .time{font-weight: 500;font-size: 22rpx;color: #666666;
  522. image{width: 18rpx;height: 18rpx;margin-right: 14rpx;flex: 0 0 auto;}
  523. }
  524. }
  525. }
  526. }
  527. }
  528. .delbtn{font-weight: 500;font-size: 22rpx;color: #FF6969;display: flex;align-items: center;flex: 0 0 auto;
  529. image{width: 28rpx;height: 26rpx;margin-right: 8rpx;}
  530. }
  531. }
  532. // 食谱
  533. .splist{background: #FFFFFF;padding: 24rpx 28rpx 24rpx;box-sizing: border-box;box-shadow: 0px 0px 6rpx 0px #D3D3D3;border-radius: 14rpx;margin:0 32rpx 18rpx;position: relative;
  534. .sptop{margin-bottom: 12rpx;
  535. .tit{font-weight: bold;font-size: 28rpx;color: #161616;}
  536. .spr{min-width: 120rpx;height: 40rpx;background: #FFEFE8;border-radius: 20rpx;padding: 0 6rpx;flex: 0 0 auto;margin-left: 12rpx;
  537. border: 2rpx solid #FE5A0E;font-weight: 500;font-size: 22rpx;color: #FE5A0E;text-align: center;line-height: 40rpx;box-sizing: border-box;
  538. }
  539. }
  540. .sptxt{font-weight: 500;font-size: 18rpx;color: #666666;margin-bottom: 20rpx;}
  541. .spbox{position: relative;
  542. .ltit{font-weight: bold;font-size: 28rpx;color: #AAAAAA;position: relative;width: 68rpx;margin-right: 40rpx;padding-left: 4rpx;box-sizing: border-box;
  543. &::after{content: '';position: absolute;right: -20rpx;top: 0;bottom: 0;background: #DADADA;width: 2rpx;}
  544. }
  545. .rtit{font-size: 26rpx;color: #AAAAAA;padding: 9rpx 0;
  546. text{font-weight: bold;}
  547. }
  548. &.act{
  549. .ltit{color: #0491FD;}
  550. .rtit{color: #666666;
  551. text{color: #161616;}
  552. }
  553. }
  554. .fineshimg{width: 138rpx;height: 92rpx;position: absolute;left: 50%;top: 50%;margin-left: -69rpx;margin-top: -46rpx;}
  555. }
  556. }
  557. .menulist{margin:0 32rpx 18rpx;position: relative;background: #FFFFFF;box-sizing: border-box;box-shadow: 0px 0px 6rpx 0px #D3D3D3;border-radius: 14rpx;
  558. .mentop{padding:22rpx 20rpx 6rpx 18rpx;
  559. .mentopa{margin-bottom: 18rpx;display: flex;align-items: flex-start;}
  560. .dayimg{width: 76rpx;height: 34rpx;margin-right: 20rpx;flex: 0 0 auto;margin-top: 4rpx;}
  561. .mentit{font-weight: 500;font-size: 26rpx;color: #666666;}
  562. }
  563. .menbtn{padding: 18rpx 18rpx 14rpx;border-top: 2rpx solid #DADADA;
  564. .usetit{font-weight: bold;font-size: 22rpx;color: #AAAAAA;
  565. image{width: 26rpx;height: 26rpx;margin-right: 12rpx;flex: 0 0 auto;}
  566. &.act{color: #0391FD;}
  567. }
  568. .usebtn{font-weight: 500;font-size: 22rpx;min-width: 120rpx;height: 40rpx;border-radius: 20px;display: flex;align-items: center;justify-content: center;padding:0 6rpx;box-sizing: border-box;margin-left: 28rpx;flex: 0 0 auto;
  569. image{width: 20rpx;height: 20rpx;margin-right: 6rpx;}
  570. &.btna{border: 2rpx solid #FE5A0E;background: #FFEFE8;color: #FE5A0E;}
  571. &.btnb{border: 2rpx solid #45CB99;background: #D7F5EA;color: #45CB99;}
  572. &.btnc{border: 2rpx solid #0391FD;background: #DFF1FF;color: #0391FD;}
  573. }
  574. }
  575. .spdel{width: 132rpx;background: #EA2D2D;font-weight: bold;font-size: 26rpx;color: #FFFFFF;display: flex;align-items: center;justify-content: center;
  576. border-radius: 14rpx;position: absolute;right: -118rpx;top: 0;bottom: 0;}
  577. }
  578. </style>