Withholdingrecord.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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. {{item.type}}
  38. </view>
  39. <h3>{{item.tenantInfo.name}}</h3>
  40. <view class="Currentamount">
  41. 扣缴金额: <span>¥{{item.amount}}</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" :itemHeight="80" :columns="columnstype" keyName="dictLabel" @confirm="confirmtype"
  57. @cancel='canceltype'></u-picker>
  58. <u-picker :show="showfloor" :itemHeight="80" 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. feiyongtype:[],
  99. }
  100. },
  101. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  102. onLoad() {
  103. let getDictDataList = uni.getStorageSync('getDictDataList');
  104. // console.log('111111111111111111', getDictDataList)
  105. for (let i = 0; i < getDictDataList.length; i++) {
  106. if (getDictDataList[i].dictType == 'PayType') {
  107. this.columnstype = [getDictDataList[i].dataList]
  108. this.feiyongtype=getDictDataList[i].dataList;
  109. }
  110. }
  111. console.log('111111111111111111',this.columnstype)
  112. this.getfloor();
  113. // this.loadmore();
  114. },
  115. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  116. onReady() {
  117. // 微信小程序需要用此写法
  118. },
  119. //监听页面隐藏
  120. onHide() {},
  121. //监听窗口尺寸变化
  122. onResize() {},
  123. //监听页面卸载
  124. onUnload() {},
  125. //监听用户下拉动作,一般用于下拉刷新
  126. onPullDownRefresh() {},
  127. methods: {
  128. seedetail(e) {
  129. console.log('222', e)
  130. },
  131. scrolltolower() {
  132. if (this.pd) {
  133. this.getalldata();
  134. } else {
  135. return
  136. }
  137. },
  138. getalldata() {
  139. this.$api.get('/payrecord/page', this.dataForm)
  140. .then(res => {
  141. // this.totalnumber=res.data.data.total;
  142. // this.indexList = [];
  143. // this.indexList = res.data.data.list;
  144. this.totalnumber = res.data.data.total;
  145. function transform(a, b) {
  146. loop: for (let i = 0; i < a.length; i++) {
  147. for (let j = 0; j < b.length; j++) {
  148. if (a[i].type == b[j].dictValue) {
  149. a[i].type = b[j].dictLabel;
  150. continue loop;
  151. }
  152. }
  153. a[i].type = a[i].type;
  154. }
  155. return a;
  156. }
  157. let chulidata=transform(res.data.data.list, this.feiyongtype)
  158. if (res.data.data.list.length != 0) {
  159. this.indexList.push(...chulidata);
  160. this.dataForm.page = this.dataForm.page + 1;
  161. this.pd = true;
  162. } else {
  163. uni.showToast({
  164. title: '暂无更多数据了',
  165. icon: 'none',
  166. duration: 1500
  167. })
  168. this.pd = false;
  169. }
  170. })
  171. },
  172. canceltype() {
  173. this.showtype = false;
  174. },
  175. confirmtype(e) {
  176. console.log('111111111111111111', e.value[0])
  177. this.showtype = false;
  178. if (e.value[0].dictValue == 'all') {
  179. this.mytype = e.value[0].dictLabel;
  180. this.indexList=[];
  181. this.dataForm.type = '';
  182. this.dataForm.page = 1;
  183. this.getalldata();
  184. } else {
  185. this.mytype = e.value[0].dictLabel;
  186. this.dataForm.type = e.value[0].dictValue;
  187. this.indexList=[];
  188. this.dataForm.page = 1;
  189. this.getalldata();
  190. }
  191. },
  192. typechange() {
  193. this.showtype = true;
  194. },
  195. getfloor() {
  196. this.$api.get('/control/getOrgStructureTree/', {})
  197. .then(res => {
  198. if (res.data.code == 0) {
  199. this.dataForm.projectId = res.data.data[0].orgId;
  200. this.mytitle = res.data.data[0].orgName;
  201. this.alldata = res.data.data[0].childrenList;
  202. //console.log('111111111111111111', res.data.data[0].childrenList)
  203. this.columns = [
  204. res.data.data[0].childrenList,
  205. res.data.data[0].childrenList[0].childrenList
  206. ]
  207. let allfloor = [];
  208. for (let i = 0; i < res.data.data[0].childrenList.length; i++) {
  209. allfloor.push(res.data.data[0].childrenList[i].childrenList)
  210. }
  211. // console.log('111111111111111111',allfloor)
  212. this.columnData = allfloor;
  213. this.indexList=[];
  214. this.dataForm.page = 1;
  215. this.getalldata();
  216. } else {
  217. this.showdct = true
  218. }
  219. })
  220. },
  221. floorchange() {
  222. this.showfloor = true;
  223. },
  224. changeHandler(e) {
  225. const {
  226. columnIndex,
  227. index,
  228. // 微信小程序无法将picker实例传出来,只能通过ref操作
  229. picker = this.$refs.uPicker
  230. } = e
  231. if (columnIndex === 0) {
  232. this.loading = true
  233. picker.setColumnValues(1, this.columnData[index])
  234. this.loading = false
  235. }
  236. // this.getalldata();
  237. },
  238. confirmfloor(e) {
  239. console.log('222222', e.value)
  240. this.mytitle = e.value[0].orgName + e.value[1].orgName;
  241. this.dataForm.buildingId = e.value[0].orgId;
  242. this.dataForm.storeyId = e.value[1].orgId;
  243. this.showfloor = false;
  244. this.indexList=[];
  245. this.dataForm.page = 1;
  246. this.getalldata();
  247. },
  248. cancelfloor() {
  249. this.showfloor = false;
  250. },
  251. }
  252. }
  253. </script>
  254. <style lang="scss">
  255. .Currentamount {
  256. padding-left: 30rpx;
  257. height: 50rpx;
  258. line-height: 50rpx;
  259. color: #BCB3A7;
  260. span {
  261. color: #FA5555;
  262. padding-left: 9rpx;
  263. }
  264. }
  265. .Callfee {
  266. width: 100rpx;
  267. height: 45rpx;
  268. text-align: center;
  269. line-height: 45rpx;
  270. color: #5C8FFF;
  271. border: 1px solid #5C8FFF;
  272. font-size: 22rpx;
  273. position: absolute;
  274. bottom: 10rpx;
  275. right: 10px;
  276. font-weight: bold;
  277. }
  278. .companylist {
  279. margin: 20rpx 30rpx;
  280. background: #fff;
  281. height: 280rpx;
  282. border-radius: 10px;
  283. position: relative;
  284. h3 {
  285. height: 70rpx;
  286. line-height: 70rpx;
  287. padding-left: 30rpx;
  288. }
  289. }
  290. .settled {
  291. background-color: #09C700;
  292. width: 100rpx;
  293. height: 40rpx;
  294. text-align: center;
  295. line-height: 40rpx;
  296. color: #fff;
  297. font-size: 14rpx;
  298. position: absolute;
  299. top: 0px;
  300. right: 0px;
  301. border-top-right-radius: 10rpx;
  302. border-bottom-left-radius: 10rpx;
  303. }
  304. .outstanding {
  305. background-color: #30D3A2;
  306. width: 100rpx;
  307. height: 40rpx;
  308. text-align: center;
  309. line-height: 40rpx;
  310. color: #fff;
  311. font-size: 14rpx;
  312. position: absolute;
  313. top: 0px;
  314. right: 0px;
  315. border-top-right-radius: 10rpx;
  316. border-bottom-left-radius: 10rpx;
  317. }
  318. .billall {}
  319. .topbill {
  320. display: flex;
  321. justify-content: center;
  322. align-items: center;
  323. height: 100rpx;
  324. background-color: #e6e6e6;
  325. }
  326. .topbilledit {
  327. display: flex;
  328. justify-content: space-around;
  329. align-items: center;
  330. }
  331. .changetime1 {
  332. padding-right: 10rpx;
  333. }
  334. </style>