housemanger.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787
  1. <template>
  2. <div class="housemange">
  3. <div class="form">
  4. <div
  5. class="closIcon"
  6. @click="searchStatus = false"
  7. v-if="searchStatus == true"
  8. >
  9. <van-icon name="arrow-up" />
  10. </div>
  11. <div
  12. class="openIcon"
  13. @click="searchStatus = true"
  14. v-if="searchStatus == false"
  15. >
  16. <van-icon name="arrow-down" />
  17. </div>
  18. <!-- <van-row>
  19. <van-col :span="4">
  20. <div class="yuanqu_label">园区</div>
  21. </van-col>
  22. <van-col :span="20" class="labelcolmt26">
  23. <uni-data-checkbox
  24. v-model="form.groupIds"
  25. mode="tag"
  26. :localdata="yuanqu_loacldata"
  27. selectedTextColor="#1D18BC"
  28. selectedColor="rgba(29,24,188,0.05);"
  29. @change="getSelectedYuanqu"
  30. >
  31. </uni-data-checkbox>
  32. </van-col>
  33. </van-row> -->
  34. <van-row v-if="form.groupIds != null">
  35. <van-col :span="4">
  36. <div>楼盘</div>
  37. </van-col>
  38. <van-col class="labelcolmt26" :span="20">
  39. <uni-data-checkbox
  40. v-model="form.parkFloorDiscIds"
  41. mode="tag"
  42. :localdata="loupan_loacldata"
  43. selectedTextColor="#1D18BC"
  44. selectedColor="rgba(29,24,188,0.05);"
  45. @change="getSelectedLoupan"
  46. >
  47. </uni-data-checkbox>
  48. </van-col>
  49. </van-row>
  50. <van-row>
  51. <van-col class="labelcolmt26" :span="4">
  52. <div style="height: 37rpx; line-height: 37rpx">状态</div>
  53. </van-col>
  54. <van-col class="labelcolmt26 status" :span="20">
  55. <uni-data-checkbox
  56. :map="{ text: 'label', value: 'value' }"
  57. v-model="form.statusArray"
  58. :localdata="dic_SelectList.INVESTMENT_STATUS"
  59. :multiple="true"
  60. selectedTextColor="#1D18BC"
  61. selectedColor="#1D18BC"
  62. @change="getSelectedStatus"
  63. >
  64. </uni-data-checkbox>
  65. </van-col>
  66. </van-row>
  67. <van-row v-if="searchStatus">
  68. <van-col class="labelcolmt26" :span="4">
  69. <div class="yuanqu_label" style="height: 37rpx; line-height: 37rpx">
  70. 朝向
  71. </div>
  72. </van-col>
  73. <van-col class="labelcolmt26 status" :span="20">
  74. <uni-data-checkbox
  75. v-model="form.chaoxiangArray"
  76. :localdata="fangxiangList"
  77. :multiple="true"
  78. selectedTextColor="#1D18BC"
  79. selectedColor="#1D18BC"
  80. @change="getChaoxiang"
  81. >
  82. </uni-data-checkbox>
  83. </van-col>
  84. </van-row>
  85. <van-row v-if="searchStatus">
  86. <van-col class="labelcolmt26" :span="4">
  87. <div class="yuanqu_label">性质</div>
  88. </van-col>
  89. <van-col class="labelcolmt26" :span="16">
  90. <uni-data-checkbox
  91. v-model="form.zaitiTypeArray"
  92. mode="tag"
  93. :localdata="xinzhiList"
  94. selectedTextColor="#1D18BC"
  95. selectedColor="rgba(29,24,188,0.05);"
  96. @change="getSelectedXingZhi"
  97. >
  98. </uni-data-checkbox>
  99. </van-col>
  100. </van-row>
  101. <van-row v-if="searchStatus">
  102. <van-col class="labelcolmt26" :span="4">
  103. <div class="yuanqu_label">指导价</div>
  104. </van-col>
  105. <van-col class="labelcolmt26" :span="9">
  106. <input
  107. v-model="form.guidePrice1"
  108. type="number"
  109. placeholder="元/㎡/月"
  110. />
  111. </van-col>
  112. <van-col :span="1">
  113. <div class="width100 txt_center">-</div>
  114. </van-col>
  115. <van-col class="labelcolmt26" :span="9">
  116. <input
  117. v-model="form.guidePrice2"
  118. type="number"
  119. placeholder="元/㎡/月"
  120. />
  121. </van-col>
  122. </van-row>
  123. <van-row v-if="searchStatus">
  124. <van-col class="labelcolmt26" :span="4">
  125. <div class="yuanqu_label">面积</div>
  126. </van-col>
  127. <van-col class="labelcolmt26" :span="9">
  128. <input v-model="form.roomSize1" type="number" placeholder="㎡" />
  129. </van-col>
  130. <van-col :span="1">
  131. <div class="width100 txt_center">-</div>
  132. </van-col>
  133. <van-col class="labelcolmt26" :span="9">
  134. <input v-model="form.roomSize2" type="number" placeholder="㎡" />
  135. </van-col>
  136. </van-row>
  137. <div style="margin-top: 16rpx">
  138. <van-row>
  139. <van-col class="labelcolmt26" :span="6">
  140. <van-button
  141. color="#F1F2F9"
  142. custom-class="reset_btn"
  143. @click="reast()"
  144. >重置</van-button
  145. >
  146. </van-col>
  147. <van-col class="labelcolmt26" :span="18">
  148. <van-button
  149. style="margin-top: 16rpx"
  150. color="#2527AA"
  151. custom-class="search_btn"
  152. @click="search()"
  153. >
  154. <van-icon name="search" />
  155. 搜索
  156. </van-button>
  157. </van-col>
  158. </van-row>
  159. </div>
  160. </div>
  161. <div class="list">
  162. <div v-if="vamTabStatus">
  163. <van-tabs
  164. id="resizeID"
  165. ref="vantTabs"
  166. :active="form.mnpBuildingIds"
  167. @change="getSelectedLoudong"
  168. line-width="80rpx"
  169. title-active-color="#1D18BC"
  170. >
  171. <van-tab
  172. v-for="(item, index) in loudongList"
  173. :title="item.ldmc"
  174. :name="item.id"
  175. :key="index"
  176. >
  177. </van-tab>
  178. </van-tabs>
  179. </div>
  180. <div class="total" v-if="roomList.length != 0">
  181. <span style="color: #1d18bc">{{ form.total }}</span>
  182. </div>
  183. <div
  184. class="list-row"
  185. v-if="roomList.length != 0"
  186. v-for="(item, index) in roomList"
  187. :key="index"
  188. @click="jumpPage(item.id, item.currentState)"
  189. >
  190. <div class="statusTag">
  191. <div class="tagText">
  192. {{ getCurrentState(item.currentState) }}
  193. </div>
  194. </div>
  195. <div class="cell_1">
  196. <div class="width100 height44rpx mb8rpx">
  197. <div class="first_title">
  198. {{
  199. item.yuanquName + item.quyuName + item.loudongName + item.roomNo
  200. }}
  201. </div>
  202. </div>
  203. <div class="width100 height40rpx mb8rpx">
  204. <div class="second_title">
  205. 用途:{{
  206. getDicType("roomUse", item.roomUse) == undefined
  207. ? "未知"
  208. : getDicType("roomUse", item.roomUse)
  209. }}
  210. </div>
  211. <div class="second_title_1 width50 chaochuyincang">
  212. 装修情况:
  213. {{
  214. !item.decorationSituation && item.decorationSituation != "暂无"
  215. ? "未知"
  216. : dic_SelectList.DECORATION_SITUATION[
  217. item.decorationSituation - 1
  218. ].label
  219. }}
  220. </div>
  221. </div>
  222. <div class="width100 height36rpx mb14rpx">
  223. <div class="third_title" v-if="item.roomSize">
  224. 面积(㎡):{{ item.roomSize }}平米
  225. </div>
  226. <div class="third_title" v-if="!item.roomSize">面积(㎡):未知</div>
  227. <div class="third_title_1">
  228. 朝向:{{ item.roomDirection ? item.roomDirection : "未知" }}
  229. </div>
  230. </div>
  231. <div class="width100 height36rpx">
  232. <div class="float_left chuzu_label">出租指导价(元/㎡/月):</div>
  233. <span class="float_left chuzu_vlaue">{{
  234. !item.guidePrice ? "未知" : item.guidePrice
  235. }}</span>
  236. </div>
  237. </div>
  238. <div class="cell_2" findDeptList>
  239. <img src="../../../../static/mine/youjiantou.png" alt="" />
  240. </div>
  241. </div>
  242. <div class="list-row" v-if="roomList.length == 0">
  243. <van-empty
  244. class="disblock marginauto"
  245. style="background: white"
  246. description="暂无数据"
  247. />
  248. </div>
  249. </div>
  250. </div>
  251. </template>
  252. <script>
  253. import vanTab from "../../../../wxcomponents/weapp/dist/tab/index";
  254. import vanTabs from "../../../../wxcomponents/weapp/dist/tabs/index";
  255. import common from "../../../utils/common";
  256. import vanEmpty from "../../../../wxcomponents/weapp/dist/empty/index";
  257. import {
  258. findYuanQuList,
  259. findLongPanList,
  260. findLouDongList,
  261. findRoomByCondition,
  262. getByCodes,
  263. } from "@/js_sdk/http.js";
  264. const form = {
  265. status: [],
  266. chaoxiang: [],
  267. statusArray: ["1"],
  268. chaoxiangArray: [],
  269. zaitiTypeArray: [],
  270. zaitiType: "",
  271. roomSize1: "",
  272. roomSize2: "",
  273. guidePrice1: "",
  274. guidePrice2: "",
  275. parkFloorDiscIds: null,
  276. groupIds: null,
  277. pageNum: 1,
  278. pageSize: 10,
  279. total: 0,
  280. currentState: "1",
  281. mnpBuildingIds: "",
  282. };
  283. export default {
  284. components: {
  285. vanTab,
  286. vanTabs,
  287. vanEmpty,
  288. },
  289. name: "housemanger.vue",
  290. data() {
  291. return {
  292. searchStatus: false,
  293. tabsStatus: true,
  294. dic_key: [
  295. "PROPERTY_NATURE",
  296. "HOUSE_USAGE",
  297. "project_status",
  298. "INVESTMENT_STATUS",
  299. "DECORATION_SITUATION",
  300. ],
  301. dic_SelectList: {},
  302. loudongList: [],
  303. activezhaoshang: "0",
  304. form: {
  305. ...form,
  306. },
  307. active: 0,
  308. formData: {},
  309. value: 0,
  310. vamTabStatus: false,
  311. yuanqu_loacldata: [],
  312. loupan_loacldata: [],
  313. range: [
  314. {
  315. value: 0,
  316. text: "科教产业园",
  317. },
  318. {
  319. value: 1,
  320. text: "红沙湾",
  321. },
  322. {
  323. value: 2,
  324. text: "胡埭",
  325. },
  326. ],
  327. loupanList: [
  328. {
  329. value: 0,
  330. text: "一期",
  331. },
  332. {
  333. value: 1,
  334. text: "二期",
  335. },
  336. {
  337. value: 2,
  338. text: "三期",
  339. },
  340. {
  341. value: 3,
  342. text: "四期",
  343. },
  344. {
  345. value: 4,
  346. text: "五期",
  347. },
  348. {
  349. value: 5,
  350. text: "六期",
  351. },
  352. {
  353. value: 6,
  354. text: "七期",
  355. },
  356. {
  357. value: 7,
  358. text: "八期",
  359. },
  360. {
  361. value: 8,
  362. text: "九期",
  363. },
  364. ],
  365. statusList: [
  366. {
  367. value: 1,
  368. text: "空置",
  369. },
  370. {
  371. value: 2,
  372. text: "预约",
  373. },
  374. // {
  375. // value: 3,
  376. // text: "预约",
  377. // },
  378. {
  379. value: 4,
  380. text: "临期",
  381. },
  382. {
  383. value: 5,
  384. text: "已租",
  385. },
  386. {
  387. value: 6,
  388. text: "到期",
  389. },
  390. ],
  391. roomList: [],
  392. fangxiangList: [
  393. {
  394. value: "朝东",
  395. text: "东",
  396. },
  397. {
  398. value: "朝南",
  399. text: "南",
  400. },
  401. {
  402. value: "朝西",
  403. text: "西",
  404. },
  405. {
  406. value: "朝北",
  407. text: "北",
  408. },
  409. ],
  410. xinzhiList: [
  411. {
  412. value: 1,
  413. text: "自有物业",
  414. },
  415. {
  416. value: 2,
  417. text: "社会物业",
  418. },
  419. ],
  420. };
  421. },
  422. mounted() {
  423. this.findYuanQuList();
  424. this.getByCodes1();
  425. },
  426. methods: {
  427. getCurrentState(currentState) {
  428. if (
  429. this.dic_SelectList.INVESTMENT_STATUS &&
  430. this.dic_SelectList.INVESTMENT_STATUS.length > 0
  431. ) {
  432. let data = this.dic_SelectList.INVESTMENT_STATUS.find(
  433. (e) => e.value == currentState
  434. );
  435. // console.log("datadatadatadatadatadata", data);
  436. return data.label;
  437. }
  438. },
  439. reast() {
  440. this.loudongList = [];
  441. this.roomList = [];
  442. this.form = { ...form };
  443. this.findYuanQuList();
  444. this.getByCodes1();
  445. },
  446. async search() {
  447. if (!this.form.groupIds && !this.form.parkFloorDiscIds) {
  448. return this.$showToast("请选择园区和楼盘后重试");
  449. }
  450. if (!this.form.groupIds) {
  451. return this.$showToast("请选择园区后重试");
  452. }
  453. if (!this.form.parkFloorDiscIds) {
  454. return this.$showToast("请选择楼盘后重试");
  455. }
  456. this.form.pageNum = 1;
  457. this.form.pageSize = 10;
  458. this.form.total = 0;
  459. let data = await findRoomByCondition(this.form);
  460. this.roomList = data.rows;
  461. this.form.total = data.total;
  462. },
  463. onReachBottom() {
  464. console.log("滑动到距离底部100px的时候触发,可以放 。。业务逻辑");
  465. }, //下拉执行的时候触发 (下拉刷新)
  466. getDicType(type, value) {
  467. if (!value) return;
  468. if (type == "zaiti") {
  469. let PROPERTY_NATURE = this.dic_SelectList.PROPERTY_NATURE;
  470. let index = PROPERTY_NATURE.findIndex((e) => e.value == value);
  471. return PROPERTY_NATURE[index].label;
  472. }
  473. if (type == "roomUse") {
  474. let HOUSE_USAGE = this.dic_SelectList.HOUSE_USAGE;
  475. let index = HOUSE_USAGE.findIndex((e) => e.value == value);
  476. return HOUSE_USAGE[index].label;
  477. }
  478. },
  479. async getByCodes1() {
  480. let data = await getByCodes(
  481. JSON.stringify([
  482. "PROPERTY_NATURE",
  483. "HOUSE_USAGE",
  484. "project_status",
  485. "INVESTMENT_STATUS",
  486. "DECORATION_SITUATION",
  487. ])
  488. );
  489. console.log("1111111111111111", data);
  490. this.dic_SelectList = this.$common.handleDicList(data);
  491. console.log("this.dic_SelectList", this.dic_SelectList);
  492. },
  493. async getSelectedLoudong(event) {
  494. console.log(event);
  495. this.form.mnpBuildingIds =
  496. event.detail.title == "全部" ? "" : event.detail.name;
  497. let data = await findRoomByCondition(this.form);
  498. console.log(data);
  499. this.roomList = data.rows;
  500. this.form.total = data.total;
  501. },
  502. async getSelectedYuanqu() {
  503. let data = await findLongPanList(this.form.groupIds);
  504. this.roomList = [];
  505. this.loudongList = [];
  506. if (data.length > 0) {
  507. this.loupan_loacldata = data.map((e) => {
  508. return {
  509. value: e.id,
  510. text: e.name,
  511. };
  512. });
  513. this.form.parkFloorDiscIds = this.loupan_loacldata[0].value;
  514. } else {
  515. this.loupan_loacldata = [{ value: null, text: "暂无" }];
  516. }
  517. this.getSelectedLoupan();
  518. },
  519. async getSelectedLoupan() {
  520. try {
  521. let data = await findLouDongList(this.form.parkFloorDiscIds);
  522. this.vamTabStatus = false;
  523. console.log(data);
  524. if (data.length == 0) {
  525. this.loudongList = [];
  526. this.roomList = [];
  527. this.tabsStatus = !this.tabsStatus;
  528. return;
  529. } else {
  530. this.loudongList = [{ ldmc: "全部", id: "" }, ...data];
  531. this.roomList = [];
  532. this.form.mnpBuildingIds = "";
  533. }
  534. let row = await findRoomByCondition(this.form);
  535. console.log("我是row", row);
  536. this.roomList = row.rows;
  537. this.form.total = row.total;
  538. this.vamTabStatus = true;
  539. console.log(row);
  540. } catch (e) {
  541. console.log("e这天真热", e);
  542. }
  543. },
  544. findYuanQuList() {
  545. findYuanQuList().then((data) => {
  546. let yuanqu_list = [...data];
  547. let yuanqu_loacldata = yuanqu_list.map((e) => {
  548. return {
  549. value: e.id,
  550. text: e.groupName,
  551. };
  552. });
  553. this.yuanqu_loacldata = yuanqu_loacldata;
  554. this.form.groupIds = this.yuanqu_loacldata[0].value;
  555. this.getSelectedYuanqu();
  556. });
  557. // console.log(yuanqu_loacldata)
  558. },
  559. jumpPage(id, currentState) {
  560. console.log(id);
  561. uni.navigateTo({
  562. url:
  563. "/pages/subPackages/housedetails/housedetails?id=" +
  564. id +
  565. "&currentState=" +
  566. currentState,
  567. });
  568. },
  569. onLoadMore() {},
  570. getChaoxiang() {
  571. this.form.roomDirection = this.form.chaoxiangArray.join(",");
  572. },
  573. getSelectedStatus(e) {
  574. console.log(this.form.statusArray.join(","));
  575. this.form.currentState = this.form.statusArray.join(",");
  576. },
  577. getSelectedXingZhi() {
  578. console.log(this.form.zaitiTypeArray);
  579. this.form.zaitiType = this.form.zaitiTypeArray;
  580. },
  581. onChange() {},
  582. getMoreList() {
  583. let that = this;
  584. that.form.pageNum += 1;
  585. findRoomByCondition(that.form).then((e) => {
  586. console.log(that.roomList);
  587. if (that.roomList.length == e.total) {
  588. this.$showToast("没有更多数据");
  589. }
  590. that.roomList = [...that.roomList, ...e.rows];
  591. console.log(that.roomList);
  592. that.$forceUpdate();
  593. });
  594. },
  595. },
  596. onPullDownRefresh: function () {
  597. // 加载数据
  598. },
  599. onReachBottom() {
  600. console.log("滑动到距离底部100px的时候触发,可以放 。。业务逻辑");
  601. }, //下拉执行的时候触发 (下拉刷新)
  602. };
  603. </script>
  604. <style lang="scss">
  605. .chaochuyincang {
  606. white-space: nowrap;
  607. overflow: hidden;
  608. text-overflow: ellipsis;
  609. }
  610. .statusTag {
  611. position: absolute;
  612. background: #2527aa;
  613. text-align: center;
  614. color: white;
  615. // clip-path: polygon(100% 100%, 100% 0%, 0% 0%);
  616. // height: 100rpx;
  617. right: 0rpx;
  618. font-size: 20rpx;
  619. top: 0rpx;
  620. padding: 5rpx 20rpx;
  621. .tagText {
  622. // transform: rotate(38deg);
  623. // position: absolute;
  624. // right: 10rpx;
  625. // top: 25rpx;
  626. font-size: 24rpx;
  627. }
  628. }
  629. .closIcon {
  630. width: 40px;
  631. height: 40px;
  632. background: white;
  633. position: absolute;
  634. bottom: -40rpx;
  635. z-index: 100;
  636. right: 0;
  637. left: 0;
  638. margin: auto;
  639. border-radius: 50%;
  640. text-align: center;
  641. line-height: 40px;
  642. }
  643. .openIcon {
  644. width: 40px;
  645. height: 40px;
  646. background: white;
  647. position: absolute;
  648. bottom: -40rpx;
  649. z-index: 100;
  650. right: 0;
  651. left: 0;
  652. margin: auto;
  653. border-radius: 50%;
  654. text-align: center;
  655. line-height: 40px;
  656. }
  657. /deep/.van-cell {
  658. padding: 0 0 0 28rpx !important;
  659. }
  660. .inputClass {
  661. padding: 0 0 0 28rpx !important;
  662. }
  663. .yuanqu_label {
  664. height: 55rpx;
  665. line-height: 55rpx;
  666. }
  667. .loupan_label {
  668. padding: 0rpx 10rpx;
  669. }
  670. .housemange {
  671. /deep/.checklist-box {
  672. margin: 0 !important;
  673. margin-right: 16rpx !important;
  674. }
  675. .search_btn {
  676. margin-left: 18rpx;
  677. width: calc(100% - 18rpx);
  678. height: 60rpx;
  679. }
  680. .reset_btn {
  681. color: #2628a9 !important;
  682. width: 100%;
  683. height: 60rpx;
  684. }
  685. .list-row {
  686. width: calc(100% - 64rpx);
  687. padding: 16rpx 32rpx 18rpx 32rpx;
  688. background: #ffffff;
  689. margin-bottom: 16rpx;
  690. display: flex;
  691. //height: 278rpx;
  692. border-radius: 8rpx 8rpx 8rpx 8rpx;
  693. align-items: center;
  694. position: relative;
  695. }
  696. .second_title {
  697. float: left;
  698. width: 50%;
  699. font-size: 28rpx;
  700. font-family: PingFang SC-Medium, PingFang SC;
  701. font-weight: 500;
  702. color: #777777;
  703. }
  704. .cell_1 {
  705. float: left;
  706. width: 90%;
  707. }
  708. .cell_2 {
  709. float: left;
  710. width: 10%;
  711. img {
  712. height: 60rpx;
  713. width: 60rpx;
  714. float: right;
  715. margin: 0;
  716. }
  717. }
  718. .list {
  719. width: calc(100% - 64rpx);
  720. margin: 32rpx;
  721. }
  722. .form {
  723. width: calc(100% - 128rpx);
  724. margin: 32rpx;
  725. background: #ffffff;
  726. padding: 32rpx;
  727. position: relative;
  728. .label {
  729. height: 53rpx;
  730. line-height: 53rpx;
  731. }
  732. }
  733. .labelcolmt26 {
  734. input {
  735. font-size: 24rpx;
  736. border-radius: 8rpx 8rpx 8rpx 8rpx;
  737. border: 2rpx solid #cccccc;
  738. text-align: center;
  739. }
  740. .van-col {
  741. margin-top: 26rpx !important;
  742. }
  743. label {
  744. color: #333333;
  745. font-size: 30rpx;
  746. margin: 0;
  747. margin-top: 0 !important;
  748. }
  749. .uni-data-checklist {
  750. margin-top: -10rpx !important;
  751. }
  752. }
  753. .status {
  754. .uni-data-checklist {
  755. margin-top: 0rpx !important;
  756. }
  757. label {
  758. color: #333333;
  759. font-size: 30rpx;
  760. padding-right: 0rpx !important;
  761. }
  762. }
  763. }
  764. </style>