| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480 |
- <template>
- <view class="mainBox">
- <uni-nav-bar background-color="#157A2C" color="#fff" fixed="true" statusBar="true" left-icon="back"
- title="配件申请记录" @clickLeft="back">
- </uni-nav-bar>
- <view class="top-wrapper">
- <uni-section>
- <uni-easyinput @clear="clearSearch" prefixIcon="search" style="width: 460rpx" v-model="searchVal"
- placeholder="名称">
- </uni-easyinput>
- </uni-section>
- <button class="search_btn" @click="doSearch">搜索</button>
- <image class="menu_icon" src="~@/static/pda/menu.svg" @click="showSearch"></image>
- </view>
- <view class="wrapper">
- <u-list @scrolltolower="scrolltolower" class="listContent" style="height: auto;">
- <view v-for="(item, index) in tableList" :key="index" style="position: relative;">
- <myCard :columns="columns" :btnList="btnList" :item="item" @details="add(item,'view')"
- @listSubmit="listSubmit(item)" @edit="add(item,'edit')" @delete="deleteRow(item)">
- </myCard>
- </view>
- <u-empty v-show="emptyShow && tableList.length==0" width="300" height="300" textSize="30"></u-empty>
- </u-list>
- </view>
- <view class="add" @click="add('','add')">
- <u-icon name="plus" color="#fff"></u-icon>
- </view>
- <u-toast ref="uToast"></u-toast>
- <MySearch :show.sync="searchShow" :formItems="formItems" @search="confirmSearch"></MySearch>
- </view>
- </template>
- <script>
- import {
- accessoryPage,
- accessoryDelete
- } from '@/api/salesServiceManagement/accessory/index.js';
- import myCard from '@/pages/saleManage/components/myCard.vue';
- import {
- processInstanceCreateAPI,
- processInstancePage
- } from '@/api/wt/index.js'
- export default {
- components: {
- myCard
- },
- data() {
- return {
- searchForm: {},
- emptyShow: false,
- searchShow: false,
- formItems: [{
- label: '编码:',
- prop: 'code',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容'
- }
- },
- {
- label: '工单编码:',
- prop: 'workCode',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '领用人:',
- prop: 'recipientName',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '客户名称:',
- prop: 'contactName',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '设备名称:',
- prop: 'deviceName',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '物品名称:',
- prop: 'categoryName',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '创建时间:',
- prop: 'creatTime',
- component: 'MyDateRange',
- props: {
- type: 'daterange',
- }
- }
- ],
- columns: [
- [{
- label: '编号:',
- prop: 'code',
- type: 'title',
- className: 'perce100',
- }],
- [{
- label: '工单编码:',
- prop: 'orderCode'
- }],
- [{
- label: '物品分类:',
- prop: 'categoryLevelName',
- formatter: (row) => {
- if (!row.details) return '';
- let str = '';
- row.details.map((el, idx) => {
- if (idx + 1 == row.details.length) {
- str += el.categoryLevelName;
- } else {
- str = el.categoryLevelName ?
- str + '' + el.categoryLevelName + ',' :
- str + '';
- }
- });
- return str;
- }
- }],
- [{
- label: '物品名称:',
- prop: 'categoryName',
- formatter: (row) => {
- if (!row.details) return '';
- let str = '';
- row.details.map((el, idx) => {
- if (idx + 1 == row.details.length) {
- str += el.categoryName;
- } else {
- str = str + '' + el.categoryName + ',';
- }
- });
- return str;
- }
- }],
- [{
- label: '领用部门:',
- prop: 'receivingDeptName',
- }, {
- label: '领用人:',
- prop: 'recipientName',
- }],
- [{
- label: '客户名称:',
- prop: 'contactName'
- }],
- [{
- label: '设备名称:',
- prop: 'categoryName',
- formatter: (row) => {
- if (!row.deviceDetails) return '';
- let str = '';
- row.deviceDetails.map((el, idx) => {
- if (idx + 1 == row.deviceDetails.length) {
- str += el.categoryName;
- } else {
- str = str + '' + el.categoryName + ',';
- }
- });
- return str;
- }
- }],
- [{
- label: '状态:',
- prop: 'approvalStatus',
- formatter: (row) => {
- const reviewStatus = {
- 0: '未提交',
- 1: '审核中',
- 2: '已审核',
- 3: '审核不通过'
- }
- return reviewStatus[row.approvalStatus];
- }
- }],
- [{
- label: '创建时间:',
- prop: 'createTime'
- }, {
- label: '使用时间:',
- prop: 'usageTime',
- }],
- [{
- label: '操作:',
- prop: 'action',
- type: 'action',
- className: 'perce100',
- }],
- ],
- btnList: [{
- name: '详情',
- apiName: 'details',
- btnType: 'primary',
- type: '2',
- pageUrl: '',
- }, {
- name: '修改',
- apiName: 'edit',
- btnType: 'primary',
- type: '2',
- pageUrl: '',
- judge: [{
- authorities: '',
- }, {
- key: 'source',
- value: [0],
- }, {
- key: 'approvalStatus',
- value: [0, 3],
- }],
- },
- {
- name: '发起流程',
- apiName: 'listSubmit',
- btnType: 'primary',
- type: '2',
- pageUrl: '',
- judge: [{
- authorities: '',
- }, {
- key: 'approvalStatus',
- value: [0, 3],
- }],
- },
- {
- name: '删除',
- apiName: 'delete',
- btnType: 'primary',
- type: '2',
- pageUrl: '',
- judge: [{
- authorities: '',
- }, {
- key: 'source',
- value: [0],
- }, {
- key: 'approvalStatus',
- value: [0, 3],
- }],
- }
- ],
- page: 1,
- size: 10,
- isEnd: false,
- tableList: [],
- searchVal: '',
- }
- },
- onShow() {
- this.doSearch();
- },
- onReachBottom() {
- this.getList()
- },
- methods: {
- async listSubmit(data) {
- try {
- //后台不提供接口
- let list = await processInstancePage({
- pageNo: 1,
- pageSize: 1,
- reset: true,
- key: 'eom_sh_bpbj'
- })
- let params = {
- businessId: data.id,
- businessKey: 'eom_sh_bpbj',
- formCreateUserId: data.createUserId,
- processDefinitionId: list?.list[0]?.processDefinition.id,
- variables: {
- businessCode: data.code,
- businessName: data.name,
- businessType: '申请备品备件',
- },
- }
- await processInstanceCreateAPI(params)
- uni.showModal({
- title: `提交成功`,
- content: '',
- confirmText: '确认',
- showCancel: false, // 是否显示取消按钮,默认为 true
- success: () => {
- this.doSearch()
- }
- })
- } catch {
- }
- },
- doSearch() {
- this.isEnd = false;
- this.page = 1;
- this.getList();
- },
- //获取列表信息
- getList() {
- this.emptyShow = false
- if (this.isEnd) {
- this.$refs.uToast.show({
- message: "暂无更多数据",
- duration: 1000
- })
- return
- }
- uni.showLoading({
- title: '加载中'
- })
- let data = {
- pageNum: this.page,
- size: this.size,
- keyWord: this.searchVal,
- ...this.searchForm
- }
- accessoryPage(data).then(res => {
- if (this.page === 1) {
- this.tableList = res.list;
- if (this.tableList.length === 0) {
- this.emptyShow = true
- }
- } else {
- this.tableList.push(...res.list);
- }
- this.page += 1
- this.isEnd = this.tableList.length >= res.count;
- uni.hideLoading();
- }).catch((e) => {
- uni.hideLoading();
- })
- },
- scrolltolower() {
- if (this.isEnd) {
- return;
- }
- this.getList();
- },
- add(item, type) {
- uni.navigateTo({
- url: `/pages/salesServiceManagement/accessory/accessoryAdd?type=${type}&id=${item?item.id:''}`
- })
- },
- async deleteRow(row) {
- const res = await uni.showModal({
- title: '确认删除',
- content: '确定要删除该条数据吗?',
- confirmText: '删除',
- confirmColor: '#FF4D4F',
- });
- if (res[1].confirm) {
- const data = await accessoryDelete([row.id]);
- if (!data) return
- this.$refs.uToast.show({
- type: "success",
- message: "操作成功",
- })
- this.doSearch();
- } else if (res.cancel) {
- console.log('用户取消');
- }
- },
- clearSearch() {
- console.log('清空');
- this.searchVal = ''
- this.doSearch()
- },
- showSearch() {
- this.searchShow = true
- },
- confirmSearch(e) {
- console.log(e);
- let data = JSON.parse(JSON.stringify(e))
- if (data.creatTime) {
- var [startTime, endTime] = data.creatTime
- delete data.creatTime
- this.searchForm = {
- ...data,
- startTime,
- endTime
- }
- } else {
- this.searchForm = data
- }
- this.doSearch()
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .top-wrapper {
- background-color: #fff;
- display: flex;
- width: 750rpx;
- height: 88rpx;
- padding: 16rpx 32rpx;
- align-items: center;
- gap: 16rpx;
- /deep/.uni-section {
- margin-top: 0px;
- }
- /deep/.uni-section-header {
- padding: 0px;
- }
- .search_btn {
- width: 120rpx;
- height: 70rpx;
- line-height: 70rpx;
- padding: 0 24rpx;
- background: $theme-color;
- font-size: 32rpx;
- color: #fff;
- margin: 0;
- margin-left: 26rpx;
- }
- .menu_icon {
- width: 44rpx;
- height: 44rpx;
- margin-left: 14rpx;
- }
- }
- .add {
- width: 96rpx;
- height: 96rpx;
- border-radius: 48rpx;
- background: #3c9cff;
- position: fixed;
- bottom: 100rpx;
- right: 24rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- /deep/ .u-empty {
- margin-top: 200px !important;
- }
- </style>
|