Withholdingrecord.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. <template>
  2. <view class="billall">
  3. <u-cell-group class="toptemplate">
  4. <u-cell :title="mytitle" @click="floorchange">
  5. <u-icon slot="icon" size="40" color="#fff" name="map"></u-icon>
  6. <u-icon slot="right-icon" size="40" color="#fff" name="search"></u-icon>
  7. </u-cell>
  8. </u-cell-group>
  9. <view class="topbill">
  10. <view class="topbilledit">
  11. <!-- <view class="changetime1">
  12. <picker mode="date" :value="myday" fields="month" @change="dateChange">
  13. <view class="selestDate">{{myday}}</view>
  14. </picker>
  15. </view>
  16. <view class="changetime2">
  17. <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
  18. </view> -->
  19. </view>
  20. <view class="topbilledit" @click="typechange">
  21. <view class="changetime1">
  22. {{mytype}}
  23. </view>
  24. <view class="changetime2">
  25. <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="u-listdata">
  30. <view style="padding:10rpx 0 0 30rpx">
  31. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  32. </view>
  33. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  34. <u-list-item v-for="(item, index) in indexList" :key="index">
  35. <view class="companylist" @click="seedetail(item)">
  36. <view class="outstanding">
  37. 预存
  38. </view>
  39. <h3>{{item.tenantInfo.name}}</h3>
  40. <view class="Currentamount">
  41. 扣缴金额: <span>¥{{item.surplus}}</span>
  42. </view>
  43. <view class="Currentamount">
  44. 租户电话: {{item.tenantInfo.tel}}
  45. </view>
  46. <view class="Currentamount">
  47. 操作人:{{item.createName}}
  48. </view>
  49. <view class="Currentamount">
  50. 扣缴时间: {{item.createDate}}
  51. </view>
  52. </view>
  53. </u-list-item>
  54. </u-list>
  55. </view>
  56. <u-picker :show="showtype" :columns="columnstype" keyName="dictLabel" @confirm="confirmtype"
  57. @cancel='canceltype'></u-picker>
  58. <u-picker :show="showfloor" ref="uPicker" :loading="loading" @confirm="confirmfloor" @cancel='cancelfloor'
  59. :columns="columns" keyName="orgName" @change="changeHandler"></u-picker>
  60. <u-notify ref="uNotify" :show="showdct" message="服务器请求失败"></u-notify>
  61. </view>
  62. </template>
  63. <script>
  64. //import { isEmpty, getDictDataList } from "@/utils/index";
  65. export default {
  66. components: {
  67. },
  68. data() {
  69. return {
  70. totalnumber: 0,
  71. setyesno: true,
  72. indexList: [],
  73. dataList: [],
  74. dataForm: {
  75. projectId: "",
  76. buildingId: "",
  77. storeyId: "",
  78. type: "",
  79. tenantId: "",
  80. page: 1,
  81. limit: 10,
  82. },
  83. pd: true,
  84. showtype: false,
  85. showdct: false,
  86. mytitle: '',
  87. alldata: [],
  88. showfloor: false,
  89. loading: false,
  90. columns: [],
  91. columnData: [],
  92. myday: '',
  93. mytype: '全部',
  94. showPicker: false,
  95. //myday: currentDate,
  96. columnstype: [
  97. ],
  98. }
  99. },
  100. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  101. onLoad() {
  102. let getDictDataList = uni.getStorageSync('getDictDataList');
  103. // console.log('111111111111111111', getDictDataList)
  104. for (let i = 0; i < getDictDataList.length; i++) {
  105. if (getDictDataList[i].dictType == 'PayType') {
  106. this.columnstype = [getDictDataList[i].dataList]
  107. }
  108. }
  109. this.getfloor();
  110. // this.loadmore();
  111. },
  112. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  113. onReady() {
  114. // 微信小程序需要用此写法
  115. },
  116. //监听页面隐藏
  117. onHide() {},
  118. //监听窗口尺寸变化
  119. onResize() {},
  120. //监听页面卸载
  121. onUnload() {},
  122. //监听用户下拉动作,一般用于下拉刷新
  123. onPullDownRefresh() {},
  124. methods: {
  125. seedetail(e) {
  126. console.log('222', e)
  127. },
  128. scrolltolower() {
  129. if (this.pd) {
  130. this.getalldata();
  131. } else {
  132. return
  133. }
  134. },
  135. getalldata() {
  136. this.$api.get('/payrecord/page', this.dataForm)
  137. .then(res => {
  138. // this.totalnumber=res.data.data.total;
  139. // this.indexList = [];
  140. // this.indexList = res.data.data.list;
  141. this.totalnumber = res.data.data.total;
  142. if (res.data.data.list.length != 0) {
  143. this.indexList.push(...res.data.data.list);
  144. this.dataForm.page = this.dataForm.page + 1;
  145. this.pd = true;
  146. } else {
  147. uni.showToast({
  148. title: '暂无更多数据了',
  149. icon: 'none',
  150. duration: 1500
  151. })
  152. this.pd = false;
  153. }
  154. })
  155. },
  156. canceltype() {
  157. this.showtype = false;
  158. },
  159. confirmtype(e) {
  160. console.log('111111111111111111', e.value[0])
  161. this.showtype = false;
  162. if (e.value[0].dictValue == 'all') {
  163. this.mytype = e.value[0].dictLabel;
  164. this.indexList=[];
  165. this.dataForm.type = '';
  166. this.dataForm.page = 1;
  167. this.getalldata();
  168. } else {
  169. this.mytype = e.value[0].dictLabel;
  170. this.dataForm.type = e.value[0].dictValue;
  171. this.indexList=[];
  172. this.dataForm.page = 1;
  173. this.getalldata();
  174. }
  175. },
  176. typechange() {
  177. this.showtype = true;
  178. },
  179. getfloor() {
  180. this.$api.get('/control/getOrgStructureTree/', {})
  181. .then(res => {
  182. if (res.data.code == 0) {
  183. this.dataForm.projectId = res.data.data[0].orgId;
  184. this.mytitle = res.data.data[0].orgName;
  185. this.alldata = res.data.data[0].childrenList;
  186. //console.log('111111111111111111', res.data.data[0].childrenList)
  187. this.columns = [
  188. res.data.data[0].childrenList,
  189. res.data.data[0].childrenList[0].childrenList
  190. ]
  191. let allfloor = [];
  192. for (let i = 0; i < res.data.data[0].childrenList.length; i++) {
  193. allfloor.push(res.data.data[0].childrenList[i].childrenList)
  194. }
  195. // console.log('111111111111111111',allfloor)
  196. this.columnData = allfloor;
  197. this.indexList=[];
  198. this.dataForm.page = 1;
  199. this.getalldata();
  200. } else {
  201. this.showdct = true
  202. }
  203. })
  204. },
  205. floorchange() {
  206. this.showfloor = true;
  207. },
  208. changeHandler(e) {
  209. const {
  210. columnIndex,
  211. index,
  212. // 微信小程序无法将picker实例传出来,只能通过ref操作
  213. picker = this.$refs.uPicker
  214. } = e
  215. if (columnIndex === 0) {
  216. this.loading = true
  217. picker.setColumnValues(1, this.columnData[index])
  218. this.loading = false
  219. }
  220. // this.getalldata();
  221. },
  222. confirmfloor(e) {
  223. console.log('222222', e.value)
  224. this.mytitle = e.value[0].orgName + e.value[1].orgName;
  225. this.dataForm.buildingId = e.value[0].orgId;
  226. this.dataForm.storeyId = e.value[1].orgId;
  227. this.showfloor = false;
  228. this.indexList=[];
  229. this.dataForm.page = 1;
  230. this.getalldata();
  231. },
  232. cancelfloor() {
  233. this.showfloor = false;
  234. },
  235. }
  236. }
  237. </script>
  238. <style lang="scss">
  239. .Currentamount {
  240. padding-left: 30rpx;
  241. height: 50rpx;
  242. line-height: 50rpx;
  243. color: #BCB3A7;
  244. span {
  245. color: #FA5555;
  246. padding-left: 9rpx;
  247. }
  248. }
  249. .Callfee {
  250. width: 100rpx;
  251. height: 45rpx;
  252. text-align: center;
  253. line-height: 45rpx;
  254. color: #5C8FFF;
  255. border: 1px solid #5C8FFF;
  256. font-size: 22rpx;
  257. position: absolute;
  258. bottom: 10rpx;
  259. right: 10px;
  260. font-weight: bold;
  261. }
  262. .companylist {
  263. margin: 20rpx 30rpx;
  264. background: #fff;
  265. height: 280rpx;
  266. border-radius: 10px;
  267. position: relative;
  268. h3 {
  269. height: 70rpx;
  270. line-height: 70rpx;
  271. padding-left: 30rpx;
  272. }
  273. }
  274. .settled {
  275. background-color: #09C700;
  276. width: 100rpx;
  277. height: 40rpx;
  278. text-align: center;
  279. line-height: 40rpx;
  280. color: #fff;
  281. font-size: 14rpx;
  282. position: absolute;
  283. top: 0px;
  284. right: 0px;
  285. border-top-right-radius: 10rpx;
  286. border-bottom-left-radius: 10rpx;
  287. }
  288. .outstanding {
  289. background-color: #30D3A2;
  290. width: 100rpx;
  291. height: 40rpx;
  292. text-align: center;
  293. line-height: 40rpx;
  294. color: #fff;
  295. font-size: 14rpx;
  296. position: absolute;
  297. top: 0px;
  298. right: 0px;
  299. border-top-right-radius: 10rpx;
  300. border-bottom-left-radius: 10rpx;
  301. }
  302. .billall {}
  303. .topbill {
  304. display: flex;
  305. justify-content: center;
  306. align-items: center;
  307. height: 100rpx;
  308. background-color: #e6e6e6;
  309. }
  310. .topbilledit {
  311. display: flex;
  312. justify-content: space-around;
  313. align-items: center;
  314. }
  315. .changetime1 {
  316. padding-right: 10rpx;
  317. }
  318. </style>