conLedger.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  1. <template>
  2. <view>
  3. <!-- 头部 -->
  4. <cu-custom bgColor="bg-blue" :isBack="true">
  5. <block slot="backText">施工台账</block>
  6. <block slot="content"></block>
  7. <block slot="right">
  8. <view class=" flex justify-center" >
  9. <button @click="search()" class="margin-top-ssm cu-btn round line-blue text-white" style="width: 160rpx;height: 66rpx;padding: 0;">
  10. <image src="/static/index/search-white.png" style="width: 32rpx;height: 32rpx;margin-right: 16rpx;"></image>搜索
  11. </button>
  12. </view>
  13. </block>
  14. </cu-custom>
  15. <!-- <scroll-view scroll-y="true" style="margin-bottom: 150px;height:650px;" > -->
  16. <scroll-view scroll-y="true" :class="[ledgerDate.containConcrete ? 'is-hnt' : '', 'no-hnt']" >
  17. <view v-for="(item,index) in treeData" :key="item.id" class="treeData_b">
  18. <view class="treeData_1" @click="treeTap(index+1,item)">
  19. <view style="font-weight: bold;font-size: 34rpx;" :class="item.selected?'indexColor':''">{{item.name}}</view>
  20. <view v-if="item.children.length>0">
  21. <image src="/static/information/shang.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="show == index + 1"></image>
  22. <image src="/static/information/xia.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="show != index + 1 || show == 0"></image>
  23. </view>
  24. </view>
  25. <view v-for="(second,seconds) in item.children" :key="second.id" v-if="show == index + 1">
  26. <view class="treeData_1s treeData_2" @click="secondTap(seconds + 1,second)">
  27. <view :class="second.selected?'indexColor':''">{{second.name}}</view>
  28. <view v-if="second.children.length>0">
  29. <image src="/static/information/shang.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showsecond == seconds + 1"></image>
  30. <image src="/static/information/xia.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showsecond != seconds + 1 || showsecond == 0"></image>
  31. </view>
  32. </view>
  33. <view v-if="showsecond == seconds + 1" :style="{'padding-bottom': second.children.length>0 ? '22rpx':''}">
  34. <view v-for="(three,threes) in second.children" :key="three.id" class="treeData_three">
  35. <view class="treeData_1s treeData_3" @click="threeTap(threes + 1,three)">
  36. <view :class="three.selected?'indexColor':''">{{three.name}}</view>
  37. <view v-if="three.children.length>0">
  38. <image src="/static/information/shang.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showthree == threes + 1"></image>
  39. <image src="/static/information/xia.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showthree != threes + 1 || showthree == 0"></image>
  40. </view>
  41. </view>
  42. <view v-if="showthree == threes + 1" v-for="(four,fours) in three.children" :key="four.id">
  43. <view class="treeData_1s treeData_3" @click="fourTap(fours + 1,four)">
  44. <view style="padding-left: 22rpx;" :class="four.selected?'indexColor':''"><text style="margin-right: 10rpx;">◈</text>{{four.name}}</view>
  45. <view v-if="four.children.length>0">
  46. <image src="/static/information/shang.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showfour == fours + 1"></image>
  47. <image src="/static/information/xia.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showfour != fours + 1 || showfour == 0"></image>
  48. </view>
  49. </view>
  50. <view v-if="showfour == fours + 1" v-for="(five,fives) in four.children" :key="five.id">
  51. <view class="treeData_1s treeData_3" @click="fiveTap(fives + 1,five)">
  52. <view style="padding-left: 44rpx;" :class="five.selected?'indexColor':''"><text style="margin-right: 10rpx;">➣</text>{{five.name}}</view>
  53. <view v-if="five.children.length>0">
  54. <image src="/static/information/shang.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showfive == fives + 1"></image>
  55. <image src="/static/information/xia.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showfive != fives + 1 || showfive == 0"></image>
  56. </view>
  57. </view>
  58. <view v-if="showfive == fives + 1" v-for="(six,sixs) in five.children" :key="six.id">
  59. <view class="treeData_1s treeData_3" @click="sixTap(sixs + 1,six)">
  60. <view style="padding-left: 66rpx;" :class="six.selected?'indexColor':''"><text style="margin-right: 10rpx;">•</text>{{six.name}}</view>
  61. <view v-if="six.children.length>0">
  62. <image src="/static/information/shang.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showsix == sixs + 1"></image>
  63. <image src="/static/information/xia.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showsix != sixs + 1 || showsix == 0"></image>
  64. </view>
  65. </view>
  66. <view v-if="showsix == sixs + 1" v-for="(seven,sevens) in six.children" :key="seven.id">
  67. <view class="treeData_1s treeData_3" @click="sevenTap(sevens + 1,seven)">
  68. <view style="padding-left: 88rpx;" :class="seven.selected?'indexColor':''">{{seven.name}}</view>
  69. <view v-if="seven.children.length>0">
  70. <image src="/static/information/shang.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showseven == sevens + 1"></image>
  71. <image src="/static/information/xia.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showseven != sevens + 1 || showseven == 0"></image>
  72. </view>
  73. </view>
  74. <view v-if="showseven == sevens + 1" v-for="(eight,eights) in seven.children" :key="eight.id">
  75. <view class="treeData_1s treeData_3" @click="eightTap(eights + 1,eight)">
  76. <view style="padding-left: 110rpx;" :class="eight.selected?'indexColor':''">{{eight.name}}</view>
  77. <view v-if="eight.children.length>0">
  78. <image src="/static/information/shang.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showeight == sevens + 1"></image>
  79. <image src="/static/information/xia.png" style="width: 40rpx;height: 40rpx;vertical-align: middle;" v-if="showeight != sevens + 1 || showeight == 0"></image>
  80. </view>
  81. </view>
  82. <view v-if="showeight == eights + 1" v-for="(nine,nines) in eight.children" :key="nine.id">
  83. <view class="treeData_1s treeData_3" @click="nineTap(nines + 1,nine)">
  84. <view style="padding-left: 132rpx;" :class="nine.selected?'indexColor':''">{{nine.name}}</view>
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. </view>
  92. </view>
  93. </view>
  94. </view>
  95. </view>
  96. </scroll-view>
  97. <!-- 底部-->
  98. <view v-if="modalShow" class="shadow foot" style="background-color: #0A8CD5;color: #fff;position: fixed; z-index: 999; bottom: 0;width: 100%;padding-bottom: calc(var(--window-bottom) + 10px);">
  99. <view class="padding-sm solid-bottom-type" style="display: flex;align-items: center;position: absolute;left: 0;right: 0;top: -80rpx;height: 80rpx;opacity: 0.9;background-image: linear-gradient(#91C9E8, #0A8CD5);box-shadow: 0px -1px 2px #D0D0D0;">
  100. <image class="login-img" src="/static/index/label.png"></image>
  101. <view style="overflow-x: scroll;width: 680rpx;margin-left: 16rpx;">
  102. <view class="text-white" style="white-space : nowrap;font-weight: bold;">{{path}}</view>
  103. </view>
  104. </view>
  105. <view v-if="nodeShow" class="padding-sm">
  106. <view class="text-sm justify-around" style="margin-top: 16rpx;" v-if="ledgerDate.containConcrete">
  107. <view style="border:1px solid white;display: flex;align-items: center;margin-bottom: 20rpx;" class="padding-sm shadow">
  108. 施工日期:
  109. <range-datetime style="flex: 1" type="rangetime" @change="bindDateChange" format="yyyy.mm.dd hh:ii:ss" :defaultValue="[ledgerDate.startDate,ledgerDate.startDateEnd]"></range-datetime>
  110. </view>
  111. <view style="border:1px solid white;display: flex;align-items: center;" class="padding-sm shadow">
  112. 检测日期:
  113. <range-datetime style="flex: 1;" type="rangetime" @change="bindDateChangeEnd" format="yyyy.mm.dd hh:ii:ss" :defaultValue="[ledgerDate.testDate,ledgerDate.testDateEnd]"></range-datetime>
  114. <!-- <datetime fields="day" :dataTime="ledgerDate.testDate==null ? '请选择':ledgerDate.testDate" @change="bindDateChangeEnd"></datetime> -->
  115. </view>
  116. <view class="flex" style="margin-top: 20rpx;">
  117. <view class="padding-sm shadow" style="border:1px solid white;flex: 1;" @click="showPopup(1)">
  118. 设计方量:{{ledgerDate.designvolume}}
  119. </view>
  120. <view style="width: 20rpx;"></view>
  121. <view class="padding-sm shadow" style="border:1px solid white;flex: 1;" @click="showPopup(2)">
  122. 实际方量:{{ledgerDate.actualvolume}}
  123. </view>
  124. </view>
  125. </view>
  126. <view class="text-sm justify-around" style="margin-top: 16rpx;" v-else>
  127. <view style="border:1px solid white;display: flex;align-items: center;margin-bottom: 20rpx;" class="padding-sm shadow">
  128. 施工日期:
  129. <range-datetime style="flex: 1" type="range" @change="bindDateChange" format="yyyy.mm.dd" :defaultValue="[ledgerDate.startDate,ledgerDate.startDateEnd]"></range-datetime>
  130. </view>
  131. <view style="border:1px solid white;display: flex;align-items: center;" class="padding-sm shadow">
  132. 检测日期:
  133. <range-datetime style="flex: 1;" type="range" @change="bindDateChangeEnd" format="yyyy.mm.dd" :defaultValue="[ledgerDate.testDate,ledgerDate.testDateEnd]"></range-datetime>
  134. <!-- <datetime fields="day" :dataTime="ledgerDate.testDate==null ? '请选择':ledgerDate.testDate" @change="bindDateChangeEnd"></datetime> -->
  135. </view>
  136. </view>
  137. </view>
  138. <view v-else="nodeShow" class="padding-sm flex justify-center align-center" style="font-size: 28rpx;height: 222rpx;">
  139. <text>请选择到工序节点</text>
  140. </view>
  141. </view>
  142. <uni-popup ref="popup1" type="dialog">
  143. <uni-popup-dialog mode="input" title="设计方量" placeholder="请输入数字" :value="ledgerDate.designvolume" :duration="0" @confirm="confirm1"></uni-popup-dialog>
  144. </uni-popup>
  145. <uni-popup ref="popup2" type="dialog">
  146. <uni-popup-dialog mode="input" title="实际方量" placeholder="请输入数字" :value="ledgerDate.actualvolume" :duration="0" @confirm="confirm2"></uni-popup-dialog>
  147. </uni-popup>
  148. </view>
  149. </template>
  150. <script>
  151. import rangeDatetime from "@/components/range-datetime.vue";
  152. import uniPopupDialog from '@/components/uni-popup/uni-popup-dialog.vue'
  153. export default {
  154. components: {
  155. rangeDatetime,
  156. uniPopupDialog
  157. },
  158. data() {
  159. return {
  160. treeData: [],
  161. show: 0, //一级状态
  162. showsecond: 0, //二级状态
  163. showthree: 0, //三级状态
  164. showfour: 0, //四级状态
  165. showfive: 0, //五级状态
  166. showsix: 0, //六级状态
  167. showseven: 0, //七级状态
  168. showeight: 0, //八级状态
  169. shownine: 0, //九级状态
  170. modalShow:false,
  171. modalShowTime:false,
  172. nodeShow:false,
  173. ledgerDate:{
  174. startDate:"",startDateEnd:"",
  175. testDate:"",testDateEnd:"",
  176. designvolume:"",//设计
  177. actualvolume:"",//实际
  178. containConcrete:0,//0不是混凝土,1是
  179. },
  180. path:"",
  181. timeType:0,
  182. dotStyle:{color: 'black'},
  183. chooseData:"",
  184. volumeType:0,//1是设计方量,2是实际方量
  185. }
  186. },
  187. onLoad() {
  188. this.findDataProgress();
  189. },
  190. methods: {
  191. bindDateChange: function(e) {
  192. console.log(e)
  193. if(e.value[0] == e.value[1]){
  194. //开始日期=结束日期
  195. this.ledgerDate.startDate = e.value[0];
  196. this.ledgerDate.startDateEnd = "";
  197. }else{
  198. this.ledgerDate.startDate = e.value[0];
  199. this.ledgerDate.startDateEnd = e.value[1];
  200. }
  201. this.timeType =0;
  202. this.datechange(this.ledgerDate.startDate,this.ledgerDate.startDateEnd);
  203. },
  204. bindDateChangeEnd: function(e) {
  205. if(e.value[0] == e.value[1]){
  206. this.ledgerDate.testDate = e.value[0];
  207. this.ledgerDate.testDateEnd = "";
  208. }else{
  209. this.ledgerDate.testDate = e.value[0];
  210. this.ledgerDate.testDateEnd = e.value[1];
  211. }
  212. this.timeType =1;
  213. this.datechange(this.ledgerDate.testDate,this.ledgerDate.testDateEnd);
  214. },
  215. showdialog(){
  216. this.modalShowTime= !this.modalShowTime;
  217. },
  218. datechange(date,dateEnd) {
  219. var that =this;
  220. var userId = uni.getStorageSync("userInfo").id;
  221. if(!that.ledgerDate){
  222. that.ledgerDate ={startDate:"",testDate:""}
  223. }
  224. if(that.timeType==0){
  225. that.http.request("/app/divideClient/upDateLedger",{nodeId:that.chooseData.id,date:date,type:1,userId:userId,end_date:dateEnd}).then((res)=>{
  226. if(res.result=='1'){
  227. //that.ledgerDate.startDate=e.fullDate;
  228. that.$prompt.none("保存成功");
  229. }else{
  230. that.$prompt.none(res.msg)
  231. }
  232. })
  233. }else{
  234. that.http.request("/app/divideClient/upDateLedger",{nodeId:that.chooseData.id,date:date,type:2,userId:userId,end_date:dateEnd}).then((res)=>{
  235. if(res.result=='1'){
  236. //that.ledgerDate.testDate=e.fullDate;
  237. that.$prompt.none("保存成功");
  238. }else{
  239. that.$prompt.none(res.msg)
  240. }
  241. })
  242. }
  243. that.showdialog();
  244. },
  245. /* 获取树状内容 */
  246. findDataProgress(){
  247. var that =this;
  248. var contractId = uni.getStorageSync("porject"+"_"+uni.getStorageSync("userInfo").id).contractId;
  249. that.http.request('/app/divideClient/getDataByContract2', {
  250. contractId:contractId,
  251. type: 0,
  252. listtype: 1,
  253. nodeid:'',
  254. laytype: 0,
  255. }).then((result)=>{
  256. that.treeData =result.datas;
  257. })
  258. },
  259. /* 获取工序节点的施工台账 */
  260. findLedger(id){
  261. var that =this;
  262. var contractId = uni.getStorageSync("porject"+"_"+uni.getStorageSync("userInfo").id).contractId;
  263. //divideType,传的是施工台账树节点的id,divideType传1。工序的树传0
  264. that.http.request('/app/divideClient/findLedger', { nodeId:id,contractId:contractId,divideType:1}).then((result)=>{
  265. let data = result.data.tPfConstructionLedger;
  266. if(!data){
  267. data = {
  268. }
  269. }
  270. data.containConcrete = result.data.tPfDivideClient.containConcrete;
  271. if( result.data!=null){
  272. if(data.testDate){
  273. data.testDate = data.testDate;
  274. }else{
  275. data.testDate = ""
  276. }
  277. if(data.testendDate){
  278. data.testDateEnd = data.testendDate;
  279. }else{
  280. data.testDateEnd = data.testDate
  281. }
  282. if(data.startDate){
  283. data.startDate = data.startDate;
  284. }else{
  285. data.startDate = ""
  286. }
  287. if(data.endDate){
  288. data.startDateEnd = data.endDate;
  289. }else{
  290. data.startDateEnd = data.startDate
  291. }
  292. that.ledgerDate = data;
  293. console.log(that.ledgerDate)
  294. }else{
  295. that.ledgerDate.startDate="";
  296. that.ledgerDate.startDateEnd="";
  297. that.ledgerDate.testDate="";
  298. that.ledgerDate.testDateEnd="";
  299. }
  300. that.modalShow=true;
  301. that.nodeShow=true;
  302. })
  303. },
  304. search(){
  305. uni.setStorageSync("pageType",3);//区分搜索页面跳转
  306. uni.navigateTo({
  307. url:"/pages/search/search"
  308. })
  309. },
  310. filterNode(value, data) {
  311. if (!value) return true;
  312. return data.label.indexOf(value) !== -1;
  313. },
  314. handleNodeClick(obj) {
  315. /* 获取父节点信息 */
  316. var that=this;
  317. //that.modalShow=false;
  318. that.chooseData =obj;
  319. //that.path="";
  320. that.http.request("/app/divideClient/selectNodeTreeById",{id:obj.id}).then((res)=>{
  321. if(res.datas.length==1){
  322. that.path=" / "+res.datas[0].name
  323. }else{
  324. res.datas.forEach((item)=>{
  325. if(item.parentId!=0){
  326. that.path += " / "+item.name;
  327. }
  328. })
  329. }
  330. if(obj.type==4){
  331. that.findLedger(obj.id);
  332. }else{
  333. that.modalShow=true;
  334. that.nodeShow=false;
  335. }
  336. })
  337. },
  338. treeTap(e,r) {
  339. this.text(this.treeData)
  340. r.selected = true;
  341. if (this.show == e) {
  342. this.show = 0
  343. } else {
  344. this.show = e
  345. }
  346. this.handleNodeClick(r);
  347. },
  348. secondTap(e,r) {
  349. this.text(this.treeData)
  350. r.selected = true;
  351. if (this.showsecond == e) {
  352. this.showsecond = 0
  353. } else {
  354. this.showsecond = e
  355. }
  356. this.handleNodeClick(r);
  357. },
  358. threeTap(e,r) {
  359. this.text(this.treeData)
  360. r.selected = true;
  361. if (this.showthree == e) {
  362. this.showthree = 0
  363. } else {
  364. this.showthree = e
  365. }
  366. this.handleNodeClick(r);
  367. },
  368. fourTap(e,r) {
  369. this.text(this.treeData);
  370. this.$set(r,"selected",true);
  371. if (this.showfour == e) {
  372. this.showfour = 0
  373. } else {
  374. this.showfour = e
  375. }
  376. this.handleNodeClick(r);
  377. },
  378. fiveTap(e,r) {
  379. this.text(this.treeData);
  380. this.$set(r,"selected",true);
  381. if (this.showfive == e) {
  382. this.showfive = 0
  383. } else {
  384. this.showfive = e
  385. }
  386. this.handleNodeClick(r);
  387. },
  388. sixTap(e,r) {
  389. this.text(this.treeData)
  390. r.selected = true;
  391. if (this.showsix == e) {
  392. this.showsix = 0
  393. } else {
  394. this.showsix = e
  395. }
  396. this.handleNodeClick(r);
  397. },
  398. sevenTap(e,r) {
  399. this.text(this.treeData)
  400. r.selected = true;
  401. if (this.showseven == e) {
  402. this.showseven = 0
  403. } else {
  404. this.showseven = e
  405. }
  406. this.handleNodeClick(r);
  407. },
  408. eightTap(e,r) {
  409. this.text(this.treeData)
  410. r.selected = true;
  411. if (this.showeight == e) {
  412. this.showeight = 0
  413. } else {
  414. this.showeight = e
  415. }
  416. this.handleNodeClick(r);
  417. },
  418. nineTap(e,r) {
  419. this.text(this.treeData)
  420. r.selected = true;
  421. if (this.shownine == e) {
  422. this.shownine = 0
  423. } else {
  424. this.shownine = e
  425. }
  426. this.handleNodeClick(r);
  427. },
  428. text(data) {
  429. var that = this;
  430. data.forEach((item) => {
  431. item.selected = false;
  432. if (item.children.length > 0) {
  433. that.text(item.children);
  434. }
  435. })
  436. that.treeData = data;
  437. },
  438. showPopup(type){
  439. //1是设计方量,2是实际方量
  440. if(type == 1){
  441. this.$refs.popup1.open();
  442. }else if(type == 2){
  443. this.$refs.popup2.open();
  444. }
  445. },
  446. confirm1(done,value){
  447. this.ledgerDate.designvolume = value;
  448. var userId = uni.getStorageSync("userInfo").id;
  449. this.http.request("/app/divideClient/upvolumeLedger",{nodeId:this.chooseData.id,volume:value,type:1,userId:userId}).then((res)=>{
  450. if(res.result=='1'){
  451. //that.ledgerDate.startDate=e.fullDate;
  452. done();
  453. this.$prompt.none("保存成功");
  454. }else{
  455. this.$prompt.none(res.msg)
  456. }
  457. })
  458. },
  459. confirm2(done,value){
  460. this.ledgerDate.actualvolume = value;
  461. var userId = uni.getStorageSync("userInfo").id;
  462. this.http.request("/app/divideClient/upvolumeLedger",{nodeId:this.chooseData.id,volume:value,type:2,userId:userId}).then((res)=>{
  463. if(res.result=='1'){
  464. //that.ledgerDate.startDate=e.fullDate;
  465. done();
  466. this.$prompt.none("保存成功");
  467. }else{
  468. this.$prompt.none(res.msg)
  469. }
  470. })
  471. }
  472. }
  473. }
  474. </script>
  475. <style>
  476. .solid-bottom-type {
  477. border-bottom: 1upx solid white;
  478. }
  479. .solid-bottom-btn {
  480. border: 1upx solid white;
  481. }
  482. page{background-color: #F7F7F7;}
  483. .toTop {
  484. position: fixed;
  485. bottom: 0;
  486. width: 100%;
  487. background-color: #F7F7F7;
  488. height: calc(var(--window-bottom) + 15px)
  489. }
  490. .solid-bottom-type {
  491. border-bottom: 1upx solid white;
  492. }
  493. .treeData_b {
  494. margin: 22rpx 22rpx 0;
  495. background-color: #fff;
  496. border-radius: 10rpx;
  497. padding: 0 22rpx;
  498. }
  499. .treeData_1 {
  500. font-size: 30rpx;
  501. color: #101010;
  502. height: 88rpx;
  503. display: flex;
  504. justify-content: space-between;
  505. align-items: center;
  506. }
  507. .treeData_1s {
  508. font-size: 30rpx;
  509. color: #101010;
  510. display: flex;
  511. justify-content: space-between;
  512. align-items: center;
  513. padding: 22upx 0;
  514. min-height: 88rpx;
  515. }
  516. .treeData_2 {
  517. border-top: 1upx dashed #E3E1E1;
  518. }
  519. .treeData_3 {
  520. border-top: 1upx dashed #E3E1E1;
  521. }
  522. .treeData_three {
  523. background-color: #F7F7F7;
  524. padding: 0 22rpx;
  525. border-radius: 10rpx;
  526. margin-bottom: 22;
  527. }
  528. .treeData_three:first-child {
  529. border-radius: 10rpx 10rpx 0 0;
  530. }
  531. .treeData_three:last-child {
  532. border-radius: 0 0 10rpx 10rpx;
  533. }
  534. .indexColor {
  535. color: #0A8CD5;
  536. font-weight: bold;
  537. }
  538. .padding-sm{padding:20rpx 22rpx;}
  539. .cu-btn.lg{font-size: 28rpx;}
  540. .cu-modal.show {
  541. overflow-y: auto;
  542. pointer-events: auto;
  543. }
  544. .no-hnt{
  545. padding-bottom: 340rpx;
  546. }
  547. .is-hnt{
  548. padding-bottom: 450rpx;
  549. }
  550. </style>