chosseHouse.vue 20 KB

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