indoor.vue 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  1. <template>
  2. <scroll-view>
  3. <view class="background">
  4. <view>
  5. <view style="font-size: 16px;margin-left: 10px;margin-top: 10px;display: flex; justify-content: space-between;margin-bottom: 10px;">
  6. <view style="display: flex;align-items: center;">房间信息
  7. <image :src="loadImgSrc('icon_copy.png')" @click='copyAddress()' style="display: flex;justify-content:flex-end; margin-left: 10px;width: 15px;height: 15px;">
  8. </image>
  9. </view>
  10. <image v-if="changefj==false" :src="loadImgSrc('icon_user_open.png')" @click='this.changefj = !this.changefj' style="display: flex;justify-content:flex-end; margin-right: 10px;width: 15px;height: 15px;">
  11. </image>
  12. <image v-if="changefj==true" :src="loadImgSrc('icon_user_close.png')" @click='this.changefj = !this.changefj' style="display: flex;justify-content:flex-end; margin-right: 10px;width: 15px;height: 15px;">
  13. </image>
  14. </view>
  15. </view>
  16. <view v-show="changefj">
  17. <view class="uni-list">
  18. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  19. <view>
  20. 行政区
  21. </view>
  22. <view v-if="this.isEmpty(this.XZQValue.dictValue)" style="margin-top: 10;" @click="pickerShow('xzq')">
  23. <span style="color: darkgray;">请选择行政区</span>
  24. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  25. </view>
  26. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('xzq')">
  27. <span style="color: black;">{{XZQValue.dictLabel}}</span>
  28. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="uni-list">
  33. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  34. <view>
  35. 小区
  36. </view>
  37. <view v-if="this.isEmpty(this.XQValue.id)" class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('xq')">
  38. <span style="color: darkgray;">请选择小区</span>
  39. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  40. </view>
  41. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('xq')">
  42. <span style="color: black;">{{XQValue.name}}</span>
  43. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  44. </view>
  45. </view>
  46. </view>
  47. <view class="uni-list">
  48. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  49. <view class="uni-list-cell-left">
  50. 楼栋
  51. </view>
  52. <view v-if="this.isEmpty(this.LDValue.id)" class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('ld')">
  53. <span style="color: darkgray;">请选择楼栋</span>
  54. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  55. </view>
  56. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('ld')">
  57. <span style="color: black;">{{LDValue.name}}</span>
  58. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  59. </view>
  60. </view>
  61. </view>
  62. <view class="uni-list" style="margin-top: 10;">
  63. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  64. <view class="uni-list-cell-left">
  65. 单元
  66. </view>
  67. <view v-if="this.isEmpty(this.DYValue.id)" class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('dy')">
  68. <span style="color: darkgray;">请选择单元</span>
  69. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  70. </view>
  71. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('dy')">
  72. <span style="color: black;">{{DYValue.name}}</span>
  73. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  74. </view>
  75. </view>
  76. </view>
  77. <view class="uni-list">
  78. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  79. <view class="uni-list-cell-left">
  80. 房间
  81. </view>
  82. <view v-if="this.isEmpty(this.FJValue.id)" class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('fj')">
  83. <span style="color: darkgray;">请选择房间</span>
  84. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  85. </view>
  86. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('fj')">
  87. <span style="color: black;">{{FJValue.name}}</span>
  88. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  89. </view>
  90. </view>
  91. <view v-for="(user,index) in currentResidentsPhoe" :key="index" class="num-style">
  92. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  93. <spane>现住人电话</spane>
  94. <view style="display: flex; justify-content: flex-end; ">
  95. <input class="uni-input" type="tel" v-model="user.phone" maxlength="11" style="text-align: center; border: 1px solid #00aaff; border-radius: 20rpx; "></input>
  96. </view>
  97. </view>
  98. <button v-if="index!=0" @click="this.currentResidentsPhoe.splice(index,1)" class="sc-btn">删除</button>
  99. </view>
  100. <button @click="this.currentResidentsPhoe.push({phone:''})" class="tj-btn">添加</button>
  101. </view>
  102. </view>
  103. </view>
  104. <SelectPicker :list="selectList" @change="changeSelect" v-if="open" @close="close" titleKey="name" subtitleKey="id" v-model="name"></SelectPicker>
  105. <SelectPicker :list="dictOptions" @change="changeSelectDict" v-if="openDict" @close="closeDict" titleKey="dictLabel" subtitleKey="dictValue" v-model="name"></SelectPicker>
  106. </view>
  107. <view class="background">
  108. <input class="uni-input" type="idcard" v-model="idCard" maxlength="18" placeholder="请输入身份证号码" style="text-align: center; border: 1px solid #00aaff; border-radius: 20rpx; "></input>
  109. </view>
  110. <button class="tj-btn" style="margin: 40rpx 90rpx;" @click="serchByCard"> 搜索</button>
  111. <view class="background">
  112. <view>
  113. <view style="font-size: 16px;margin-left: 10px;margin-top: 10px;display: flex; justify-content: space-between;margin-bottom: 10px;">
  114. 户主信息
  115. <image v-if="change==false" :src="loadImgSrc('icon_user_open.png')" @click='change1' style="display: flex;justify-content:flex-end; margin-right: 10px;width: 15px;height: 15px;">
  116. </image>
  117. <image v-if="change==true" :src="loadImgSrc('icon_user_close.png')" @click='change1' style="display: flex;justify-content:flex-end; margin-right: 10px;width: 15px;height: 15px;">
  118. </image>
  119. </view>
  120. </view>
  121. <view v-show="change">
  122. <view class="uni-list">
  123. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  124. <view class="uni-list-cell-left">
  125. 户主姓名
  126. </view>
  127. <view class="uni-list-cell-db" style="margin-top: 10;">
  128. <span style="color: darkgray;" v-model="houseHeadName">{{houseHeadName}}</span>
  129. </view>
  130. </view>
  131. </view>
  132. <view class="uni-list">
  133. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  134. <view class="uni-list-cell-left">
  135. 户主电话
  136. </view>
  137. <view class="uni-list-cell-db" style="margin-top: 10;">
  138. <span style="color: darkgray;" v-model="houseHeadPhone">{{houseHeadPhone}}</span>
  139. </view>
  140. </view>
  141. </view>
  142. <view class="uni-list">
  143. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  144. <view class="uni-list-cell-left">
  145. 户主身份证号码
  146. </view>
  147. <view class="uni-list-cell-db" style="margin-top: 10;">
  148. <span style="color: darkgray;" v-model="houseHeadIDcardNumber">{{houseHeadIDcardNumber}}</span>
  149. </view>
  150. </view>
  151. </view>
  152. <view class="uni-list">
  153. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  154. <view class="uni-list-cell-left">
  155. 管理所
  156. </view>
  157. <view class="uni-list-cell-db" style="margin-top: 10;">
  158. <span style="color: darkgray;" v-model="administrative">{{administrative}}</span>
  159. </view>
  160. </view>
  161. </view>
  162. </view>
  163. </view>
  164. <!--报警器切断阀-->
  165. <view class="background">
  166. <view v-if="objValue.enginClassValue=='报警器'||objValue.enginClassValue=='切断阀'">
  167. <view class="uni-list">
  168. <view style="font-size: 16px;margin-left: 10px;margin-top: 10px;display: flex; justify-content: space-between; margin-bottom: 10px;">
  169. {{objValue.enginClassValue}}
  170. <span style="color: blue;font-size: 14px; display: flex;justify-content:flex-end; margin-right: 10px;" @click="history">{{historyName}}</span>
  171. </view>
  172. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  173. <text>厂 家</text>
  174. <view v-if="this.isEmpty(this.brandValue.id)" style="margin-top: 10;" @click="pickerShow('brand')">
  175. <span style="color: darkgray;">请选择厂家</span>
  176. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  177. </view>
  178. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('brand')">
  179. <span style="color: black;">{{brandValue.name}}</span>
  180. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  181. </view>
  182. </view>
  183. </view>
  184. </view>
  185. <!--拆旧管-->
  186. <view v-if="objValue.enginClassValue=='拆旧管'">
  187. <view class="uni-list">
  188. <view style="font-size: 16px;margin-left: 10px;margin-top: 10px;display: flex; justify-content: space-between;margin-bottom: 10px;">
  189. 拆旧管
  190. <span style="color: blue;font-size: 14px; display: flex;justify-content:flex-end; margin-right: 10px;" @click="history">{{historyName}}</span>
  191. </view>
  192. <view class="container" style="margin-bottom: 20PX;border-bottom: 1px solid #f8f8f8;">
  193. <view>
  194. 腐蚀等级
  195. </view>
  196. <view v-if="this.isEmpty(this.LevelValue.id)" style="margin-top: 10;" @click="pickerShow('fsdj')">
  197. <span style="color: darkgray;">请选择腐蚀等级</span>
  198. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  199. </view>
  200. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('fsdj')">
  201. <span style="color: black;">{{LevelValue.name}}</span>
  202. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  203. </view>
  204. </view>
  205. </view>
  206. </view>
  207. <view v-if="objValue.enginClassValue=='打孔'">
  208. <view class="uni-list">
  209. <view style="font-size: 16px;margin-left: 10px;margin-top: 10px;display: flex; justify-content: space-between;margin-bottom: 10px;">
  210. 打孔
  211. <span style="color: blue;font-size: 14px; display: flex;justify-content:flex-end; margin-right: 10px;" @click="history">{{historyName}}</span>
  212. </view>
  213. <!-- <view class="container" style="margin-bottom: 20PX;border-bottom: 1px solid #f8f8f8;">
  214. <view>
  215. 孔距
  216. </view>
  217. <view v-if="this.isEmpty(this.LevelValue.id)" style="margin-top: 10;"
  218. @click="pickerShow('kj')">
  219. <span style="color: darkgray;">请选择孔距</span>
  220. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  221. </view>
  222. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('kj')">
  223. <span style="color: black;">{{LevelValue.name}}</span>
  224. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  225. </view>
  226. </view> -->
  227. </view>
  228. </view>
  229. <!--立杠-->
  230. <view v-else-if="objValue.enginClassValue=='立杠'">
  231. <view class="uni-list" style="margin-bottom: 20px;">
  232. <view style="font-size: 16px;margin-left: 10px;margin-top: 10px;display: flex; justify-content: space-between;margin-bottom: 10px;">
  233. 立杠
  234. <span style="color: blue;font-size: 14px; display: flex;justify-content:flex-end; margin-right: 10px;" @click="history">{{historyName}}</span>
  235. </view>
  236. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  237. <view>
  238. 材 质
  239. </view>
  240. <view v-if="this.isEmpty(this.materialValue.id)" style="margin-top: 10;" @click="pickerShow('cz')">
  241. <span style="color: darkgray;">请选择材质</span>
  242. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  243. </view>
  244. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('cz')">
  245. <span style="color: black;">{{materialValue.name}}</span>
  246. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  247. </view>
  248. </view>
  249. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  250. <view>
  251. 规 格
  252. </view>
  253. <view v-if="this.isEmpty(this.specificationValue.id)" style="margin-top: 10;" @click="pickerShow('gg')">
  254. <span style="color: darkgray;">请选择规格</span>
  255. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  256. </view>
  257. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('gg')">
  258. <span style="color: black;">{{specificationValue.name}}</span>
  259. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  260. </view>
  261. </view>
  262. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  263. <text>米 数</text>
  264. <!-- style="margin-left: 10px;text-align: right;" -->
  265. <view style="display: flex; justify-content: right; width: 70%;">
  266. <input class="uni-input" type="number" v-model="inputIntegerNumberValue" maxlength="6" style="text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
  267. <text style="font-weight:bold;margin-left: 10px;margin-right: 10px;">.</text>
  268. <input class="uni-input" type="number" v-model="inputDecimalNumberValue" maxlength="1" style="text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
  269. </view>
  270. </view>
  271. </view>
  272. </view>
  273. <!--挂表-->
  274. <view v-else-if="objValue.enginClassValue=='挂表'">
  275. <view class="uni-list" style="margin-bottom: 20px;">
  276. <view style="font-size: 16px;margin-left: 10px;margin-top: 10px;display: flex; justify-content: space-between;margin-bottom: 10px;">
  277. 挂表
  278. <span style="color: blue;font-size: 14px; display: flex;justify-content:flex-end; margin-right: 10px;" @click="history">{{historyName}}</span>
  279. </view>
  280. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  281. <view>
  282. 品 牌
  283. </view>
  284. <view v-if="this.isEmpty(this.brandValue.id)" style="margin-top: 10;" @click="pickerShow('brand')">
  285. <span style="color: darkgray;">请选择品牌</span>
  286. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  287. </view>
  288. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('brand')">
  289. <span style="color: black;">{{brandValue.name}}</span>
  290. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  291. </view>
  292. </view>
  293. </view>
  294. </view>
  295. <!--表后管-->
  296. <view v-else-if="objValue.enginClassValue=='表后管'">
  297. <view class="uni-list" style="margin-bottom: 20px;">
  298. <view style="font-size: 16px;margin-left: 10px;margin-top: 10px;display: flex; justify-content: space-between;margin-bottom: 10px;">
  299. 表后管
  300. <span style="color: blue;font-size: 14px; display: flex;justify-content:flex-end; margin-right: 10px;" @click="history">{{historyName}}</span>
  301. </view>
  302. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  303. <view>
  304. 材 质
  305. </view>
  306. <view v-if="this.isEmpty(this.materialValue.id)" style="margin-top: 10;" @click="pickerShow('cz')">
  307. <span style="color: darkgray;">请选择材质</span>
  308. </view>
  309. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('cz')">
  310. <span style="color: black;">{{materialValue.name}}</span>
  311. </view>
  312. </view>
  313. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  314. <view>
  315. 规 格
  316. </view>
  317. <view v-if="this.isEmpty(this.specificationValue.id)" style="margin-top: 10;" @click="pickerShow('gg')">
  318. <span style="color: darkgray;">请选择规格</span>
  319. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  320. </view>
  321. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('gg')">
  322. <span style="color: black;">{{specificationValue.name}}</span>
  323. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  324. </view>
  325. </view>
  326. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  327. <text>米 数</text>
  328. <!-- style="margin-left: 10px;text-align: right;" -->
  329. <view style="display: flex; justify-content: right; width: 70%;">
  330. <input class="uni-input" type="number" v-model="inputIntegerNumberValue" maxlength="6" style="text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
  331. <text style="font-weight:bold;margin-left: 10px;margin-right: 10px;">.</text>
  332. <input class="uni-input" type="number" v-model="inputDecimalNumberValue" maxlength="1" style="text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
  333. </view>
  334. </view>
  335. </view>
  336. </view>
  337. <!--阀管-->
  338. <view v-else-if="objValue.enginClassValue=='阀管'">
  339. <view class="uni-list" style="margin-bottom: 20px;">
  340. <view style="font-size: 16px;margin-left: 10px;margin-top: 10px;display: flex; justify-content: space-between;margin-bottom: 10px;">
  341. 阀管
  342. <span style="color: blue;font-size: 14px; display: flex;justify-content:flex-end; margin-right: 10px;" @click="history">{{historyName}}</span>
  343. </view>
  344. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  345. <view>
  346. 上门类型
  347. </view>
  348. <view v-if="this.isEmpty(this.doorValue.dictValue)" style="margin-top: 10;" @click="pickerShow('door')">
  349. <span style="color: darkgray;">请选择上门类型</span>
  350. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  351. </view>
  352. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('door')">
  353. <span style="color: black;">{{doorValue.dictLabel}}</span>
  354. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  355. </view>
  356. </view>
  357. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  358. <view>
  359. 自闭阀厂家
  360. </view>
  361. <view v-if="this.isEmpty(this.SelfClosValve.id)" style="margin-top: 10;" @click="pickerShow('zbf')">
  362. <span style="color: darkgray;">请选择自闭阀厂家</span>
  363. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  364. </view>
  365. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('zbf')">
  366. <span style="color: black;">{{SelfClosValve.name}}</span>
  367. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  368. </view>
  369. </view>
  370. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  371. <view>
  372. 灶具管厂家
  373. </view>
  374. <view v-if="this.isEmpty(this.materialValue.id)" style="margin-top: 10;" @click="pickerShow('cz')">
  375. <span style="color: darkgray;">请选择灶具管厂家</span>
  376. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  377. </view>
  378. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('cz')">
  379. <span style="color: black;">{{materialValue.name}}</span>
  380. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  381. </view>
  382. </view>
  383. <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  384. <view>
  385. 规 格
  386. </view>
  387. <view v-if="this.isEmpty(this.specificationValue.id)" style="margin-top: 10;" @click="pickerShow('gg')">
  388. <span style="color: darkgray;">请选择规格</span>
  389. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  390. </view>
  391. <view v-else class="uni-list-cell-db" style="margin-top: 10;" @click="pickerShow('gg')">
  392. <span style="color: black;">{{specificationValue.name}}</span>
  393. <image :src="loadImgSrc('icon_right.png')" class="to-right-icon"></image>
  394. </view>
  395. </view>
  396. <!-- <view class="container" style="border-bottom: 1px solid #f8f8f8;">
  397. <text>米 数</text>
  398. <view style="display: flex; justify-content: right; width: 70%;">
  399. <input class="uni-input" type="number" v-model="inputIntegerNumberValue" maxlength="6"
  400. style="text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
  401. <text style="font-weight:bold;margin-left: 10px;margin-right: 10px;">.</text>
  402. <input class="uni-input" type="number" v-model="inputDecimalNumberValue" maxlength="1"
  403. style="text-align: center; border: 1px solid #00aaff; border-radius: 20rpx;"></input>
  404. </view>
  405. </view> -->
  406. </view>
  407. </view>
  408. <view class="align-items" style="margin-top: 20px;margin-bottom: 20px;">
  409. <view class="container" style="color: #b2b2b2;">*请上传照片</view>
  410. <view class="" style="display: flex; flex-wrap: wrap;margin-top: 10px; margin-left: 10px;">
  411. <image :src="loadImgSrc('updateimg.png')" mode="" style="width: 200rpx; height: 150rpx; margin: 0 12rpx;; " @click="choose()" v-show="reviewStatus!='1'"></image>
  412. <view v-for="(item,index) in imgArr" :key="index" style="position: relative;">
  413. <view v-if="item.substring(item.length - 3) == 'png' || item.substring(item.length - 3) == 'jpg'||item.substring(item.length-4)=='jpeg' ">
  414. <image :src="item" mode="" style="width: 200rpx; height: 200rpx; margin: 0 12rpx;" @click="showPhoto(index)">
  415. </image>
  416. </view>
  417. <view v-else>
  418. <video :src="item" style="width: 200rpx; height: 200rpx; margin: 0 12rpx;"></video>
  419. </view>
  420. <view @click="remove(index)" style="position: absolute; top: 0; right: 14rpx; border-radius: 50%;">
  421. <image :src="loadImgSrc('icon_close.png')" style=" width: 15px; height: 15px;">
  422. </image>
  423. </view>
  424. </view>
  425. </view>
  426. </view>
  427. </view>
  428. <view class="action-btn" v-show="reviewStatus!='1'">
  429. <button @click="submit('submit')" class="btn cu-btn block bg-blue lg round">确认上传</button>
  430. <button @click="submit('save')" class="btn cu-btn block bg-blue lg round" v-if="objValue.enginType == 'old_renovation'">暂存</button>
  431. </view>
  432. <bottom-sheet ref="refShare" :data="historyList"></bottom-sheet>
  433. </scroll-view>
  434. </template>
  435. <script>
  436. import SelectPicker from '../../../components/selectPicker/select_picker.vue'
  437. import bottomSheet from '../../../components/bottomSheet/bottomSheet.vue'
  438. import {
  439. getDicts
  440. } from "@/api/system/dict/data";
  441. import {
  442. getAreaList,
  443. getBuildingList,
  444. getUnitList,
  445. getHousesList,
  446. addTearOldPipe,
  447. getEnginMaterialQualityList,
  448. getEnginSpecificationsList,
  449. getRoomProjectList,
  450. getRoomProjectId,
  451. getRoomDetailsIDCard,
  452. putRoomDetails
  453. } from '@/api/common'
  454. import {
  455. getToken
  456. } from '../../../utils/auth';
  457. import {
  458. showConfirm
  459. } from '../../../utils/common';
  460. import {
  461. login
  462. } from '../../../api/login';
  463. export default {
  464. components: {
  465. SelectPicker,
  466. bottomSheet
  467. },
  468. data() {
  469. return {
  470. headers: {
  471. Authorization: "Bearer " + getToken()
  472. },
  473. historyName: '',
  474. houseHeadName: '',
  475. houseHeadPhone: '',
  476. houseHeadIDcardNumber: '',
  477. administrative: '',
  478. type: '',
  479. changefj: false,
  480. change: false,
  481. open: false,
  482. reviewStatus: '', //是否可以点击
  483. objValue: '', //上一页面传过来的值 新增接口用
  484. openDict: false,
  485. selectList: [],
  486. dictOptions: [],
  487. imgArr: [],
  488. idCard: '',
  489. XQValue: {},
  490. XZQValue: {},
  491. projectValue: {
  492. 'dictValue': '0'
  493. },
  494. currentResidentsPhoe: [{
  495. phone: ''
  496. }],
  497. LevelValue: {},
  498. LDValue: {},
  499. DYValue: {},
  500. FJValue: {},
  501. specificationValue: {}, //规格
  502. materialValue: {}, //材质
  503. brandValue: {}, //品牌
  504. doorValue: {}, //上门类型
  505. SelfClosValve: {}, //自闭阀类型
  506. materialList: '', //材质list
  507. XQList: '',
  508. LDList: '',
  509. DYList: '',
  510. FJList: '',
  511. progress: 0, //上传图片进度百分比
  512. loading: false,
  513. isCheck: true, //是否按照施工图纸施工
  514. inputNumberValue: '',
  515. inputIntegerNumberValue: '',
  516. inputDecimalNumberValue: '',
  517. title: '',
  518. historyList: {}, //历史数据
  519. tempState: '',
  520. tempSelectList: [],
  521. }
  522. },
  523. created() {
  524. },
  525. onLoad(options) {
  526. if ('params' in options) {
  527. this.objValue = JSON.parse(decodeURIComponent(options.params));
  528. if (this.objValue.enginType == `old_renovation`) {
  529. this.title = '旧改工程-室内'
  530. } else if (this.objValue.enginType == `new_built`) {
  531. this.title = '新建工程-室内'
  532. }
  533. uni.setNavigationBarTitle({
  534. title: this.title
  535. })
  536. }
  537. },
  538. methods: {
  539. getSelectName(id) {
  540. let res = '';
  541. this.tempSelectList.forEach((val) => {
  542. if (id == val.id) {
  543. console.log("====", val.name)
  544. res = val.name
  545. };
  546. })
  547. return res;
  548. },
  549. copyAddress() {
  550. if (uni.getStorageSync('XZQValue') != {}) {
  551. this.type = 'xzq';
  552. this.changeSelectDict(uni.getStorageSync('XZQValue'));
  553. }
  554. if (uni.getStorageSync('XQValue') != {}) {
  555. this.type = 'xq';
  556. this.changeSelect(uni.getStorageSync('XQValue'))
  557. }
  558. if (uni.getStorageSync('LDValue') != {}) {
  559. this.type = 'ld';
  560. this.changeSelect(uni.getStorageSync('LDValue'))
  561. }
  562. if (uni.getStorageSync('DYValue') != {}) {
  563. this.type = 'dy';
  564. this.changeSelect(uni.getStorageSync('DYValue'))
  565. }
  566. if (uni.getStorageSync('FJValue') != {}) {
  567. this.type = 'fj';
  568. this.changeSelect(uni.getStorageSync('FJValue'))
  569. }
  570. },
  571. //判断是否选择
  572. isEmpty(str) {
  573. return (!str || 0 === str.length);
  574. },
  575. change1() {
  576. this.change = !this.change
  577. },
  578. // 显示历史弹窗
  579. handleShowSheet() {
  580. this.shareState = true;
  581. },
  582. // 隐藏历史弹窗
  583. handleHiddenShare() {
  584. this.shareState = false;
  585. },
  586. showPhoto(index) {
  587. uni.previewImage({
  588. current: index,
  589. urls: this.imgArr,
  590. })
  591. },
  592. remove(index) {
  593. uni.showModal({
  594. title: '提示',
  595. content: '是否删除该图片或视频?',
  596. success: (res) => {
  597. if (res.confirm) {
  598. this.imgArr.splice(index, 1)
  599. if (this.imgArr.length <= 0) {
  600. this.photo = true;
  601. }
  602. }
  603. }
  604. })
  605. },
  606. choose() {
  607. let _this = this;
  608. uni.showActionSheet({
  609. title: '上传',
  610. itemList: ['图片', '视频'],
  611. success: (res) => {
  612. if (res.tapIndex == 0) {
  613. this.chooseimage()
  614. } else {
  615. this.choosevideo()
  616. }
  617. }
  618. })
  619. },
  620. chooseimage() {
  621. let _this = this;
  622. uni.chooseImage({
  623. sizeType: ['album', 'camera'],
  624. success(resp) {
  625. resp.tempFiles.forEach((item, index) => {
  626. const task = uni.uploadFile({
  627. url: _this.$HTTP + `/obs`,
  628. filePath: item.path,
  629. name: 'file',
  630. formData: {},
  631. header: _this.headers,
  632. success: res => {
  633. // 判断是否json字符串,将其转为json格式
  634. // let data = _this.$u.test.jsonString(res
  635. // .data) ? JSON.parse(res.data) : res.data;
  636. let data = JSON.parse(res.data);
  637. if (![200].includes(data.code)) {
  638. // this.uploadError(index, data);
  639. _this.$modal.msg(data.msg)
  640. } else {
  641. if (_this.progress === 100) {
  642. _this.imgArr.push(data.data.url)
  643. _this.$modal.msg('上传成功!')
  644. _this.photo = false;
  645. }
  646. }
  647. },
  648. fail: e => {
  649. _this.$modal.msg('上传失败!')
  650. //_this.uploadError(index, e);
  651. },
  652. complete: res => {
  653. uni.hideLoading();
  654. _this.uploading = false;
  655. }
  656. });
  657. task.onProgressUpdate(res => {
  658. _this.progress = res.progress;
  659. uni.showLoading({
  660. title: '上传中'
  661. })
  662. if (_this.progress != 100) {
  663. _this.loading = false
  664. } else {
  665. _this.loading = true
  666. }
  667. });
  668. })
  669. },
  670. })
  671. },
  672. choosevideo() {
  673. let _this = this;
  674. uni.chooseVideo({
  675. sourceType: ['album', 'camera'],
  676. maxDuration: 30,
  677. success(resp) {
  678. const task = uni.uploadFile({
  679. url: _this.$HTTP + `/obs`,
  680. filePath: resp.tempFilePath,
  681. name: 'file',
  682. formData: {},
  683. header: _this.headers,
  684. success: res => {
  685. // 判断是否json字符串,将其转为json格式
  686. let data = JSON.parse(res.data);
  687. if (![200].includes(res.statusCode)) {
  688. this.uploadError(index, data);
  689. } else {
  690. //上传成功
  691. if (_this.progress === 100) {
  692. _this.imgArr.push(data.data.url)
  693. _this.$modal.msg('上传成功!')
  694. _this.photo = false;
  695. }
  696. }
  697. },
  698. fail: e => {
  699. _this.$modal.msg('上传失败!')
  700. this.uploadError(index, e);
  701. },
  702. complete: res => {
  703. uni.hideLoading();
  704. _this.uploading = false;
  705. }
  706. });
  707. task.onProgressUpdate(res => {
  708. _this.progress = res.progress;
  709. uni.showLoading({
  710. title: '上传中'
  711. })
  712. if (_this.progress != 100) {
  713. _this.loading = false
  714. } else {
  715. _this.loading = true
  716. }
  717. });
  718. },
  719. })
  720. },
  721. pickerShow(e) {
  722. this.type = e; //赋值类型
  723. if (e == 'door') { //上门类型
  724. this.openDict = true;
  725. getDicts("visit_type").then(response => {
  726. this.dictOptions = response.data;
  727. });
  728. } else if (e == 'zbf') { //自闭阀类型
  729. this.open = true;
  730. getEnginMaterialQualityList("民用工程", this.objValue.enginType, this.objValue.enginClassification, this
  731. .objValue.enginClassValue, '自闭阀厂家').then(response => {
  732. this.selectList = response.data;
  733. });
  734. } else if (e == 'brand') { //品牌
  735. this.open = true;
  736. getEnginMaterialQualityList("民用工程", this.objValue.enginType, this.objValue.enginClassification, this
  737. .objValue.enginClassValue).then(response => {
  738. this.selectList = response.data;
  739. });
  740. } else if (e == 'cz') { //材质
  741. this.open = true;
  742. if (this.objValue.enginClassValue == '阀管') {
  743. getEnginMaterialQualityList("民用工程", this.objValue.enginType, this.objValue.enginClassification,
  744. this
  745. .objValue.enginClassValue, "灶具管厂家").then(response => {
  746. this.selectList = response.data;
  747. });
  748. } else {
  749. getEnginMaterialQualityList("民用工程", this.objValue.enginType, this.objValue.enginClassification,
  750. this
  751. .objValue.enginClassValue).then(response => {
  752. this.selectList = response.data;
  753. });
  754. }
  755. } else if (e == 'gg') { //规格
  756. if (this.isEmpty(this.materialValue.id)) {
  757. if (this.objValue.enginClassValue == '阀管') {
  758. this.$modal.msg('请选择灶具管厂家')
  759. } else {
  760. this.$modal.msg('请选择材质')
  761. }
  762. } else {
  763. this.open = true;
  764. this.selectList = this.materialList;
  765. }
  766. } else if (e == 'fsdj') {
  767. this.open = true;
  768. getEnginMaterialQualityList("民用工程", this.objValue.enginType, this.objValue.enginClassification, this
  769. .objValue.enginClassValue).then(response => {
  770. this.selectList = response.data;
  771. });
  772. } else if (e == 'kj') {
  773. //孔距
  774. this.open = true;
  775. getEnginMaterialQualityList("民用工程", this.objValue.enginType, this.objValue.enginClassification, this
  776. .objValue.enginClassValue).then(response => {
  777. this.selectList = response.data;
  778. });
  779. } else if (e == 'gczq') { //工程周期
  780. this.openDict = true;
  781. getDicts("engin_cycle").then(response => {
  782. this.dictOptions = response.data;
  783. });
  784. } else if (e == 'xzq') { //行政区
  785. if (this.isEmpty(this.projectValue.dictValue)) {
  786. this.$modal.msg('请选择工程周期')
  787. } else {
  788. this.openDict = true;
  789. getDicts("district").then(response => {
  790. this.dictOptions = response.data;
  791. });
  792. }
  793. //this.selectList = this.dictOptions;
  794. } else if (e == 'xq') { //小区
  795. if (this.isEmpty(this.XZQValue.dictValue)) {
  796. getAreaList('').then(res => {
  797. this.XQList = res.data;
  798. this.open = true;
  799. this.selectList = this.XQList;
  800. })
  801. } else {
  802. this.open = true;
  803. this.selectList = this.XQList;
  804. }
  805. } else if (e == 'ld') { //楼栋
  806. if (this.isEmpty(this.XQValue.id)) {
  807. this.$modal.msg('请选择小区')
  808. } else {
  809. this.open = true;
  810. this.selectList = this.LDList;
  811. }
  812. } else if (e == 'dy') { //单元
  813. if (this.isEmpty(this.LDValue.id)) {
  814. this.$modal.msg('请选择楼栋')
  815. } else {
  816. this.open = true;
  817. this.selectList = this.DYList;
  818. }
  819. } else if (e == 'fj') { //房间
  820. if (this.isEmpty(this.DYValue.id)) {
  821. this.$modal.msg('请选择单元')
  822. } else {
  823. this.open = true;
  824. this.selectList = this.FJList;
  825. }
  826. }
  827. },
  828. switchChange(e) {
  829. //'switch 发生 change 事件,携带值为', e.detail.value)
  830. this.isCheck = e.detail.value;
  831. },
  832. changeSelectDict(item, index) {
  833. this.openDict = false;
  834. if (this.type == 'door') {
  835. this.doorValue = item
  836. } else if (this.type == 'gczq') {
  837. this.projectValue = item
  838. if (!this.isEmpty(this.FJValue.id)) {
  839. //房间选完 判断 工程周期 工程周期切换
  840. this.getStatus();
  841. }
  842. } else if (this.type == 'xzq') {
  843. this.XZQValue = item;
  844. //根据行政区id获取小区数据
  845. this.XQValue = ''; //重置小区数据
  846. this.LDValue = ''; //重置楼栋数据
  847. this.DYValue = ''; //重置单元数据
  848. this.FJValue = ''; //重置房间数据
  849. this.currentResidentsPhoe = [];
  850. this.historyName = "";
  851. this.houseHeadName = "";
  852. this.houseHeadPhone = "";
  853. this.houseHeadIDcardNumber = "";
  854. this.administrative = "";
  855. getAreaList(item.dictValue).then(res => {
  856. this.XQList = res.data;
  857. })
  858. }
  859. },
  860. changeSelect(item, index) {
  861. // this.index = index;
  862. // this.address = item.communityName;
  863. this.open = false;
  864. if (this.type == 'cz') {
  865. this.materialValue = item;
  866. this.specificationValue = ''; //重置规格
  867. //根据材质ID 获取规格数据
  868. getEnginSpecificationsList(item.id).then(res => {
  869. this.materialList = res.data
  870. })
  871. } else if (this.type == 'gg') {
  872. this.specificationValue = item;
  873. } else if (this.type == 'xq') {
  874. this.XZQValue = {
  875. dictValue: item.district,
  876. dictLabel: item.districtName
  877. };
  878. this.XQValue = item;
  879. //根据小区id 获取楼栋数据
  880. this.LDValue = ''; //重置楼栋数据
  881. this.DYValue = ''; //重置单元数据
  882. this.FJValue = ''; //重置房间数据
  883. this.currentResidentsPhoe = [];
  884. this.historyName = "";
  885. this.houseHeadName = "";
  886. this.houseHeadPhone = "";
  887. this.houseHeadIDcardNumber = "";
  888. this.administrative = item.administrative;
  889. getBuildingList(item.id).then(res => {
  890. this.LDList = res.data
  891. })
  892. } else if (this.type == 'ld') {
  893. this.LDValue = item;
  894. //根据楼栋ID 获取单元数据
  895. this.DYValue = ''; //重置单元数据
  896. this.FJValue = ''; //重置房间数据
  897. this.currentResidentsPhoe = [];
  898. this.historyName = "";
  899. this.houseHeadName = "";
  900. this.houseHeadPhone = "";
  901. this.houseHeadIDcardNumber = "";
  902. getUnitList(item.id).then(res => {
  903. this.DYList = res.data
  904. })
  905. } else if (this.type == 'dy') {
  906. this.DYValue = item;
  907. //根据单元数据 获取房间数据
  908. this.FJValue = ''; //重置房间数据
  909. this.currentResidentsPhoe = [];
  910. this.historyName = "";
  911. this.houseHeadName = "";
  912. this.houseHeadPhone = "";
  913. this.houseHeadIDcardNumber = "";
  914. getHousesList(item.id).then(res => {
  915. this.FJList = res.data
  916. })
  917. } else if (this.type == 'fj') {
  918. this.FJValue = item;
  919. this.history();
  920. this.houseHeadName = item.houseUserName;
  921. this.houseHeadPhone = item.phone;
  922. this.houseHeadIDcardNumber = item.idCard;
  923. this.currentResidentsPhoe = [];
  924. if (!this.isEmpty(item.newPhone)) {
  925. let str = item.newPhone;
  926. var array = str.split(",");
  927. array.forEach((list) => {
  928. this.currentResidentsPhoe.push({
  929. phone: list
  930. })
  931. })
  932. }
  933. if (!this.isEmpty(this.projectValue.id)) {
  934. //房间选完 判断 工程周期
  935. this.getStatus();
  936. }
  937. } else if (this.type == 'zbf') {
  938. this.SelfClosValve = item
  939. } else if (this.type == 'brand') {
  940. this.brandValue = item
  941. } else {
  942. this.LevelValue = item;
  943. }
  944. },
  945. //关闭弹窗
  946. close(e) {
  947. this.open = false
  948. },
  949. //关闭弹窗
  950. closeDict(e) {
  951. this.openDict = false
  952. },
  953. getStatus() {
  954. let param = {
  955. areaId: this.XQValue.id, // 小区id
  956. buildingId: this.LDValue.id, // 楼宇id
  957. unitId: this.DYValue.id, // 单元id
  958. houseId: this.FJValue.id, // 房间id
  959. enginCycle: this.projectValue.id, // 工程周期
  960. enginType: this.objValue.enginType, //写死 上一页面传过来的
  961. enginClassification: this.objValue.enginClassification, //写死 上一页面传过来的 //室内 - 庭院 - 架空
  962. }
  963. getRoomProjectId(param).then(res => {
  964. if (res.code == '200') {
  965. if (res.data != null && res.data.zEngineeringNodeBoList != null) {
  966. res.data.zEngineeringNodeBoList.forEach((item, index) => {
  967. if (this.objValue.enginClassValue == item.type) {
  968. this.reviewStatus = item.reviewStatus;
  969. if (item.reviewStatus == '1')
  970. this.$modal.msg('当前工程已结束')
  971. }
  972. })
  973. } else {
  974. this.reviewStatus = '' //置空
  975. }
  976. } else {
  977. this.$modal.msg(res.msg)
  978. this.reviewStatus = '' //置空
  979. }
  980. })
  981. },
  982. serchByCard() {
  983. if (this.isEmpty(this.idCard)) {
  984. this.$modal.msg("请输入身份证号码")
  985. return
  986. }
  987. if (!this.$validation.idCard(this.idCard)) {
  988. this.$modal.msg("身份证号码格式不正确")
  989. return
  990. }
  991. getRoomDetailsIDCard(this.idCard).then(res => {
  992. if (res.code == '200' && res.data != null) {
  993. if (!this.isEmpty(res.data.newPhone)) {
  994. this.currentResidentsPhoe = [];
  995. let str = res.data.newPhone;
  996. var array = str.split(",");
  997. array.forEach((list) => {
  998. this.currentResidentsPhoe.push({
  999. phone: list
  1000. })
  1001. })
  1002. }
  1003. this.houseHeadName = res.data.houseUserName;
  1004. this.houseHeadIDcardNumber = res.data.idCard;
  1005. this.houseHeadPhone = res.data.phone;
  1006. this.XZQValue = {
  1007. dictValue: res.data.district,
  1008. dictLabel: res.data.districtName
  1009. };
  1010. this.XQValue = {
  1011. id: res.data.areaId,
  1012. name: res.data.areaName
  1013. }
  1014. this.LDValue = {
  1015. id: res.data.buildingId,
  1016. name: res.data.buildingName
  1017. }
  1018. this.DYValue = {
  1019. id: res.data.unitId,
  1020. name: res.data.unitName
  1021. }
  1022. this.FJValue = {
  1023. id: res.data.id,
  1024. name: res.data.name
  1025. }
  1026. getAreaList(this.XZQValue.dictValue).then(res => {
  1027. this.XQList = res.data;
  1028. })
  1029. getBuildingList(this.XQValue.id).then(res => {
  1030. this.LDList = res.data
  1031. })
  1032. getUnitList(this.LDValue.id).then(res => {
  1033. this.DYList = res.data
  1034. })
  1035. getHousesList(this.DYValue.id).then(res => {
  1036. this.FJList = res.data
  1037. })
  1038. }
  1039. })
  1040. },
  1041. //提交数据
  1042. submit(e) {
  1043. this.tempState = e == 'submit' ? '' : '99'
  1044. if (this.isEmpty(this.projectValue.dictValue)) {
  1045. this.$modal.msg("请选择工程周期")
  1046. return
  1047. }
  1048. if (this.isEmpty(this.XZQValue.dictValue)) {
  1049. this.$modal.msg("请选择行政区")
  1050. return
  1051. }
  1052. if (this.isEmpty(this.XQValue.id)) {
  1053. this.$modal.msg("请选择小区")
  1054. return
  1055. }
  1056. if (this.isEmpty(this.LDValue.id)) {
  1057. this.$modal.msg("请选择楼栋")
  1058. return
  1059. }
  1060. if (this.isEmpty(this.DYValue.id)) {
  1061. this.$modal.msg("请选择单元")
  1062. return
  1063. }
  1064. if (this.isEmpty(this.FJValue.id)) {
  1065. this.$modal.msg("请选择房间")
  1066. return
  1067. }
  1068. uni.setStorageSync("XZQValue", this.XZQValue)
  1069. uni.setStorageSync("XQValue", this.XQValue)
  1070. uni.setStorageSync("LDValue", this.LDValue)
  1071. uni.setStorageSync("DYValue", this.DYValue)
  1072. uni.setStorageSync("FJValue", this.FJValue)
  1073. try {
  1074. this.currentResidentsPhoe.forEach((list) => {
  1075. if (this.isEmpty(list.phone)) {
  1076. this.$modal.msg('现住人电话不能为空')
  1077. throw new Error('End Loop')
  1078. }
  1079. if (list.phone.length == 11 || list.phone.length == 8) {} else {
  1080. this.$modal.msg('现住人电话填写错误')
  1081. throw new Error('End Loop')
  1082. }
  1083. })
  1084. } catch (e) {
  1085. if (e.message === 'End Loop') throw e
  1086. }
  1087. if (this.objValue.enginClassValue == '报警器' || this.objValue.enginClassValue == '切断阀') {
  1088. if (this.isEmpty(this.brandValue.id)) {
  1089. this.$modal.msg("请选择厂家")
  1090. } else {
  1091. this.onsubmit();
  1092. }
  1093. } else if (this.objValue.enginClassValue == '打孔') {
  1094. // if (this.isEmpty(this.LevelValue.id)) {
  1095. // this.$modal.msg("请选择孔距") //打孔 判断孔距
  1096. // } else {
  1097. this.onsubmit();
  1098. //}
  1099. } else if (this.objValue.enginClassValue == '拆旧管') {
  1100. if (this.currentResidentsPhoe.length == 0) {
  1101. this.$modal.msg('现住人电话不能为空')
  1102. } else if (this.isEmpty(this.LevelValue.id)) {
  1103. this.$modal.msg("请选择腐蚀等级") //拆旧管 判断腐蚀等级
  1104. } else {
  1105. this.onsubmit();
  1106. }
  1107. } else if (this.objValue.enginClassValue == '立杠') {
  1108. //立杠 判断 材质 规格 米数
  1109. if (this.isEmpty(this.materialValue.id)) {
  1110. this.$modal.msg("请选择材质")
  1111. } else if (this.isEmpty(this.specificationValue.id)) {
  1112. this.$modal.msg("请选择规格")
  1113. } else if (this.isEmpty(this.inputIntegerNumberValue)) {
  1114. this.$modal.msg("请输入米数")
  1115. } else {
  1116. if (this.isEmpty(this.inputDecimalNumberValue)) {
  1117. this.inputNumberValue = this.inputIntegerNumberValue;
  1118. } else {
  1119. this.inputNumberValue = this.inputIntegerNumberValue + "." + this.inputDecimalNumberValue;
  1120. }
  1121. this.onsubmit();
  1122. }
  1123. } else if (this.objValue.enginClassValue == '挂表') {
  1124. //挂表 判断 品牌
  1125. if (this.isEmpty(this.brandValue.id)) {
  1126. this.$modal.msg("请选择品牌")
  1127. } else {
  1128. this.onsubmit();
  1129. }
  1130. } else if (this.objValue.enginClassValue == '表后管') {
  1131. //表后管 判断 材质 规格 米数 (为必须有一张照片和一个视频)
  1132. if (this.isEmpty(this.materialValue.id)) {
  1133. this.$modal.msg("请选择材质")
  1134. } else if (this.isEmpty(this.specificationValue.id)) {
  1135. this.$modal.msg("请选择规格")
  1136. } else if (this.isEmpty(this.inputIntegerNumberValue)) {
  1137. this.$modal.msg("请输入米数")
  1138. } else if (this.imgArr.length <= 0) {
  1139. this.$modal.msg('请上传照片或视频')
  1140. }
  1141. // else if (this.loading == false) {
  1142. // this.$modal.msg('照片或视频未上传完毕,无法提交!')
  1143. // }
  1144. else {
  1145. const hasImage = this.imgArr.some(item => item.endsWith('.jpg') || item.endsWith(
  1146. '.png') || item
  1147. .endsWith('.jpeg') || item.endsWith('.JPG') || item.endsWith('.PNG') || item
  1148. .endsWith('.JPEG'));
  1149. const hasVideo = this.imgArr.some(item => item.endsWith('.mp4') || item.endsWith('.MP4'));
  1150. if (hasImage && hasVideo) {
  1151. //表后管 特殊 提交
  1152. if (this.isEmpty(this.inputDecimalNumberValue)) {
  1153. this.inputNumberValue = this.inputIntegerNumberValue;
  1154. } else {
  1155. this.inputNumberValue = this.inputIntegerNumberValue + "." + this.inputDecimalNumberValue;
  1156. }
  1157. let phoneArr = [];
  1158. this.currentResidentsPhoe.forEach((list) => {
  1159. phoneArr.push(list.phone)
  1160. })
  1161. putRoomDetails(this.FJValue.id, phoneArr
  1162. .join())
  1163. .then(res => {
  1164. if (res.code == '200') {
  1165. let param = {
  1166. district: this.XZQValue.dictValue,
  1167. areaId: this.XQValue.id,
  1168. buildingId: this.LDValue.id,
  1169. unitId: this.DYValue.id,
  1170. houseId: this.FJValue.id,
  1171. enginType: this.objValue.enginType, //写死 上一页面传过来的
  1172. enginClassification: this.objValue
  1173. .enginClassification, //写死 上一页面传过来的 //室内 - 庭院 - 架空
  1174. enginCycle: this.projectValue.dictValue, //工程周期
  1175. zEngineeringNodeBo: {
  1176. type: this.objValue.enginClassValue, //写死 上一页面传过来的 (拆旧管等 字典值)
  1177. zEngineeringInfoBo: {
  1178. constructAccordingDrawings: this.isCheck, //是否按图纸施工
  1179. state: this.tempState,
  1180. zEngiineeringPhotoBoList: this.imgArr, //照片集合
  1181. zEngineeringMaterialBo: [{
  1182. materialQuality: this.materialValue.id, //材质
  1183. specifications: this.specificationValue.id, //规格
  1184. number: this.inputNumberValue //米数
  1185. }]
  1186. }
  1187. }
  1188. }
  1189. uni.showLoading()
  1190. addTearOldPipe(param).then(res => {
  1191. if (res.code == '200') {
  1192. uni.hideLoading()
  1193. uni.showToast({
  1194. title: res.msg,
  1195. icon: 'none',
  1196. //显示持续时间为 1秒
  1197. duration: 1000
  1198. });
  1199. uni.navigateBack();
  1200. }
  1201. })
  1202. }
  1203. })
  1204. } else {
  1205. this.$modal.msg('请至少上传一张照片和一个视频')
  1206. }
  1207. }
  1208. } else if (this.objValue.enginClassValue == '阀管') {
  1209. //阀管 判断 材质 规格 米数
  1210. if (this.isEmpty(this.doorValue.dictValue)) {
  1211. this.$modal.msg("请选择上门类型")
  1212. } else if (this.isEmpty(this.SelfClosValve.id)) {
  1213. this.$modal.msg("请选择自闭阀厂家")
  1214. } else if (this.isEmpty(this.materialValue.id)) {
  1215. this.$modal.msg("请选择材质")
  1216. } else if (this.isEmpty(this.specificationValue.id)) {
  1217. this.$modal.msg("请选择规格")
  1218. }
  1219. // else if (this.isEmpty(this.inputIntegerNumberValue)) {
  1220. // this.$modal.msg("请输入米数")
  1221. // }
  1222. else {
  1223. if (this.isEmpty(this.inputDecimalNumberValue)) {
  1224. this.inputNumberValue = this.inputIntegerNumberValue;
  1225. } else {
  1226. this.inputNumberValue = this.inputIntegerNumberValue + "." + this.inputDecimalNumberValue;
  1227. }
  1228. this.onsubmit();
  1229. }
  1230. }
  1231. },
  1232. onsubmit() {
  1233. if (this.imgArr.length <= 0) {
  1234. this.$modal.msg('请上传照片或视频')
  1235. }
  1236. // else if (this.loading == false) {
  1237. // this.$modal.msg('照片或视频未上传完毕,无法提交!')
  1238. // }
  1239. else {
  1240. let phoneArr = [];
  1241. this.currentResidentsPhoe.forEach((list) => {
  1242. phoneArr.push(list.phone)
  1243. })
  1244. putRoomDetails(this.FJValue.id, phoneArr.join())
  1245. .then(res => {
  1246. if (res.code == '200') {
  1247. this.againSubmit();
  1248. }
  1249. })
  1250. }
  1251. },
  1252. againSubmit() {
  1253. //提交
  1254. let param = '';
  1255. if (this.objValue.enginClassValue == '拆旧管' || this.objValue.enginClassValue ==
  1256. '打孔') { //拆旧管 打孔
  1257. param = {
  1258. district: this.XZQValue.dictValue,
  1259. areaId: this.XQValue.id,
  1260. buildingId: this.LDValue.id,
  1261. unitId: this.DYValue.id,
  1262. houseId: this.FJValue.id,
  1263. enginType: this.objValue.enginType, //写死 上一页面传过来的
  1264. enginClassification: this.objValue
  1265. .enginClassification, //写死 上一页面传过来的 //室内 - 庭院 - 架空
  1266. enginCycle: this.projectValue.dictValue, //工程周期
  1267. zEngineeringNodeBo: {
  1268. type: this.objValue.enginClassValue, //写死 上一页面传过来的 (拆旧管等 字典值)
  1269. zEngineeringInfoBo: {
  1270. constructAccordingDrawings: this.isCheck, //是否按图纸施工
  1271. state: this.tempState,
  1272. zEngiineeringPhotoBoList: this.imgArr, //照片集合
  1273. zEngineeringMaterialBo: [{
  1274. corrosionLevel: this.LevelValue.id //腐蚀等级 //孔距
  1275. }]
  1276. }
  1277. }
  1278. }
  1279. //this.onsubmit(param)
  1280. } else if (this.objValue.enginClassValue == '报警器' || this.objValue.enginClassValue ==
  1281. '切断阀') { //报警器切断阀
  1282. param = {
  1283. district: this.XZQValue.dictValue,
  1284. areaId: this.XQValue.id,
  1285. buildingId: this.LDValue.id,
  1286. unitId: this.DYValue.id,
  1287. houseId: this.FJValue.id,
  1288. enginType: this.objValue.enginType, //写死 上一页面传过来的
  1289. enginClassification: this.objValue
  1290. .enginClassification, //写死 上一页面传过来的 //室内 - 庭院 - 架空
  1291. enginCycle: this.projectValue.dictValue, //工程周期
  1292. zEngineeringNodeBo: {
  1293. type: this.objValue.enginClassValue, //写死 上一页面传过来的 (拆旧管等 字典值)
  1294. zEngineeringInfoBo: {
  1295. constructAccordingDrawings: this.isCheck, //是否按图纸施工
  1296. state: this.tempState,
  1297. zEngiineeringPhotoBoList: this.imgArr, //照片集合
  1298. zEngineeringMaterialBo: [{
  1299. brand: this.brandValue.id, //品牌
  1300. // number: this.inputNumberValue //米数
  1301. }]
  1302. }
  1303. }
  1304. }
  1305. } else if (this.objValue.enginClassValue == '立杠') { //立杠
  1306. param = {
  1307. district: this.XZQValue.dictValue,
  1308. areaId: this.XQValue.id,
  1309. buildingId: this.LDValue.id,
  1310. unitId: this.DYValue.id,
  1311. houseId: this.FJValue.id,
  1312. enginType: this.objValue.enginType, //写死 上一页面传过来的
  1313. enginClassification: this.objValue
  1314. .enginClassification, //写死 上一页面传过来的 //室内 - 庭院 - 架空
  1315. enginCycle: this.projectValue.dictValue, //工程周期
  1316. zEngineeringNodeBo: {
  1317. type: this.objValue.enginClassValue, //写死 上一页面传过来的 (拆旧管等 字典值)
  1318. zEngineeringInfoBo: {
  1319. constructAccordingDrawings: this.isCheck, //是否按图纸施工
  1320. state: this.tempState,
  1321. zEngiineeringPhotoBoList: this.imgArr, //照片集合
  1322. zEngineeringMaterialBo: [{
  1323. materialQuality: this.materialValue.id, //材质
  1324. specifications: this.specificationValue.id, //规格
  1325. number: this.inputNumberValue //米数
  1326. }]
  1327. }
  1328. }
  1329. }
  1330. } else if (this.objValue.enginClassValue == '挂表') { //挂表
  1331. param = {
  1332. district: this.XZQValue.dictValue,
  1333. areaId: this.XQValue.id,
  1334. buildingId: this.LDValue.id,
  1335. unitId: this.DYValue.id,
  1336. houseId: this.FJValue.id,
  1337. enginType: this.objValue.enginType, //写死 上一页面传过来的
  1338. enginClassification: this.objValue
  1339. .enginClassification, //写死 上一页面传过来的 //室内 - 庭院 - 架空
  1340. enginCycle: this.projectValue.dictValue, //工程周期
  1341. zEngineeringNodeBo: {
  1342. type: this.objValue.enginClassValue, //写死 上一页面传过来的 (拆旧管等 字典值)
  1343. zEngineeringInfoBo: {
  1344. constructAccordingDrawings: this.isCheck, //是否按图纸施工
  1345. state: this.tempState,
  1346. zEngiineeringPhotoBoList: this.imgArr, //照片集合
  1347. zEngineeringMaterialBo: [{
  1348. brand: this.brandValue.id, //品牌
  1349. //number: this.inputNumberValue //米数
  1350. }]
  1351. }
  1352. }
  1353. }
  1354. } else if (this.objValue.enginClassValue == '阀管') { //自闭阀
  1355. var onlyNumbers = this.specificationValue.name.replace(/[^\d.]/g, '');
  1356. param = {
  1357. district: this.XZQValue.dictValue,
  1358. areaId: this.XQValue.id,
  1359. buildingId: this.LDValue.id,
  1360. unitId: this.DYValue.id,
  1361. houseId: this.FJValue.id,
  1362. enginType: this.objValue.enginType, //写死 上一页面传过来的
  1363. enginClassification: this.objValue
  1364. .enginClassification, //写死 上一页面传过来的 //室内 - 庭院 - 架空
  1365. enginCycle: this.projectValue.dictValue, //工程周期
  1366. zEngineeringNodeBo: {
  1367. type: this.objValue.enginClassValue, //写死 上一页面传过来的 (拆旧管等 字典值)
  1368. zEngineeringInfoBo: {
  1369. constructAccordingDrawings: this.isCheck, //是否按图纸施工
  1370. state: this.tempState,
  1371. zEngiineeringPhotoBoList: this.imgArr, //照片集合
  1372. zEngineeringMaterialBo: [{
  1373. visitType: this.doorValue.dictValue, //上门类型
  1374. selfClosingValveType: this.SelfClosValve.id, //自闭阀类型
  1375. materialQuality: this.materialValue.id, //材质
  1376. specifications: this.specificationValue.id, //规格
  1377. number: onlyNumbers //米数
  1378. }]
  1379. }
  1380. }
  1381. }
  1382. }
  1383. uni.showLoading()
  1384. addTearOldPipe(param).then(res => {
  1385. if (res.code == '200') {
  1386. uni.hideLoading()
  1387. uni.showToast({
  1388. title: res.msg,
  1389. icon: 'none',
  1390. //显示持续时间为 3秒
  1391. duration: 2000
  1392. });
  1393. setTimeout(function() {
  1394. uni.navigateBack();
  1395. }, 1000)
  1396. }
  1397. })
  1398. },
  1399. history() {
  1400. if (this.isEmpty(this.projectValue.dictValue)) {
  1401. this.$modal.msg("请选择工程周期")
  1402. return
  1403. }
  1404. if (this.isEmpty(this.XZQValue.dictValue)) {
  1405. this.$modal.msg("请选择行政区")
  1406. return
  1407. }
  1408. if (this.isEmpty(this.XQValue.id)) {
  1409. this.$modal.msg("请选择小区")
  1410. return
  1411. }
  1412. if (this.isEmpty(this.LDValue.id)) {
  1413. this.$modal.msg("请选择楼栋")
  1414. return
  1415. }
  1416. if (this.isEmpty(this.DYValue.id)) {
  1417. this.$modal.msg("请选择单元")
  1418. return
  1419. }
  1420. if (this.isEmpty(this.FJValue.id)) {
  1421. this.$modal.msg("请选择房间")
  1422. return
  1423. }
  1424. let param = {
  1425. areaId: this.XQValue.id, // 小区id
  1426. buildingId: this.LDValue.id, // 楼宇id
  1427. unitId: this.DYValue.id, // 单元id
  1428. houseId: this.FJValue.id, // 房间id
  1429. enginCycle: this.projectValue.dictValue, // 工程周期
  1430. enginType: this.objValue.enginType, //写死 上一页面传过来的
  1431. enginClassification: this.objValue.enginClassification, //写死 上一页面传过来的 //室内 - 庭院 - 架空
  1432. }
  1433. getRoomProjectId(param).then(res => {
  1434. if (res.code == '200') {
  1435. if (res.data != null) {
  1436. getRoomProjectList(res.data.id, this.objValue.enginClassValue).then(res => {
  1437. // this.historyName = res.data.zEngineeringNodeBo.reviewStatus == '0' ?
  1438. // '未通过' : '已通过'
  1439. if (res.data.zEngineeringNodeBo.reviewStatus != null && res.data.zEngineeringNodeBo.reviewStatus == '99') {
  1440. this.historyName = '恢复暂存';
  1441. } else {
  1442. this.historyName = '';
  1443. }
  1444. this.historyList = res.data
  1445. if (res.data.zEngineeringNodeBo != null) {
  1446. if (res.data.zEngineeringNodeBo.reviewStatus == '1') {
  1447. // this.showHistoryList();
  1448. this.$modal.msg("当前步骤以审核通过请谨慎!")
  1449. } else if (res.data.zEngineeringNodeBo.reviewStatus == '99') {
  1450. let dataJson = res.data.zEngineeringNodeBo
  1451. .zEngineeringInfoBoList[0];
  1452. this.imgArr = dataJson.zEngiineeringPhotoBoList;
  1453. if (this.objValue.enginClassValue == '拆旧管') {
  1454. this.LevelValue.id = dataJson
  1455. .zEngineeringMaterialBo[0]
  1456. .corrosionLevel
  1457. this.LevelValue.name = dataJson
  1458. .zEngineeringMaterialBo[0]
  1459. .corrosionLevelName
  1460. } else if (this.objValue.enginClassValue == '立杠' || this.objValue
  1461. .enginClassValue == '表后管') {
  1462. this.materialValue.id = dataJson.zEngineeringMaterialBo[0].materialQuality;
  1463. this.specificationValue.id = dataJson
  1464. .zEngineeringMaterialBo[0]
  1465. .specifications;
  1466. this.materialValue.name = dataJson.zEngineeringMaterialBo[0]
  1467. .materialQualityName;
  1468. this.specificationValue.name = dataJson
  1469. .zEngineeringMaterialBo[0].specificationsName;
  1470. this.inputIntegerNumberValue = this.getIntegerPart(
  1471. dataJson
  1472. .zEngineeringMaterialBo[0].number, 0);
  1473. this.inputDecimalNumberValue = this.getIntegerPart(dataJson
  1474. .zEngineeringMaterialBo[0].number, 1);
  1475. } else if (this.objValue.enginClassValue == '报警器' || this.objValue
  1476. .enginClassValue == '切断阀' || this.objValue
  1477. .enginClassValue == '挂表') {
  1478. this.brandValue.id = dataJson.zEngineeringMaterialBo[0]
  1479. .brand
  1480. this.brandValue.name = dataJson.zEngineeringMaterialBo[0]
  1481. .brandName
  1482. } else if (this.objValue.enginClassValue == '阀管') {
  1483. this.doorValue.dictValue = dataJson
  1484. .zEngineeringMaterialBo[0]
  1485. .visitType;
  1486. this.doorValue.dictLabel = dataJson
  1487. .zEngineeringMaterialBo[0]
  1488. .visitType;
  1489. this.SelfClosValve.id = dataJson
  1490. .zEngineeringMaterialBo[0]
  1491. .selfClosingValveType;
  1492. this.SelfClosValve.name = dataJson
  1493. .zEngineeringMaterialBo[0]
  1494. .selfClosingValveTypeName;
  1495. this.materialValue.id = dataJson
  1496. .zEngineeringMaterialBo[0]
  1497. .materialQuality;
  1498. this.specificationValue.id = dataJson
  1499. .zEngineeringMaterialBo[0]
  1500. .specifications;
  1501. this.materialValue.name = dataJson.zEngineeringMaterialBo[0]
  1502. .materialQualityName;
  1503. this.specificationValue.name = dataJson
  1504. .zEngineeringMaterialBo[0].specificationsName;
  1505. }
  1506. }
  1507. } else {
  1508. this.$modal.msg("暂无历史信息")
  1509. }
  1510. })
  1511. } else {
  1512. this.$modal.msg("暂无工程信息")
  1513. }
  1514. } else {
  1515. this.$modal.msg(res.msg)
  1516. }
  1517. })
  1518. },
  1519. getIntegerPart(numStr, i) {
  1520. return numStr.toString().split('.')[i] == undefined ? '0' : numStr.toString().split('.')[i];
  1521. },
  1522. setInfoBoNumber(key, number, i) {
  1523. let Ynumber = this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[key].zEngineeringMaterialBo[0]
  1524. .number;
  1525. let resAry = Ynumber.toString().split('.');
  1526. resAry[i] = number
  1527. this.dataJson.zEngineeringNodeBo.zEngineeringInfoBoList[key].zEngineeringMaterialBo[0].number = resAry
  1528. .join('.');
  1529. },
  1530. showHistoryList() {
  1531. this.$refs.refShare.handleShowShare();
  1532. }
  1533. }
  1534. }
  1535. </script>
  1536. <style lang="scss">
  1537. .container {
  1538. display: flex;
  1539. align-items: center;
  1540. justify-content: space-between;
  1541. padding: 10px;
  1542. position: relative;
  1543. }
  1544. .uni-list {
  1545. border: 1xp solid #eee;
  1546. }
  1547. .to-right-icon {
  1548. width: 15px;
  1549. height: 15px;
  1550. position: absolute;
  1551. top: 50%;
  1552. transform: translateY(-50%);
  1553. }
  1554. .text {
  1555. font-size: 16px;
  1556. color: #333;
  1557. }
  1558. .background {
  1559. // border: 15px solid hsla(0, 0%, 100%, .5);
  1560. background: white;
  1561. background-clip: padding-box;
  1562. padding: 20rpx;
  1563. border-radius: 20rpx;
  1564. margin: 20rpx 10rpx;
  1565. /*从padding开始往外面裁剪背景*/
  1566. }
  1567. .btn {
  1568. width: 715rpx;
  1569. height: 69rpx;
  1570. background: #79A4F0;
  1571. border-radius: 6rpx;
  1572. font-size: 25rpx;
  1573. font-family: Microsoft YaHei;
  1574. font-weight: 400;
  1575. color: #FFFFFF;
  1576. line-height: 69rpx;
  1577. margin-top: 40rpx;
  1578. margin-bottom: 100rpx;
  1579. }
  1580. .number {
  1581. display: flex;
  1582. /* 水平居中显示子元素 */
  1583. align-items: flex-start;
  1584. /* 垂直居中显示子元素 */
  1585. justify-content: space-between;
  1586. /* 左右间距等于间距大小 */
  1587. padding: 10px;
  1588. /* 设置padding以提高视觉效果 */
  1589. }
  1590. .tj-btn {
  1591. height: 69rpx;
  1592. background: #3184f0;
  1593. border-radius: 6rpx;
  1594. font-size: 25rpx;
  1595. font-weight: 400;
  1596. color: #FFFFFF;
  1597. line-height: 69rpx;
  1598. margin: 40rpx 70rpx;
  1599. }
  1600. .sc-btn {
  1601. height: 69rpx;
  1602. background: #f0686b;
  1603. border-radius: 6rpx;
  1604. font-size: 25rpx;
  1605. font-weight: 400;
  1606. color: #FFFFFF;
  1607. line-height: 69rpx;
  1608. margin: 40rpx;
  1609. }
  1610. .num-style {
  1611. background: #e8f4f9;
  1612. margin: 20rpx;
  1613. padding: 10rpx;
  1614. border-radius: 20rpx;
  1615. border: 1px solid #d4e3f0;
  1616. }
  1617. .textarea {
  1618. margin-top: 10upx;
  1619. width: 100%;
  1620. border: 1rpx solid red;
  1621. min-height: 100upx;
  1622. line-height: 20px;
  1623. }
  1624. page {
  1625. background: #f2f2f2;
  1626. }
  1627. .flex-x {
  1628. display: flex;
  1629. align-items: center;
  1630. }
  1631. .template_title,
  1632. .template_title1,
  1633. .template_title_list {
  1634. height: 90rpx;
  1635. background: #fff;
  1636. justify-content: space-between;
  1637. padding: 0 30rpx;
  1638. box-sizing: border-box;
  1639. }
  1640. .template_title1 {
  1641. background: none;
  1642. }
  1643. .template_title_list {
  1644. margin-bottom: 4rpx;
  1645. }
  1646. .template_title>view,
  1647. .template_title1>view {
  1648. font-size: 32rpx;
  1649. color: #8f8f8f;
  1650. flex-shrink: 0;
  1651. margin-right: 20rpx;
  1652. }
  1653. .template_title>input {
  1654. font-size: 28rpx;
  1655. color: #808080;
  1656. text-align: right;
  1657. flex-grow: 1;
  1658. }
  1659. /* 添加内容 */
  1660. .add_con>text {
  1661. font-size: 40rpx;
  1662. color: #f16765;
  1663. display: block;
  1664. margin-right: 20rpx;
  1665. margin-left: 10rpx;
  1666. line-height: 44rpx;
  1667. }
  1668. .add_con>view {
  1669. font-size: 32rpx;
  1670. color: #7885cb;
  1671. }
  1672. /* 删除内容 */
  1673. .del {
  1674. font-size: 32rpx;
  1675. color: #f16765;
  1676. margin-right: 14rpx;
  1677. padding: 20rpx;
  1678. }
  1679. input {
  1680. flex-grow: 1;
  1681. font-size: 28rpx;
  1682. color: #808080;
  1683. }
  1684. // .container {
  1685. // display: flex;
  1686. // align-items: center;
  1687. // justify-content: space-between;
  1688. // padding: 10px;
  1689. // position: relative;
  1690. // }
  1691. // .uni-list {
  1692. // border: 1xp solid #eee;
  1693. // }
  1694. // .to-right-icon {
  1695. // width: 15px;
  1696. // height: 15px;
  1697. // position: absolute;
  1698. // top: 50%;
  1699. // transform: translateY(-50%);
  1700. // }
  1701. // .text {
  1702. // font-size: 16px;
  1703. // color: #333;
  1704. // }
  1705. // .background {
  1706. // // border: 15px solid hsla(0, 0%, 100%, .5);
  1707. // background: white;
  1708. // background-clip: padding-box;
  1709. // padding: 20rpx;
  1710. // border-radius: 20rpx;
  1711. // margin: 20rpx;
  1712. // /*从padding开始往外面裁剪背景*/
  1713. // }
  1714. // .btn {
  1715. // width: 715rpx;
  1716. // height: 69rpx;
  1717. // background: #79A4F0;
  1718. // border-radius: 6rpx;
  1719. // font-size: 25rpx;
  1720. // font-family: Microsoft YaHei;
  1721. // font-weight: 400;
  1722. // color: #FFFFFF;
  1723. // line-height: 69rpx;
  1724. // margin-top: 40rpx;
  1725. // margin-bottom: 100rpx;
  1726. // }
  1727. // .number {
  1728. // display: flex;
  1729. // /* 水平居中显示子元素 */
  1730. // align-items: flex-start;
  1731. // /* 垂直居中显示子元素 */
  1732. // justify-content: space-between;
  1733. // /* 左右间距等于间距大小 */
  1734. // padding: 10px;
  1735. // /* 设置padding以提高视觉效果 */
  1736. // }
  1737. // .textarea {
  1738. // margin-top: 10upx;
  1739. // width: 100%;
  1740. // border: 1rpx solid red;
  1741. // min-height: 100upx;
  1742. // line-height: 20px;
  1743. // }
  1744. </style>