| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155 |
- <template>
- <scroll-view class="container" :scroll-y="scrollY" @scrolltolower="scrolltolower">
- <view class="top_bg"></view>
- <!-- 状态统计区域 管理者端 -->
- <view class="top_types2" v-if="btns.includes('工单管理分段器')">
- <view class="top">
- <uni-segmented-control :current="current" :values="items" @clickItem="onClickItem" styleType="text" activeColor="#6FB6B8"></uni-segmented-control>
- </view>
- <view class="bottom">
- <view class="bottom_box" :class="{ active: state === 1 }" @click="handleFilter(1)">
- <view class="box_num">{{ receivingCount }}</view>
- <view class="box_info">待接单</view>
- </view>
- <view class="bottom_box" :class="{ active: state === 2 }" @click="handleFilter(2)">
- <view class="box_num">{{ maintenanceCount }}</view>
- <view class="box_info">维修中</view>
- </view>
- <view class="bottom_box" :class="{ active: state === 3 }" @click="handleFilter(3)">
- <view class="box_num">{{ timeoutCount }}</view>
- <view class="box_info">已超时</view>
- </view>
- <view class="bottom_box" :class="{ active: state === 4 }" @click="handleFilter(4)">
- <view class="box_num">{{ examineCount }}</view>
- <view class="box_info">待审核</view>
- </view>
- <view class="bottom_box" :class="{ active: state === 5 }" v-if="current === 0" @click="handleFilter(5)">
- <view class="box_num">{{ finishedCount }}</view>
- <view class="box_info">已完成</view>
- </view>
- <view class="bottom_box" :class="{ active: state === 7 }" v-if="current === 0" @click="handleFilter(7)">
- <view class="box_num">{{ closedCount }}</view>
- <view class="box_info">已关单</view>
- </view>
- </view>
- </view>
- <!-- 状态统计区域 维修师傅 后勤端 -->
- <view class="top_types" v-else>
- <view class="types_box" :class="{ active: state === 1 }" @click="handleFilter(1)">
- <view class="box_num">{{ receivingCount }}</view>
- <view class="box_info">待接单</view>
- </view>
- <view class="types_box" :class="{ active: state === 2 }" @click="handleFilter(2)">
- <view class="box_num">{{ maintenanceCount }}</view>
- <view class="box_info">维修中</view>
- </view>
- <view class="types_box" :class="{ active: state === 3 }" @click="handleFilter(3)">
- <view class="box_num">{{ timeoutCount }}</view>
- <view class="box_info">已超时</view>
- </view>
- <view class="types_box" :class="{ active: state === 4 }" @click="handleFilter(4)">
- <view class="box_num">{{ examineCount }}</view>
- <view class="box_info">待审核</view>
- </view>
- <view class="types_box" v-if="btns.includes('分段器按钮')" :class="{ active: state === 6 }" @click="handleFilter(6)">
- <view class="box_num">{{ logisticsCount }}</view>
- <view class="box_info">待处理</view>
- </view>
- <view class="types_box" v-if="btns.includes('分段器按钮')" :class="{ active: state === 5 }" @click="handleFilter(5)">
- <view class="box_num">{{ finishedCount }}</view>
- <view class="box_info">已完成</view>
- </view>
- <view class="types_box" v-if="btns.includes('分段器按钮')" :class="{ active: state === 7 }" @click="handleFilter(7)">
- <view class="box_num">{{ closedCount }}</view>
- <view class="box_info">已关单</view>
- </view>
- </view>
- <!-- 订单列表区域 -->
- <view class="body">
- <!-- 每一个订单区域 -->
- <view class="body_item" v-for="item in dataList" :key="item.id" @click="handleGoDetail(item)">
- <!-- 工单编号 -->
- <view class="item_title">
- <img src="../../static/images/repairsImg/order.png" />
- <view class="title_info">工单编号:{{ item.recordNo }}</view>
- </view>
- <!-- 报修时间 -->
- <view class="item_time">
- <view class="time_msg">
- 报修时间:
- <text>{{ item.reportTime }}</text>
- </view>
- <view class="time_type" v-if="item.state === '待接单'">待接单</view>
- <view class="time_type color_type" v-if="item.state === '维修中'">维修中</view>
- <view class="time_type color_type" v-if="item.state === '协作待审核'">协作待审核</view>
- <view class="time_type color_type" v-if="item.state === '转单待审核'">转单待审核</view>
- <view class="time_type color_type2" v-if="item.state === '待审核'">待审核</view>
- <view class="time_type color_type3" v-if="item.state === '已完成'">已完成</view>
- <view class="time_type" v-if="item.state === '待确认'">待确认</view>
- <view class="time_type color_type4" v-if="item.state === '已关单'">已关单</view>
- </view>
- <!-- 报修姓名 -->
- <view class="item_box">
- <view class="box_key">报修姓名:</view>
- <view class="box_value">{{ item.userName }}</view>
- <view class="box_type" v-if="item.timeoutStr">超时未接</view>
- <view class="box_type" v-if="item.maintenanceTimeout">维修超时</view>
- </view>
- <!-- 报修电话 -->
- <view class="item_box">
- <view class="box_key">报修电话:</view>
- <view class="box_value phone" @click.stop="handleCallPhone(item.userPhone)">
- {{ item.userPhone }}
- <img src="../../static/images/repairsImg/phone.png" />
- </view>
- </view>
- <!-- 报修区域 -->
- <view class="item_box">
- <view class="box_key">报修区域:</view>
- <view class="box_value">{{ item.areaName }}</view>
- </view>
- <!-- 详细地址 -->
- <view class="item_box">
- <view class="box_key">详细地址:</view>
- <view class="box_value">{{ item.address }}</view>
- </view>
- <!-- 报修物品 -->
- <view class="item_box">
- <view class="box_key">报修物品:</view>
- <view class="box_value">{{ item.articleName }}</view>
- </view>
- <!-- 故障描述 -->
- <view class="item_box" v-if="item.description">
- <view class="box_key">故障描述:</view>
- <view class="box_value">{{ item.description }}</view>
- </view>
- <!-- 报修录音 -->
- <view class="item_box" v-if="item.voice">
- <view class="box_key">报修录音:</view>
- <view class="box_value">
- <view class="recording" @click.stop="handlePlayRecording(item)">
- <img class="voiceImg" :src="item.status ? '../../static/images/repairsImg/play_active.png' : '../../static/images/repairsImg/play.png'" />
- {{ item.voiceLength }}″
- </view>
- </view>
- </view>
- <!-- 上传图片 -->
- <view class="item_img">
- <view class="img_key">上传图片:</view>
- <img class="img_value" mode="aspectFill" :src="item.images[0]" @click.stop="handleLookImgs(item.images)" />
- </view>
- <!-- 维修师傅 -->
- <view class="item_time" v-if="item.state !== '待接单' && item.state !== '待确认' && item.maintenancerName">
- <view class="time_msg">
- 维修师傅:
- <text>{{ item.maintenancerName }}</text>
- </view>
- </view>
- <!-- 师傅电话 -->
- <view class="item_box" v-if="item.state !== '待接单' && item.state !== '待确认' && item.maintenancerPhone">
- <view class="box_key">师傅电话:</view>
- <view class="box_value phone" @click.stop="handleCallPhone(item.maintenancerPhone)">
- {{ item.maintenancerPhone }}
- <img src="../../static/images/repairsImg/phone.png" />
- </view>
- </view>
- <!-- 维修费用 -->
- <view class="item_box" v-if="item.price">
- <view class="box_key">维修费用:</view>
- <view class="box_value2 phone" @click.stop="checkFeeDetail(item)">
- {{ item.price }}元
- <img src="../../static/images/repairsImg/eye.png" />
- </view>
- </view>
- <!-- 按钮区域 -->
- <view class="item_btn">
- <!-- 关闭按钮 -->
- <img v-if="item.state === '待接单'" src="../../static/images/repairsImg/close.png" @click.stop="handleClose(item)" />
- <!-- 协作按钮 -->
- <img class="img" src="../../static/images/repairsImg/help.png" v-if="item.state === '待接单' && btns.includes('协作')" @click.stop="handleHelp(item)" />
- <!-- 延时按钮 -->
- <view class="btn_box type" v-if="(item.state === '待接单' || item.state === '维修中') && btns.includes('延时')" @click.stop="handleDelay(item)">延时</view>
- <!-- 接单按钮 -->
- <!-- <view class="btn_box type" v-if="item.state === '待接单' && btns.includes('接单')" @click.stop="handleOrderReceiving(item)">接单</view> -->
- <!-- 转单按钮 -->
- <view class="btn_box type2" v-if="item.state === '待接单' && btns.includes('转单')" @click.stop="handleTransferOrder(item)">转单</view>
- <!-- 派单按钮 -->
- <!-- <view class="btn_box type2" v-if="item.state === '待接单' && btns.includes('派单')" @click.stop="handleSendOrder(item)">派单</view> -->
- <!-- 报价按钮 -->
- <view class="btn_box type" v-if="!item.price && item.state === '维修中' && btns.includes('报价')" @click.stop="handleOffer(item)">报价</view>
- <!-- 维修完成按钮 -->
- <view class="btn_box type2" v-if="item.state === '维修中' && btns.includes('维修完成')" @click.stop="handleFinish(item)">维修完成</view>
- <!-- 审核按钮 -->
- <view class="btn_box type" v-if="(item.state === '协作审核' || item.state === '转单审核') && btns.includes('审核')" @click.stop="handleAudit(item)">审核</view>
- <!-- 改价按钮 -->
- <view class="btn_box type" v-if="item.state === '待确认'" @click.stop="handleChangeOffer(item)">改价</view>
- <!-- 留言按钮 -->
- <view class="btn_box type2" v-if="item.state === '待确认'" @click.stop="handleLeaveWords">留言</view>
- </view>
- </view>
- <!-- 关闭按钮弹窗 -->
- <uni-popup ref="popup_close" :is-mask-click="false">
- <view class="popup_close">
- <view
- :class="[{ active: activeIndex === index }, { radius: index === 0 }]"
- class="close_box"
- v-for="(ele, index) in closeList"
- :key="ele.id"
- @click="handleChangeItem(index)"
- >
- {{ ele.name }}
- </view>
- <view class="close_btn">
- <view class="btn_box cancel" @click="$refs.popup_close.close()">取消</view>
- <view class="btn_box confirm" @click="handleCloseConfirm">确定</view>
- </view>
- </view>
- </uni-popup>
- <!-- 留言弹窗 -->
- <uni-popup ref="popup_leaveWords" :is-mask-click="false">
- <view class="pop_leaveWords">
- <view class="leaveWords_title">留言</view>
- <view class="leaveWords_body">
- <textarea placeholder-style="color:#CCCCCC" placeholder="请输入您宝贵的留言" v-model="leaveWords"></textarea>
- </view>
- <view class="leaveWords_btn">
- <view class="btn_box cancel" @click="$refs.popup_leaveWords.close()">取消</view>
- <view class="btn_box confirm" @click="handleLeaveWordsConfirm">确定</view>
- </view>
- </view>
- </uni-popup>
- <!-- 维修费用弹窗 -->
- <uni-popup :is-mask-click="false" ref="popup_fee">
- <view class="pop_fee">
- <view class="fee_title">
- 维修费用
- <text @click="$refs.popup_fee.close()">×</text>
- </view>
- <view class="fee_content">
- <view class="fee_item" v-for="(element, index2) in goodsList" :key="index2">
- <view class="fee_box">
- 耗材:
- <text>{{ element.name }}</text>
- </view>
- <view class="fee_box">
- 耗材单价:
- <text>{{ element.price }}元</text>
- </view>
- <view class="fee_box">
- 耗材数量:
- <text>{{ element.num }}</text>
- </view>
- <view class="fee_box">
- 耗材费用:
- <text>{{ element.count }}元</text>
- </view>
- </view>
- </view>
- </view>
- </uni-popup>
- </view>
- <!-- 没有数据时展示的图片 -->
- <view class="no_data" v-if="dataList.length === 0">
- <img src="../../pagesClockIn/static/imgs/nodata.png" />
- <view>暂无数据</view>
- </view>
- </scroll-view>
- </template>
- <script>
- const innerAudioContext = uni.createInnerAudioContext()
- export default {
- data() {
- return {
- scrollY: true,
- // 按钮权限
- btns: [],
- // 留言弹窗输入框绑定数据
- leaveWords: '',
- // 顶部分段器数组
- items: ['团队工单', '个人工单'],
- // 顶部分段器数组当前索引
- current: 0,
- // 关闭按钮弹窗当前索引
- activeIndex: 0,
- // 关闭按钮弹窗选项数组
- closeList: [],
- // 订单列表
- dataList: [],
- // 维修费用弹窗数组
- goodsList: [],
- // 校区id
- schoolId: '',
- // 用户ID
- userId: '',
- // 待处理
- logisticsCount: '',
- // 待审核
- examineCount: '',
- // 待接单
- receivingCount: '',
- // 维修中
- maintenanceCount: '',
- // 已完成
- finishedCount: '',
- // 已超时
- timeoutCount: '',
- // 已关单
- closedCount: '',
- // 当前页
- currentPage: 1,
- // 每页多少条
- pageCount: 2,
- // 总条数 团队
- total: null,
- // 总条数 个人
- total2: null,
- // 订单状态参数
- state: 1,
- // 订单id
- orderId: ''
- }
- },
- mounted() {
- const repairsUserInfo = uni.getStorageSync('repairsUserInfo')
- this.schoolId = repairsUserInfo.schoolId
- this.userId = repairsUserInfo.userId
- this.btns = repairsUserInfo.btns
- if (this.btns.includes('工单管理分段器') || this.btns.includes('分段器按钮')) {
- // 管理员身份或者后勤
- this.getTeamCount()
- this.getTeamData()
- } else {
- // 维修师傅
- this.getCount()
- this.getData()
- }
- this.getCloseList()
- },
- methods: {
- // 滚动到底部触发回调
- scrolltolower() {
- if ((this.btns.includes('工单管理分段器') || this.btns.includes('分段器按钮')) && this.current === 0) {
- // 团队工单
- if (this.total > this.dataList.length) {
- this.currentPage++
- this.getTeamData()
- } else {
- uni.showToast({
- title: '没有更多数据了',
- icon: 'none'
- })
- }
- } else {
- // 个人工单
- if (this.total2 > this.dataList.length) {
- this.currentPage++
- this.getData()
- } else {
- uni.showToast({
- title: '没有更多数据了',
- icon: 'none'
- })
- }
- }
- },
- async getCloseList() {
- const res = await this.$myRequest_repairs({
- url: '/repairClose/queryRepairCloses'
- })
- // console.log(res)
- if (res.code === '200') {
- this.closeList = res.data
- }
- },
- handleFilter(state) {
- this.state = state
- this.dataList = []
- this.currentPage = 1
- this.handleResetData()
- },
- async getCount() {
- const res = await this.$myRequest_repairs({
- url: '/repairRecord/getTechnicianCountByUserId',
- data: {
- userId: this.userId
- }
- })
- // console.log(res)
- if (res.code === '200') {
- this.examineCount = res.data.examineCount
- this.maintenanceCount = res.data.maintenanceCount
- this.receivingCount = res.data.receivingCount
- this.timeoutCount = res.data.timeoutCount
- }
- },
- // 获取个人订单数据
- async getData() {
- const res = await this.$myRequest_repairs({
- url: '/repairRecord/getTechniciansByUserId',
- data: {
- currentPage: this.currentPage,
- pageCount: this.pageCount,
- state: this.state,
- userId: this.userId
- }
- })
- // console.log(res)
- if (res.code === '200') {
- this.total2 = res.data.totalCount
- res.data.list.forEach((ele) => {
- return (ele.status = false)
- })
- this.dataList = [...this.dataList, ...res.data.list]
- }
- },
- async getTeamCount() {
- const res = await this.$myRequest_repairs({
- url: '/repairRecord/queryTeamWorkCount',
- data: {
- schoolId: this.schoolId
- }
- })
- // console.log(res)
- if (res.code === '200') {
- this.examineCount = res.data.examineCount
- this.receivingCount = res.data.receivingCount
- this.maintenanceCount = res.data.maintenanceCount
- this.finishedCount = res.data.finishedCount
- this.timeoutCount = res.data.timeoutCount
- this.closedCount = res.data.closedCount
- this.logisticsCount = res.data.logisticsCount
- }
- },
- // 获取团队订单数据
- async getTeamData() {
- const res = await this.$myRequest_repairs({
- url: '/repairRecord/queryTeamWorkPage',
- data: {
- currentPage: this.currentPage,
- pageCount: this.pageCount,
- state: this.state,
- schoolId: this.schoolId
- }
- })
- // console.log(res)
- if (res.code === '200') {
- this.total = res.data.totalCount
- res.data.list.forEach((ele) => {
- return (ele.status = false)
- })
- this.dataList = [...this.dataList, ...res.data.list]
- }
- },
- // 留言弹窗确定按钮回调
- handleLeaveWordsConfirm() {
- if (this.leaveWords) {
- uni.showToast({
- title: '留言成功',
- icon: 'success',
- mask: true
- })
- this.$refs.popup_leaveWords.close()
- } else {
- uni.showToast({
- title: '请输入留言内容',
- icon: 'none',
- mask: true
- })
- }
- },
- // 关闭弹窗确定按钮回调
- handleCloseConfirm() {
- uni.showModal({
- title: '提示',
- content: '确定关闭订单吗?',
- success: async (res) => {
- if (res.confirm) {
- const res = await this.$myRequest_repairs({
- url: '/repairRecord/closeOrder',
- data: {
- recordId: this.orderId,
- userId: this.userId,
- reason: this.closeList[this.activeIndex].name
- }
- })
- // console.log(res)
- if (res.code === '200') {
- uni.showToast({
- title: '关单成功',
- icon: 'success',
- mask: true
- })
- this.$refs.popup_close.close()
- setTimeout(() => {
- this.handleResetData()
- }, 1500)
- }
- }
- }
- })
- },
- // 重置当前页面获取最新数据
- handleResetData() {
- this.dataList = []
- this.currentPage = 1
- if ((this.btns.includes('工单管理分段器') || this.btns.includes('分段器按钮')) && this.current === 0) {
- // 管理员身份或者后勤
- this.getTeamCount()
- this.getTeamData()
- } else {
- // 维修师傅
- this.getCount()
- this.getData()
- }
- },
- // 接单按钮回调
- handleOrderReceiving(item) {
- uni.showModal({
- content: '确定接单吗?',
- title: '提示',
- success: async (res) => {
- if (res.confirm) {
- const res = await this.$myRequest_repairs({
- url: '/repairRecord/receiveOwnOrders',
- data: {
- recordId: item.id,
- userId: this.userId
- }
- })
- // console.log(res)
- if (res.code === '200') {
- uni.showToast({
- title: '接单成功',
- icon: 'success',
- mask: true
- })
- setTimeout(() => {
- this.handleResetData()
- }, 1500)
- }
- }
- }
- })
- },
- // 关闭图标点击回调
- handleClose(item) {
- this.orderId = item.id
- this.activeIndex = 0
- this.$refs.popup_close.open('center')
- },
- // 关闭按钮弹窗选中按钮时回调
- handleChangeItem(val) {
- this.activeIndex = val
- },
- // 报价按钮回调
- handleOffer(item) {
- let info = encodeURIComponent(JSON.stringify(item))
- uni.navigateTo({
- url: `/pagesRepairs/offer/offer?info=${info}`
- })
- },
- // 改价按钮回调
- handleChangeOffer(item) {
- let info = encodeURIComponent(JSON.stringify(item))
- uni.navigateTo({
- url: `/pagesRepairs/offer/offer?info=${info}&type=1`
- })
- },
- // 维修完成按钮回调
- handleFinish(item) {
- const info = JSON.stringify(item)
- uni.navigateTo({
- url: `/pagesRepairs/repairRecord/repairRecord?info=${info}`
- })
- },
- // 转单按钮回调
- handleTransferOrder(item) {
- uni.navigateTo({
- url: `/pagesRepairs/transferOrder/transferOrder?id=${item.id}`
- })
- },
- // 协作图标点击回调
- handleHelp(item) {
- uni.navigateTo({
- url: `/pagesRepairs/help/help?id=${item.id}`
- })
- },
- // 分段器切换回调
- onClickItem(e) {
- if (this.current != e.currentIndex) {
- this.current = e.currentIndex
- console.log(this.current)
- this.state = 1
- this.dataList = []
- this.currentPage = 1
- if (this.current === 0) {
- // 团队工单
- this.getTeamCount()
- this.getTeamData()
- } else {
- // 个人工单
- this.getCount()
- this.getData()
- }
- }
- },
- // 留言按钮回调
- handleLeaveWords() {
- this.$refs.popup_leaveWords.open('center')
- },
- // 延时按钮回调
- handleDelay(item) {
- uni.navigateTo({
- url: `/pagesRepairs/delay/delay?id=${item.id}`
- })
- },
- // 派单按钮回调
- handleSendOrder(item) {
- uni.navigateTo({
- url: `/pagesRepairs/helpPeople/helpPeople?type=1&id=${item.id}`
- })
- },
- // 审核按钮回调
- handleAudit(item) {
- if (item.state === '转单审核') {
- uni.navigateTo({
- url: `/pagesRepairs/transferOrder/transferOrder?type=1&id=${item.id}`
- })
- } else if (item.state === '协作审核') {
- uni.navigateTo({
- url: `/pagesRepairs/help/help?type=1&id=${item.id}`
- })
- }
- },
- // 查看维修费用回调
- checkFeeDetail(item) {
- // console.log(item)
- this.goodsList = item.goodsList
- this.$refs.popup_fee.open('center')
- },
- // 点击电话号码回调
- handleCallPhone(phone) {
- uni.makePhoneCall({
- phoneNumber: phone
- })
- },
- // 点击图片回调
- handleLookImgs(img) {
- // console.log(img)
- uni.previewImage({
- urls: img
- })
- },
- // 点击录音播放回调
- handlePlayRecording(item) {
- this.dataList.forEach((ele) => {
- if (ele.id !== item.id) {
- ele.status = false
- }
- })
- innerAudioContext.src = item.voice
- if (!item.status) {
- item.status = true
- innerAudioContext.play()
- //播放结束
- innerAudioContext.onEnded(() => {
- item.status = false
- })
- } else {
- item.status = false
- innerAudioContext.stop()
- }
- },
- handleGoDetail(item) {
- uni.navigateTo({
- url: `/pagesRepairs/repairDetails/repairDetails?id=${item.id}`
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- width: 100vw;
- height: calc(100vh - 152rpx);
- font-size: 32rpx;
- overflow-y: auto;
- .top_bg {
- height: 165rpx;
- background-color: #6fb6b8;
- }
- .top_types {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-evenly;
- margin: auto;
- margin-top: -100rpx;
- width: 690rpx;
- border-radius: 10rpx;
- box-shadow: 0px 0px 4rpx rgba(0, 0, 0, 0.25);
- background-color: #fff;
- .types_box {
- width: 25%;
- height: 188rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- .box_num {
- font-size: 46rpx;
- color: #ff5733;
- }
- .box_info {
- margin-top: 10rpx;
- font-size: 34rpx;
- }
- }
- .active {
- color: #fff;
- background-color: #6fb6b8;
- }
- }
- .top_types2 {
- box-sizing: border-box;
- margin: auto;
- margin-top: -100rpx;
- padding: 0 30rpx;
- width: 690rpx;
- // height: 402rpx;
- border-radius: 10rpx;
- box-shadow: 0px 0px 4rpx rgba(0, 0, 0, 0.25);
- background-color: #fff;
- .top {
- height: 112rpx;
- border-bottom: 1rpx solid #e6e6e6;
- }
- .bottom {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-evenly;
- .bottom_box {
- width: 25%;
- height: 145rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- .box_num {
- font-size: 46rpx;
- color: #ff5733;
- }
- .box_info {
- // margin-top: 10rpx;
- font-size: 34rpx;
- }
- }
- .active {
- color: #fff;
- background-color: #6fb6b8;
- }
- }
- }
- .body {
- box-sizing: border-box;
- padding: 0 30rpx 30rpx 30rpx;
- .body_item {
- margin-top: 20rpx;
- padding-bottom: 35rpx;
- border-radius: 11rpx;
- box-shadow: 0 0 8rpx #d9d9d9;
- .item_title {
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- height: 87rpx;
- border-bottom: 1rpx solid #e6e6e6;
- img {
- width: 30rpx;
- height: 30rpx;
- }
- .title_info {
- margin-left: 16rpx;
- font-size: 32rpx;
- }
- }
- .item_time {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30rpx;
- height: 79rpx;
- .time_msg {
- color: #808080;
- text {
- color: #000000;
- }
- }
- .time_type {
- font-size: 32rpx;
- color: #ff5733;
- }
- .color_type {
- color: #1e7dfb;
- }
- .color_type2 {
- color: #d43030;
- }
- .color_type3 {
- color: #6fb6b8;
- }
- .color_type4 {
- color: #a6a6a6;
- }
- }
- .item_box {
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- line-height: 60rpx;
- .box_key {
- width: 160rpx;
- color: #808080;
- }
- .box_value {
- display: flex;
- align-items: center;
- margin-right: auto;
- min-width: calc(100% - width: 160rpx;);
- img {
- margin-left: 10rpx;
- width: 45rpx;
- height: 45rpx;
- }
- .recording {
- display: flex;
- align-items: center;
- margin: 15rpx 0;
- width: 130rpx;
- height: 40rpx;
- color: #000;
- border-radius: 100rpx;
- border: 1rpx solid #cccccc;
- .voiceImg {
- margin: 0 12rpx;
- width: 30rpx;
- height: 30rpx;
- }
- }
- }
- .box_type {
- margin-left: 10rpx;
- width: 137rpx;
- height: 47rpx;
- line-height: 47rpx;
- text-align: center;
- border-radius: 136rpx;
- color: #ff5733;
- font-size: 24rpx;
- border: 1rpx solid #ff5733;
- }
- .box_value2 {
- display: flex;
- align-items: center;
- img {
- margin-top: -2rpx;
- margin-left: 14rpx;
- width: 46rpx;
- height: 46rpx;
- }
- }
- .phone {
- color: #6fb6b8;
- }
- }
- .item_img {
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- height: 120rpx;
- color: #808080;
- .img_key {
- }
- .img_value {
- width: 120rpx;
- height: 120rpx;
- border-radius: 14rpx;
- }
- }
- .item_btn {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- padding: 0 30rpx;
- line-height: 153rpx;
- img {
- margin-right: auto;
- margin-top: 45rpx;
- width: 56rpx;
- height: 56rpx;
- }
- .img {
- margin-right: auto;
- margin-left: -55rpx;
- margin-top: 45rpx;
- width: 62rpx;
- height: 62rpx;
- }
- .btn_box {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-left: 16rpx;
- margin-top: 45rpx;
- width: 174rpx;
- height: 68rpx;
- border-radius: 11rpx;
- }
- .type {
- color: #fff;
- background-color: #6fb6b8;
- }
- .type2 {
- color: #6fb6b8;
- background-color: #fff;
- border: 1rpx solid #6fb6b8;
- }
- }
- }
- .popup_close {
- width: 690rpx;
- border-radius: 19rpx;
- background-color: #fff;
- .close_box {
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- font-size: 32rpx;
- border: 1rpx solid #e6e6e6;
- }
- .radius {
- border-radius: 19rpx 19rpx 0 0;
- }
- .active {
- color: #fff;
- background-color: #6fb6b8;
- }
- .close_btn {
- display: flex;
- align-items: center;
- justify-content: space-evenly;
- margin-top: 100rpx;
- height: 121rpx;
- .btn_box {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 203rpx;
- height: 72rpx;
- border-radius: 9rpx;
- font-size: 32rpx;
- }
- .cancel {
- background-color: #e5e5e5;
- color: #6fb6b8;
- }
- .confirm {
- background-color: #6fb6b8;
- color: #fff;
- }
- }
- }
- .pop_leaveWords {
- border-radius: 19rpx;
- background-color: #fff;
- .leaveWords_title {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 690rpx;
- height: 110rpx;
- font-size: 32rpx;
- font-weight: bold;
- border-radius: 19rpx 19rpx 0 0;
- border-bottom: 1rpx solid #e6e6e6;
- }
- .leaveWords_body {
- height: 320rpx;
- textarea {
- box-sizing: border-box;
- margin: 35rpx 40rpx;
- padding: 20rpx;
- width: 610rpx;
- height: 312rpx;
- // font-size: 28rpx;
- border-radius: 14rpx;
- border: 1rpx solid #e6e6e6;
- }
- }
- .leaveWords_btn {
- display: flex;
- align-items: center;
- justify-content: space-evenly;
- height: 121rpx;
- .btn_box {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 203rpx;
- height: 72rpx;
- border-radius: 9rpx;
- font-size: 32rpx;
- }
- .cancel {
- background-color: #e5e5e5;
- color: #6fb6b8;
- }
- .confirm {
- background-color: #6fb6b8;
- color: #fff;
- }
- }
- }
- .pop_fee {
- padding-bottom: 50rpx;
- border-radius: 19rpx;
- background-color: #fff;
- .fee_title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- box-sizing: border-box;
- padding: 0 31rpx 0 42rpx;
- width: 690rpx;
- height: 110rpx;
- font-size: 32rpx;
- font-weight: bold;
- border-radius: 19rpx 19rpx 0 0;
- border-bottom: 1rpx solid #e6e6e6;
- text {
- font-size: 45rpx;
- font-weight: 400;
- color: #808080;
- }
- }
- .fee_content {
- max-height: 50vh;
- overflow-y: auto;
- .fee_item {
- border-bottom: 1rpx solid #e6e6e6;
- .fee_box {
- display: flex;
- align-items: center;
- padding-left: 42rpx;
- height: 80rpx;
- // font-size: 28rpx;
- color: #808080;
- text {
- color: #000000;
- }
- }
- }
- }
- }
- }
- .no_data {
- text-align: center;
- color: #b3b3b3;
- font-size: 24rpx;
- img {
- margin: 42rpx auto 0;
- width: 432rpx;
- height: 456rpx;
- }
- }
- }
- </style>
|