list.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. <template>
  2. <view>
  3. <!-- 第一种样式 人员管理-->
  4. <block v-if="datainfo.length>0">
  5. <!-- 巡更地点patrol -->
  6. <block v-if="type=='patrollist'">
  7. <view class="patlist" v-for="(ite,idx) in datainfo" :key="idx" @click="getDetail(ite.checkPointManageId)">
  8. <view class="pattop flexc">
  9. <image :src="home" class="imgs"></image>
  10. <view class="tit">{{ite.checkAddress}}</view>
  11. <view class="flex1"></view>
  12. </view>
  13. <view class="patlistr">
  14. <view class="clist"><view class="tit">巡检类型</view>:{{kaType(ite.checkType,xglxlist)}}</view>
  15. <view class="clist"><view class="tit">巡检时间</view>:{{ite.checkTime}}</view>
  16. </view>
  17. <view class="patbtns">
  18. <view class="btna" v-if="checkPermi(['wuYe:checkPointManage:edit'])" @click.stop="getDetail(ite.checkPointManageId)">修改</view>
  19. <view class="btnc" v-if="checkPermi(['wuYe:checkPointManage:remove'])" @click.stop="getDelFn(ite.checkPointManageId)">删除</view>
  20. </view>
  21. </view>
  22. </block>
  23. <!-- 巡更记录patrol -->
  24. <block v-if="type=='patrol'">
  25. <view class="patlist" v-for="(ite,idx) in datainfo" :key="idx" @click="getDetail(ite.checkPointRecordId)">
  26. <view class="pattop flexc">
  27. <image :src="home" class="imgs"></image>
  28. <view class="tit">{{ite.checkAddress}}</view>
  29. <view class="flex1"></view>
  30. <view class="txt cc" v-if="ite.checkStatus==2">已巡更</view>
  31. <view class="txt cd" v-else>未巡更</view>
  32. </view>
  33. <view class="patlistr">
  34. <view class="clist"><view class="tit">巡检类型</view>:{{kaType(ite.checkType,xglxlist)}}</view>
  35. <view class="clist"><view class="tit">巡检时间</view>:{{ite.checkTime}}</view>
  36. <!-- <view class="clist"><view class="tit">巡检人</view>:刘兵琦</view> -->
  37. </view>
  38. <view class="patbtns">
  39. <!-- v-if="ite.checkStatus==2" -->
  40. <!-- v-else -->
  41. <block v-if="checkPermi(['wuYe:checkPointRecord:query'])">
  42. <view class="btna" @click.stop="getDetail(ite.checkPointRecordId)" v-if="ite.checkStatus==2">查看</view>
  43. <view class="btnb" @click.stop="getAddFn(ite.checkPointRecordId)" v-else>去巡更</view>
  44. </block>
  45. <view class="btnc" v-if="checkPermi(['wuYe:checkPointRecord:remove'])" @click.stop="getDelFn(ite.checkPointRecordId)">删除</view>
  46. </view>
  47. </view>
  48. </block>
  49. <!-- 报修管理 -->
  50. <block v-if="type=='warranty'">
  51. <view class="walists" v-for="(ite,idx) in datainfo" :key="idx" @click="getDetail(ite.repairId)"
  52. :data-idx="idx"
  53. @touchstart="drawStart" @touchmove="drawMove" @touchend="drawEnd" :style="'right:'+ite.right+'px'"
  54. >
  55. <view class="delleft">
  56. <view class="watop ">
  57. <view class="watit">
  58. <view class="tit">{{ite.repairTitle}}</view>
  59. <view class="txt co01":class="{'co01':ite.repairStatus=='1','coa':ite.repairStatus=='3','co28':ite.repairStatus=='3'}">{{kaType(ite.repairStatus,bxztList)}}</view>
  60. <!-- <view class="txt coa" v-if="ite.type==3">已完成</view>
  61. <view class="txt co28" v-if="ite.type==2">处理中</view> -->
  62. </view>
  63. <!-- <view class="walist"><view class="tit">小区名称</view>:{{ite.communityName}}</view> -->
  64. <view class="walist"><view class="tit">项目</view>:{{kaType(ite.maintenanceCategory,bxlbList)}}</view>
  65. <view class="walist"><view class="tit">报修门户</view>:{{ite.houseAddress}}</view>
  66. <view class="walist"><view class="tit">报修时间</view>:{{ite.repairTime}}</view>
  67. <view class="walist" v-if="ite.type==3"><view class="tit" >完成时间</view>:{{ite.completionTime}}</view>
  68. </view>
  69. <view class="wabtn">
  70. <view>查看详情</view>
  71. <image :src="rimg"></image>
  72. </view>
  73. </view>
  74. <view class="spdel" v-if="ite.right>0&&checkPermi(['wuYe:repair:remove'])" @click.stop="getDelFn(ite.repairId)">删除</view>
  75. </view>
  76. </block>
  77. <!-- 投诉建议 -->
  78. <block v-if="type=='complaint'">
  79. <view class="walists" v-for="(ite,idx) in datainfo" :key="idx" @click="getDetail(ite.suggestionId)"
  80. :data-idx="idx"
  81. @touchstart="drawStart" @touchmove="drawMove" @touchend="drawEnd" :style="'right:'+ite.right+'px'"
  82. >
  83. <view class="watop watopcom">
  84. <view class="watit">
  85. <view class="tit">{{ite.title}}</view>
  86. <view class="txt" :class="ite.status==1?'co01':'coa'">{{kaType(ite.status,tsjyList)}}</view>
  87. <!-- <view class="txt coa">已回复</view> -->
  88. </view>
  89. <view class="watopcoma overtwo">{{ite.content}}</view>
  90. <view class="watopcomb">{{ite.createTime}}</view>
  91. </view>
  92. <!-- -->
  93. <view class="spdel" v-if="ite.right>0&&checkPermi(['wuYe:suggestion:remove'])" @click.stop="getDelFn(ite.suggestionId)">删除</view>
  94. </view>
  95. <!-- checkPermi(['system:menuFood:remove'])&& -->
  96. </block>
  97. <view class="shax">{{wtdt}}</view>
  98. </block>
  99. <!-- 无数据 -->
  100. <view class="nodata" v-else>
  101. <image :src="noiconpimg"></image>
  102. <view>
  103. 暂无数据
  104. </view>
  105. </view>
  106. </view>
  107. </template>
  108. <script>
  109. import {selectDictValue} from "@/utils/common.js"
  110. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  111. import config from '@/config'
  112. export default{
  113. props:{
  114. datainfo: {
  115. type: Array,
  116. default () {
  117. return []
  118. }
  119. },
  120. wtdt:{
  121. type:String,
  122. default () {
  123. return ''
  124. }
  125. },
  126. type:{
  127. type:String,
  128. default () {
  129. return 0
  130. }
  131. },
  132. xglxlist:{
  133. type:Array,
  134. default () {
  135. return []
  136. }
  137. },
  138. tsjyList:{
  139. type:Array,
  140. default () {
  141. return []
  142. }
  143. },
  144. bxztList:{
  145. type:Array,
  146. default () {
  147. return []
  148. }
  149. },
  150. bxlbList:{
  151. type:Array,
  152. default () {
  153. return []
  154. }
  155. }
  156. },
  157. data(){
  158. return{
  159. noiconpimg:require("@/static/nodata.png"),
  160. car:require("@/car/static/car/car.png"),
  161. cara:require("@/car/static/car/cara.png"),
  162. carb:require("@/car/static/car/carb.png"),
  163. hicoa:require("@/people/static/people/hicoa.png"),
  164. hicob:require("@/people/static/people/hicob.png"),
  165. man:require("@/people/static/people/man.png"),
  166. woman:require("@/people/static/people/woman.png"),
  167. rimg:require("@/people/static/people/rimg.png"),
  168. pdel:require("@/people/static/people/pdel.png"),
  169. gzlx:require("@/people/static/people/gzlx.png"),
  170. mphone:require("@/people/static/people/mphone.png"),
  171. sfz:require("@/people/static/people/sfz.png"),
  172. eye:require("@/people/static/people/eye.png"),
  173. neye:require("@/people/static/people/neye.png"),
  174. time:require("@/work/static/manage/time.png"),
  175. house:require("@/work/static/manage/house.png"),
  176. housea:require("@/work/static/manage/housea.png"),
  177. home:require("@/service/static/service/home.png"),
  178. upimg:require("@/static/images/home/up.png"),
  179. star:require('@/manage/static/community/star.png'),
  180. stara:require('@/manage/static/community/stara.png'),
  181. baseUrl:config.baseUrl,
  182. delBtnWidth:66,//左滑默认宽度
  183. }
  184. },
  185. mounted() {
  186. },
  187. methods:{
  188. checkPermi, checkRole,
  189. kaType(data, list) {
  190. return selectDictValue(list, data);
  191. },
  192. getDetail(e){
  193. this.$emit('getDetail',e)
  194. },
  195. getAddFn(e){
  196. this.$emit('getAddFn',e)
  197. },
  198. getReadlist(e){
  199. this.$emit('getReadlist',e)
  200. },
  201. getZhan(idx){
  202. // var obj=JSON.parse(JSON.stringify(this.datainfo))[idx]
  203. // obj.zhanflag=!obj.zhanflag;
  204. // this.datainfo.splice(idx,1,obj);
  205. this.datainfo[idx].zhanflag=!this.datainfo[idx].zhanflag
  206. },
  207. getHideFn(idx){
  208. this.datainfo[idx].hideflag=!this.datainfo[idx].hideflag
  209. },
  210. getPreview(idx,arr) {
  211. var newArr=[];
  212. arr.forEach(ite=>{
  213. var ds=this.baseUrl+ite
  214. newArr.push(ds)
  215. })
  216. uni.previewImage({
  217. urls: newArr,
  218. current:idx,
  219. success: function(data) {},
  220. fail: function(err) {}
  221. });
  222. },
  223. getDelFn(id){
  224. var that=this;
  225. uni.showModal({
  226. title: '确认删除',
  227. content: "是否确认删除",
  228. cancelText: '取消',
  229. confirmText: '确认',
  230. success: function(res) {
  231. if (res.confirm) {
  232. that.$emit('getDelFn',id)
  233. } else if (res.cancel) {
  234. }
  235. }
  236. });
  237. },
  238. //开始触摸滑动
  239. drawStart(e) {
  240. // console.log("开始触发");
  241. var touch = e.touches[0];
  242. this.startX = touch.clientX;
  243. },
  244. //触摸滑动
  245. drawMove(e) {
  246. // console.log("滑动");
  247. for (var index in this.datainfo) {
  248. // this.csListArrl[index].right=0
  249. this.$set(this.datainfo[index],'right',0);
  250. }
  251. var idx=e.currentTarget.dataset.idx
  252. var touch = e.touches[0];
  253. var item = this.datainfo[idx];
  254. var disX = this.startX - touch.clientX;
  255. if (disX >= 20) {
  256. if (disX > this.delBtnWidth) {
  257. disX = this.delBtnWidth;
  258. }
  259. // this.csListArrl[idx].right=disX
  260. this.$set(this.datainfo[idx],'right',disX);
  261. } else {
  262. // this.csListArrl[idx].right=0
  263. this.$set(this.datainfo[idx],'right',0);
  264. }
  265. },
  266. //触摸滑动结束
  267. drawEnd(e) {
  268. // console.log("滑动结束");
  269. var idx=e.currentTarget.dataset.idx
  270. var item = this.datainfo[idx];
  271. if (item.right >= this.delBtnWidth / 2) {
  272. // this.datainfo[idx].right=this.delBtnWidth
  273. this.$set(this.datainfo[idx],'right',this.delBtnWidth);
  274. } else {
  275. this.datainfo[idx].right=0
  276. }
  277. },
  278. }
  279. }
  280. </script>
  281. <style lang="scss" scoped>
  282. .flex{display: flex;}
  283. .flexc{display: flex;align-items: center;}
  284. .mb10{margin-bottom: 20rpx;}
  285. .carlist{background: #FFFFFF;border-radius: 20rpx;margin-bottom: 24rpx;
  286. .ctop{border-bottom: 2rpx solid #E5E5E5;padding:26rpx 24rpx;
  287. .imgs{width: 40rpx;height: 42rpx;margin-right: 30rpx;}
  288. .tit{font-size: 32rpx;color: #272727;font-weight: bold;margin-right: 14rpx;}
  289. .txt{font-weight: 500;font-size: 26rpx;
  290. &.ca{color: #3565ED;}
  291. &.cb{color: #FE5A0E;}
  292. &.cc{color: #28C529;}
  293. }
  294. .txta{font-weight: 500;font-size: 24rpx;color: #AAAAAA;}
  295. .num{font-size: 24rpx;color: #AAAAAA;}
  296. }
  297. .btn{height: 34rpx;border-radius: 18rpx;display: flex;align-items: center;justify-content: center;padding: 0 10rpx;font-size: 22rpx;margin-right: 24rpx;
  298. &.btna{border: 2rpx solid #06C770;color: #06C770;}
  299. &.btnb{border: 2rpx solid #3565ED;color: #3565ED;}
  300. &.btnc{border: 2rpx solid #FE5A0E;color: #FE5A0E;}
  301. &.btnbga{border: 1px solid #0156FE;color: #3565ED;background: #DFEAFF;height: 36rpx;}
  302. &.btnbgb{border: 1px solid #C1C1C1;color: #666666;background: #F1F1F1;height: 36rpx;}
  303. &.btnbgc{border: 1px solid #FE5A0E;color:#FE5A0E;background:#FFEEE6;height: 36rpx;}
  304. }
  305. .clists{padding: 24rpx 24rpx 8rpx;
  306. .clist{font-weight: 500;margin-bottom: 16rpx;
  307. font-size: 26rpx;color: #272727;display: flex;line-height: 34rpx;
  308. .tit{font-size: 26rpx;color: #AAAAAA;flex: 0 0 auto;margin-right: 16rpx;min-width: 108rpx;text-align-last: justify;}
  309. .imgas{display: flex;align-items: center;flex-wrap: wrap;
  310. image{width: 142rpx;height: 142rpx;margin-right: 30rpx;margin-top: 8rpx;}
  311. }
  312. }
  313. .w50{
  314. .clist{width: 50%;}
  315. }
  316. }
  317. }
  318. // 人员
  319. .peolist{
  320. .ctop{padding: 24rpx 24rpx 22rpx;}
  321. .imgs{margin-right: 16rpx !important;}
  322. .tit{font-size: 28rpx !important;}
  323. .plists{padding: 30rpx 24rpx 6rpx;
  324. .plist{background: linear-gradient(-90deg, #F2F5FF 0%, #FBFDFF 100%);border-radius: 20rpx;border: 2rpx solid #E6E6E6;margin-bottom: 24rpx;padding: 18rpx 26rpx 4rpx;
  325. .head{width: 96rpx;height: 98rpx;margin-right: 32rpx;flex: 0 0 auto;}
  326. .ptit{font-weight: bold;font-size: 30rpx;color: #272727;display: flex;align-items: center;margin-bottom: 14rpx;}
  327. .ptxt{font-weight: 500;font-size: 26rpx;color: #666666;line-height: 36rpx;margin-bottom: 14rpx;min-width: 176rpx;}
  328. }
  329. }
  330. .upimg{width: 26rpx;height: 22rpx;display: block;transform: rotate(180deg);transition: all 0.3s;margin: 0 auto 18rpx;
  331. &.act{transform: rotate(0deg);}
  332. }
  333. }
  334. // 物业费
  335. .mlistl{width: 40%;display: flex;flex-direction: column;align-items: center;flex: 0 0 auto;
  336. .mltit{font-weight: 500;font-size: 26rpx;color: #666666;margin-bottom: 18rpx;}
  337. .mltxt{font-weight: bold;font-size: 32rpx;color: #0156FE;}
  338. }
  339. .houselist{
  340. .clists{padding-bottom: 2rpx !important;}
  341. .clist{margin-bottom: 22rpx !important;}
  342. }
  343. // 巡更地点
  344. .patlist{background: #FFFFFF;border-radius: 20rpx;margin-bottom: 24rpx;padding: 0 24rpx 30rpx;
  345. .pattop{padding:22rpx 30rpx;margin-bottom: 2rpx;
  346. .imgs{width: 28rpx;height: 28rpx;margin-right: 12rpx;flex: 0 0 auto;}
  347. .tit{font-size: 30rpx;color: #272727;font-weight: bold;margin-right: 14rpx;}
  348. .txt{font-weight: 500;font-size:24rpx;
  349. &.ca{color: #3565ED;}
  350. &.cb{color: #FE5A0E;}
  351. &.cc{color: #28C529;}
  352. &.cd{color: #FF6969;}
  353. }
  354. }
  355. .patlistr{background: #EFF4FF;border-radius: 20rpx;padding: 20rpx 32rpx;
  356. .clist{font-weight: 500;font-size: 26rpx;color: #272727;display: flex;line-height: 50rpx;
  357. .tit{font-size: 26rpx;flex: 0 0 auto;min-width: 108rpx;text-align-last: justify;font-weight: bold;}
  358. }
  359. }
  360. .patbtns{display: flex;justify-content: flex-end;align-items: center;flex-wrap: wrap;
  361. view{min-width: 156rpx;height: 52rpx;font-weight: 500;font-size: 26rpx;background: #FFFFFF;border-radius: 20rpx;box-sizing: border-box;display: flex;align-items: center;justify-content: center;padding: 0 10rpx;margin-left: 24rpx;margin-top: 24rpx;
  362. &.btna{border: 2rpx solid #0256FD;color: #0256FD;}
  363. &.btnb{background: #0256FD;color: #ffffff;}
  364. &.btnc{border: 2rpx solid #FE5A0E;color: #FE5A0E;}
  365. }
  366. }
  367. }
  368. // 报修
  369. .walists{background: #FFFFFF;border-radius: 20rpx;margin-bottom: 24rpx; position: relative;
  370. .watop{
  371. padding: 0 36rpx 8rpx 38rpx;
  372. .watit{padding: 24rpx 0;margin-bottom: 4rpx;display: flex;
  373. .tit{font-weight: bold;font-size: 28rpx;color: #272727;flex: 1;
  374. .cir{width: 14rpx;margin-left: 8rpx;margin-bottom: 10rpx;height: 14rpx;display: inline-block;background: #FF6969;border-radius: 8rpx;}
  375. }
  376. .txt{font-weight: bold;font-size: 26rpx;flex: 0 0 auto;
  377. }
  378. }
  379. }
  380. .walist{display: flex;font-weight: 500;font-size: 24rpx;color: #666666;margin-bottom: 16rpx;
  381. .tit{min-width: 100rpx;text-align-last: justify}
  382. }
  383. .wabtn{display: flex;align-items: center;justify-content: space-between;border-top: 2rpx solid #E5E5E5;height: 80rpx;padding: 0 38rpx;
  384. view{font-weight: 500;font-size: 24rpx;color: #666666;}
  385. image{width: 16rpx;height: 28rpx;}
  386. }
  387. }
  388. // 维修人员
  389. .stafflist{width: 344rpx;min-height: 256rpx;background: #FFFFFF;border-radius: 20rpx;margin:0 12rpx 24rpx 12rpx;padding-bottom: 20rpx;box-sizing: border-box;
  390. // &:nth-of-type(2n){margin-right: 0;}
  391. .statop{border-bottom: 2rpx solid #E5E5E5;display: flex;padding: 24rpx 24rpx 22rpx;
  392. .head{width: 80rpx;height: 82rpx;margin-right: 24rpx;flex: 0 0 auto;}
  393. .stadel{width: 30rpx;height: 30rpx;flex: 0 0 auto;margin-left: 12rpx;}
  394. .statit{font-weight: bold;font-size: 30rpx;color: #272727;margin-bottom: 4rpx;}
  395. .statxt{font-weight: 500;font-size: 26rpx;
  396. .cir{width: 10rpx;height: 10rpx;border-radius: 50%;margin-right: 14rpx;display: inline-block;
  397. &.bga{background: #06C770;}
  398. &.bgb{background: #FF6969;}
  399. }
  400. }
  401. }
  402. .stalist{font-weight: 500;font-size: 26rpx;color: #272727;display: flex;align-items: center;padding: 20rpx 24rpx 0;
  403. .imgs{width: 24rpx;height: 30rpx;margin-right: 22rpx;flex: 0 0 auto;display: flex;align-items: center;justify-content: center;
  404. .gzlximg{width: 24rpx;height: 28rpx;}
  405. .mphone{width: 18rpx;height: 30rpx;}
  406. .sfz{width: 20rpx;height: 18rpx;}
  407. }
  408. .eyes{width: 34rpx;height: 34rpx;
  409. .eye{width: 22rpx;height: 15rpx;}
  410. .neye{width: 24rpx;height: 24rpx;}
  411. }
  412. }
  413. }
  414. .watopcom{background-color: #ffffff;border-radius: 20rpx;position: relative;z-index: 1;padding-bottom: 30rpx !important;
  415. .watopcoma{font-weight: 500;font-size: 26rpx;color: #666666;line-height: 36rpx;margin-bottom: 24rpx;}
  416. .watopcomb{font-weight: 500;font-size: 24rpx;color: #AAAAAA;}
  417. }
  418. //资讯
  419. .newlists{
  420. background: #FFFFFF;padding: 22rpx 24rpx;margin-bottom: 24rpx;
  421. border-radius: 20rpx;
  422. .tit{font-size: 32rpx;font-weight: bold;color: #272727;line-height: 48rpx;margin-bottom:16rpx;}
  423. .txt{font-size: 24rpx;color: #666666;line-height: 36rpx;margin-bottom: 32rpx;}
  424. .stabox{
  425. .time{font-weight: 500;font-size: 24rpx;color: #AAAAAA;line-height: 36rpx;}
  426. .btns{font-weight: 500;font-size: 22rpx;color: #666666;line-height: 36rpx;min-width: 100rpx;box-sizing: border-box;margin-left: 20rpx;
  427. .imga{width: 24rpx;height: 22rpx;margin-right: 8rpx;}
  428. .imgb{width: 24rpx;height: 18rpx;margin-right: 10rpx;}
  429. }
  430. }
  431. }
  432. // 视频
  433. .videolists{
  434. background: #FFFFFF;margin-bottom: 24rpx;border-radius: 20rpx;
  435. .titbox{padding-top: 16rpx;padding-right: 38rpx;}
  436. .videos{width: 260rpx;height: 180rpx;}
  437. .tit{font-weight: bold;font-size: 14px;color: #272727;text-align: left;margin-bottom: 10rpx;}
  438. .num{font-weight: 500;font-size: 20rpx;color: #666666;min-width: 68rpx;padding: 0 8rpx;box-sizing: border-box;
  439. height: 28rpx;background: #E6E6E6;border-radius: 14rpx;line-height: 28rpx;text-align: center;}
  440. .time{font-weight: 500;font-size: 24rpx;color: #AAAAAA;margin-top: 44rpx;}
  441. }
  442. // 名单
  443. .readlist{background: #FFFFFF;border-radius: 20rpx;border: 2rpx solid #E6E6E6;margin-bottom: 24rpx;padding: 24rpx;display: flex;align-items: center;box-sizing: border-box;
  444. .head{width: 96rpx;height: 96rpx;margin-right: 28rpx;flex: 0 0 auto;}
  445. .tit{font-weight: bold;font-size: 30rpx;color: #272727;margin-bottom: 12rpx;}
  446. .time{font-weight: 500;font-size: 26rpx;color: #666666;line-height: 36rpx;
  447. text{margin-right: 12rpx;display: inline-block;}
  448. }
  449. }
  450. .spdel{width: 164rpx;background: #EA2D2D;font-weight: bold;font-size: 26rpx;color: #FFFFFF;display: flex;align-items: center;justify-content: center;position: absolute;right: -146rpx;top: 0;bottom: 0;padding-left: 14rpx;}
  451. // 无数据
  452. .nodata{display: flex;flex-direction: column;align-items: center;
  453. image{width: 440rpx;height: 440rpx;}
  454. view{font-size: 30rpx;color: #666666;font-weight: bold;}
  455. }
  456. </style>