| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602 |
- <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="">
- <view class="tab_box rx-sc">
- <view class="tab_item" v-for="(item,index) in tabList" :key="index"
- :class="{active: pickTabIndex == item.value}">
- <view @click="changeChartsTab(item.value)">
- {{item.label}}
- </view>
- </view>
- </view>
- </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 @addSpareItems="addSpareItems(item.id)" @report="edit('report',item.id)"
- @edit="edit('edit',item.id)" @details="edit('view',item.id)" @handleAudit="handleAudit(item)"
- @checkAndAccept="checkAndAccept(item)" @evaluate="evaluate(item)" :item="item" :index="index+1"
- @receive="receive(item)" :columns="columns" :btnList="btnList">
- </myCard>
- <u-empty v-show="emptyShow && tableList.length==0" width="300" height="300" textSize="30"></u-empty>
- </view>
- </u-list>
- </view>
- <CheckAndAccept ref="acceptRef" @getList='doSearch' />
- <Evaluate ref="evaluateRef" @getList='doSearch' />
- <u-toast ref="uToast"></u-toast>
- <MySearch :show.sync="searchShow" :formItems="formItems" @search="confirmSearch"></MySearch>
- </view>
- </template>
- <script>
- import {
- getByCode
- } from '@/api/pda/common.js'
- import {
- initDict
- } from '@/utils/utils.js'
- import {
- getSalesWorkOrder,
- receiveSalesWorkOrder
- } from '@/api/salesServiceManagement/workOrder/index.js'
- import myCard from '@/pages/saleManage/components/myCard.vue'
- import CheckAndAccept from './components/forWork/checkAndAccept.vue'
- import Evaluate from './components/forWork/evaluate.vue'
- export default {
- components: {
- myCard,
- CheckAndAccept,
- Evaluate,
- },
- watch: {
- fault_level_arr: {
- handler(val) {
- console.log(val);
- this.formItems.find(item => item.prop === 'faultLevel').props.localdata = val
- },
- deep: true
- }
- },
- data() {
- return {
- searchForm: {},
- emptyShow: false,
- searchShow: false,
- fault_level_obj: {},
- fault_level_arr: [],
- formItems: [{
- label: '工单编号:',
- prop: 'code',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '客户名称:',
- prop: 'contactName',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '设备名称:',
- prop: 'deviceName',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '故障等级:',
- prop: 'faultLevel',
- component: 'MySelect',
- props: {
- localdata: [],
- dataKey: 'label',
- dataValue: 'value'
- }
- },
- {
- label: '计划单号:',
- prop: 'planCode',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '计划名称:',
- prop: 'planName',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '报工人:',
- prop: 'executeUserName',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- {
- label: '验收人:',
- prop: 'accepterUserName',
- component: 'MyInput',
- props: {
- placeholder: '请输入内容',
- }
- },
- ],
- tabList: [{
- value: 'all',
- label: '全部',
- },
- {
- value: '0',
- label: '待执行',
- },
- {
- value: '1',
- label: '执行中',
- },
- {
- value: '3',
- label: '待验收',
- },
- {
- value: '5',
- label: '已完成',
- },
- ],
- workOrderStatus: [
- // { code: 0, label: '待接收' },
- {
- code: 0,
- label: '待执行'
- },
- {
- code: 1,
- label: '已接收'
- },
- {
- code: 2,
- label: '执行中'
- },
- {
- code: 3,
- label: '待验收'
- },
- {
- code: 4,
- label: '待评价'
- },
- {
- code: 5,
- label: '已完成'
- },
- {
- code: 6,
- label: '验收不通过'
- }
- ],
- pickTabIndex: 'all',
- searchVal: '',
- isEnd: false,
- page: 1,
- size: 10,
- tableList: [],
- columns: [
- [{
- label: '工单编号:',
- prop: 'code',
- type: 'title',
- className: 'perce100',
- }],
- [{
- label: '计划单号:',
- prop: 'planCode'
- }],
- [{
- label: '计划名称:',
- prop: 'planName',
- }],
- [{
- label: '报工人:',
- prop: 'executeUserName'
- }, {
- label: '验收人:',
- prop: 'accepterUserName',
- }],
- [{
- label: '故障等级:',
- prop: 'faultLevel',
- formatter: (row) => {
- console.log(this.fault_level_obj);
- return this.fault_level_obj[row.faultLevel]
- }
- }, {
- 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: 'accepterTime'
- }, {
- label: '开始时间:',
- prop: 'acceptTime',
- }],
- [{
- label: '结束时间:',
- prop: 'finishTime'
- }, {
- label: '计划完成时间:',
- prop: 'planFinishTime',
- }],
- [{
- label: '实际售后时长:',
- prop: 'inFactDuration',
- formatter: (row) => {
- if (row.inFactDuration || row.inFactDuration == 0) {
- let str = ((row.inFactDuration - 0) / 60).toFixed(1);
- return str + ' 小时';
- }
- }
- }, {
- label: '状态:',
- prop: 'orderStatus',
- formatter: (row) => {
- return this.workOrderStatus.find(
- (item) => item.code == row.orderStatus
- )?.label;
- }
- }],
- [{
- 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: 'orderStatus',
- value: [1, 6],
- }],
- },
- {
- name: '报工',
- apiName: 'report',
- btnType: 'error ',
- type: '2',
- pageUrl: '',
- judge: [{
- authorities: '',
- }, {
- key: 'orderStatus',
- value: [1, 6],
- }],
- }, {
- name: '接收',
- apiName: 'receive',
- btnType: 'error ',
- type: '2',
- pageUrl: '',
- judge: [{
- authorities: '',
- }, {
- key: 'orderStatus',
- value: [0],
- }],
- }, {
- name: '转派',
- apiName: 'handleAudit',
- btnType: 'primary',
- type: '2',
- pageUrl: '',
- judge: [{
- authorities: '',
- }, {
- key: 'orderStatus',
- value: [0, 1],
- }],
- },
- {
- name: '验收',
- apiName: 'checkAndAccept',
- btnType: 'primary',
- type: '2',
- pageUrl: '',
- judge: [{
- authorities: '',
- }, {
- key: 'orderStatus',
- value: [3, 6],
- }],
- },
- {
- name: '评价',
- apiName: 'evaluate',
- btnType: 'primary',
- type: '2',
- pageUrl: '',
- judge: [{
- authorities: '',
- }, {
- key: 'orderStatus',
- value: [4],
- }],
- },
- {
- name: '申请配件',
- apiName: 'addSpareItems',
- btnType: 'primary',
- type: '2',
- pageUrl: '',
- judge: [{
- authorities: '',
- }, {
- key: 'orderStatus',
- value: [1, 2],
- }],
- },
- ],
- }
- },
- onLoad() {
- this.getDict()
- },
- onShow() {
- this.doSearch();
- },
- created() {
- },
- onReachBottom() {
- this.getList()
- },
- methods: {
- async getDict() {
- let res = await getByCode('fault_level')
- let [arr, obj] = initDict(res)
- this.fault_level_obj = obj
- this.fault_level_arr = arr
- console.log(arr, obj);
- },
- changeChartsTab(value) {
- this.pickTabIndex = value;
- this.doSearch();
- },
- 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
- }
- if (this.pickTabIndex != 'all') {
- data.orderStatus = this.pickTabIndex;
- }
- getSalesWorkOrder(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();
- },
- // 申请配件
- addSpareItems(id) {
- uni.navigateTo({
- url: `/pages/salesServiceManagement/workOrder/components/accessory?id=${id}`
- })
- },
- // 验收
- checkAndAccept(item) {
- this.$refs.acceptRef.open(item.id);
- },
- // 评价
- evaluate(item) {
- this.$refs.evaluateRef.open(item.id);
- },
- // 转派
- handleAudit(item) {
- console.log(item, 'item ---')
- uni.navigateTo({
- url: `/pages/salesServiceManagement/workOrder/components/forWork/transfer?id=${item.id}`
- })
- },
- // 报工
- edit(type, id) {
- uni.navigateTo({
- url: `/pages/salesServiceManagement/workOrder/components/editPlan?type=${type}&id=${id}`
- })
- },
- // 接收
- async receive(item) {
- const data = await uni.showModal({
- title: '确认接收',
- content: '确定要接收这条数据吗?',
- confirmText: '接收',
- confirmColor: '#157a2c',
- });
- if (data[1].confirm) {
- const res = await receiveSalesWorkOrder(item);
- if (!res) return;
- this.$refs.uToast.show({
- type: "success",
- message: "操作成功",
- })
- this.doSearch();
- }
- },
- clearSearch() {
- this.searchVal = ''
- this.doSearch()
- },
- showSearch() {
- this.searchShow = true
- },
- confirmSearch(e) {
- console.log(e);
- let data = JSON.parse(JSON.stringify(e))
- this.searchForm = data
- this.doSearch()
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .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;
- }
- }
- .tab_box {
- width: 100%;
- height: 68rpx;
- border-bottom: 1rpx solid #E1E1E1;
- .tab_item {
- height: 68rpx;
- line-height: 68rpx;
- padding: 0 20rpx;
- font-size: 32rpx;
- color: #979C9E;
- }
- .active {
- box-sizing: border-box;
- border-bottom: 6rpx solid $theme-color;
- color: $theme-color;
- }
- }
- /deep/ .u-empty {
- margin-top: 200px !important;
- }
- </style>
|