| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- <template>
- <view>
- <my-add-button @handleClick="handleClick" />
- <!-- <view class="border-bottom">
- <u-tabs class="p-fixed left0 right0 zIndex" :list="list" :is-scroll="false" :current="current" @change="change"></u-tabs>
- </view> -->
- <view class="">
- <template v-if="listData.length > 0">
- <view
- class="mx3 my2 p3 bg-color-white box p-relative"
- v-for="(item, index) in listData"
- :key="index"
- @tap="handleDetail(item.id)"
- @longpress="showMask(item.id,$event)"
- >
- <common-mask :item="item" :maskId="maskId" @hide="maskId = 0" @del="handleDel(item.id)" />
- <view class="d-flex j-between border-bottom pb-2 a-center">
- <view class="text-color-b f-size-26">{{ item.sbName }}</view>
- <my-badge
- :text="$BaseTool.Object.getField(statusMap, item.status)"
- :status="
- $DictCache.COLOR.REPAIR_APPLICATION_FORM_STATUS[item.status]
- "
- />
- </view>
- <view class="mt-2 d-flex j-between">
- <view class="text-color-3 f-size-32 f-weight-bold">{{
- item.userName
- }}</view>
- </view>
- <view class="f-size-26 text-color-6 f-weight-4 mt-2">{{
- item.applyTime
- }}</view>
- <view class="d-flex j-end edit-box">
- <view v-if="item.status === 4" class="text-color-3 f-size-32 edit">
- <view @click.stop="handleApprove(item)">通过</view>
- </view>
- <view v-if="item.status === 4" class="text-color-3 f-size-32 edit">
- <view @click.stop="handleReturn(item)">驳回</view>
- </view>
- </view>
- </view>
- <view class="py3">
- <u-loadmore :status="status" />
- </view>
- </template>
- <template v-else>
- <view class="empty">
- <u-empty text="暂无数据" mode="list"></u-empty>
- </view>
- </template>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list: [
- {
- name: '全部'
- },
- {
- name: '待接单'
- },
- {
- name: '进行中'
- },
- {
- name: '待验收'
- },
- {
- name: '待支付'
- }
- ],
- current: 0,
- // 加载更多
- status: 'loadmore',
- page: 1,
- limit: 10,
- type: '',
- loadMore: true,
- listData: [],
- statusMap: {},
- maskId: 0
- };
- },
- onPullDownRefresh() {
- // 请求结束取消刷新
- this.page = 1;
- this.loadMore = true;
- this.listData = [];
- this.initData();
- uni.stopPullDownRefresh();
- },
- onReachBottom() {
- if (this.loadMore) {
- this.page++;
- this.initData();
- }
- },
- onLoad() {
- this.statusMap = this.$DictCache.getLabelByValueMapByType(
- this.$DictCache.TYPE.REPAIR_APPLICATION_FORM_STATUS
- );
- },
- onShow() {
- this.page = 1;
- this.loadMore = true;
- this.listData = [];
- this.initData();
- },
- onHide() {
- this.maskId = 0
- },
- methods: {
- showMask(id, e) {
- this.maskId = id
- // #ifdef H5
- e.preventDefault()
- // #endif
- },
- handleDel(id) {
- const that = this
- const params = []
- params.push(id)
- uni.showModal({
- title: '提示',
- content: '您确认删除吗?',
- success: (res) => {
- if (res.confirm) {
- this.$Http.deleteRepairApplicationForms(params).then(res => {
- uni.showToast({ title: '删除成功' })
- this.page = 1;
- this.loadMore = true;
- this.listData = [];
- this.initData();
- })
- } else if (res.cancel) { }
- }
- });
- },
- handleReturn(item) {
- const that = this;
- uni.showModal({
- title: '提示',
- content: '确认驳回?',
- success: function (res) {
- if (res.confirm) {
- uni.navigateTo({
- url: '/pages/repair/repair-return?id=' + item.id
- });
- }
- }
- });
- },
- // 通过
- handleApprove(item) {
- const that = this;
- uni.showModal({
- title: '提示',
- content: '确认通过?',
- success: function (res) {
- if (res.confirm) {
- that.$Http.approve(item).then((res) => {
- uni.navigateTo({
- url: '/pages/repair-check/repair-check'
- });
- });
- }
- }
- });
- },
- handleClick() {
- uni.navigateTo({
- url: '/pages/repair-add/repair-add'
- });
- },
- // tab
- change(index) {
- this.current = index;
- this.type = index;
- this.page = 1;
- this.loadMore = true;
- this.listData = [];
- this.initData();
- },
- // 跳转详情
- handleDetail(id) {
- if (this.maskId != 0) return this.maskId = 0
- uni.navigateTo({
- url: '/pages/repair-check/repair-detail?detailId=' + id
- });
- },
- // 初始化
- initData() {
- const that = this;
- that.status = 'loading';
- this.$Http
- .getRepairApplicationFormPage({
- pageNum: this.page,
- pageSize: this.limit,
- searchType: 3,
- filter: 0,
- dataScope: {
- sortBy: 'desc',
- sortName: 'update_time'
- }
- })
- .then((res) => {
- const data = res.data.rows;
- if (data && data.length > 0 && data.length < that.limit) {
- that.status = 'nomore';
- that.loadMore = false;
- } else if (data.length == that.limit) {
- that.status = 'loadmore';
- } else {
- that.status = 'nomore';
- }
- that.listData = [...that.listData, ...data];
- });
- }
- }
- };
- </script>
- <style lang="less">
- page {
- background-color: #f4f4f4;
- }
- .box {
- border-radius: 20rpx;
- padding-right: 0;
- }
- .edit-box {
- padding: 0 30rpx;
- margin-top: 40rpx;
- .edit {
- padding: 8rpx 40rpx;
- border: 1px solid #ddd;
- border-radius: 20rpx;
- font-size: 26rpx;
- color: #666;
- margin-left: 30rpx;
- }
- }
- </style>
|