| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516 |
- <template>
- <view class="container">
- <view class="top_bg" @click="permission = !permission"></view>
- <!-- 状态统计区域 -->
- <view class="top_types" v-if="!permission">
- <view class="types_box">
- <view class="box_num">100</view>
- <view class="box_info">工单数</view>
- </view>
- <view class="types_box">
- <view class="box_num">10</view>
- <view class="box_info">处理中</view>
- </view>
- <view class="types_box">
- <view class="box_num">50</view>
- <view class="box_info">已完成</view>
- </view>
- <view class="types_box">
- <view class="box_num">60</view>
- <view class="box_info">已超时</view>
- </view>
- </view>
- <view class="top_types2" v-else>
- <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">
- <view class="box_num">100</view>
- <view class="box_info">工单数</view>
- </view>
- <view class="bottom_box">
- <view class="box_num">10</view>
- <view class="box_info">处理中</view>
- </view>
- <view class="bottom_box">
- <view class="box_num">50</view>
- <view class="box_info">已完成</view>
- </view>
- <view class="bottom_box">
- <view class="box_num">60</view>
- <view class="box_info">已超时</view>
- </view>
- </view>
- </view>
- <!-- 排班区域 -->
- <view class="watch">
- <view class="watch_title">
- <img src="../../static/images/repairsImg/watch.png" />
- 排班
- </view>
- <!-- 表格区域 -->
- <uni-table stripe emptyText="暂无更多数据">
- <!-- 表头行 -->
- <uni-tr>
- <uni-th width="80" align="center">姓名</uni-th>
- <uni-th width="50" align="center">工种</uni-th>
- <uni-th width="80" align="center">状态</uni-th>
- <uni-th width="70" align="center">是否值班</uni-th>
- </uni-tr>
- <!-- 表格数据行 -->
- <uni-tr v-for="(item, index) in tableData" :key="index">
- <!-- 姓名区域 -->
- <uni-td align="center">{{ item.name }}</uni-td>
- <!-- 工种区域 -->
- <uni-td align="center">{{ item.type }}</uni-td>
- <!-- 状态区域 -->
- <uni-td align="center">
- <picker @change="bindPickerChange($event, item)" :range="typeArray">
- <view class="watch_color" v-if="item.status == '0'">{{ typeArray[item.status] }}</view>
- <view class="watch_color2" v-if="item.status == '1'">{{ typeArray[item.status] }}</view>
- <view class="watch_color3" v-if="item.status == '2'">{{ typeArray[item.status] }}</view>
- </picker>
- </uni-td>
- <!-- 是否值班 -->
- <uni-td align="center">
- <view @click="handleChange(item, index)">{{ item.work.toString() }}</view>
- </uni-td>
- </uni-tr>
- </uni-table>
- <!-- 是否值班弹窗区域 -->
- <uni-popup ref="popup_work">
- <view class="watch_pop">
- <view class="poop_title">
- <view class="cancel" @click="$refs.popup_work.close()">取消</view>
- <view class="confirm" @click="handlePopConfirm">确定</view>
- </view>
- <view class="poop_body">
- <view class="body_item" v-for="(item, index_pop) in workArray" :key="index_pop" @click="handleChangeWork(item)">
- <view class="body_item_info">
- {{ item }}
- </view>
- <view class="body_item_icon" v-if="defaultIndex.includes(item)">✔</view>
- </view>
- </view>
- </view>
- </uni-popup>
- </view>
- <!-- 排行榜区域 -->
- <view class="rank">
- <view class="rank_title">
- <img src="../../static/images/repairsImg/rank.png" />
- 工单完成排行榜
- </view>
- <!-- 排行榜柱状图 -->
- <view class="rank_charts">
- <!-- 加上canvas2d属性后 模拟器上图表显示异常,真机调试没有问题,开发时不添加canvas2d属性,发布时添加canvas2d属性 -->
- <!-- :canvas2d="true" -->
- <qiun-data-charts type="bar" :opts="opts" :chartData="chartData" />
- </view>
- </view>
- <!-- 悬浮按钮区域 -->
- <view class="fixed">
- <img src="../../static/images/repairsImg/add.png" />
- <uni-badge :offset="[5, 5]" absolute="rightTop" text="8">
- <img class="img" src="../../static/images/repairsImg/message.png" @click="handleGoMsg" />
- </uni-badge>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- defaultIndex: [],
- changeIndex: 0,
- typeArray: ['接单中', '订单饱和', '停止接单'],
- workArray: ['正常班次', '值班班次'],
- permission: true,
- items: ['团队数据统计', '个人数据统计'],
- current: 0,
- chartData: {
- categories: ['张三', '李四', '王五', '老六', '刘八'],
- series: [
- {
- name: '好评数',
- data: [35, 36, 31, 33, 13]
- },
- {
- name: '完成数',
- data: [18, 27, 21, 24, 6]
- }
- ]
- },
- opts: {
- color: ['#1890FF', '#91CB74', '#FAC858', '#EE6666', '#73C0DE', '#3CA272', '#FC8452', '#9A60B4', '#ea7ccc'],
- padding: [15, 30, 0, 5],
- enableScroll: false,
- legend: {},
- xAxis: {
- boundaryGap: 'justify',
- disableGrid: false,
- min: 0,
- axisLine: false,
- max: 40
- },
- yAxis: {},
- extra: {
- bar: {
- type: 'group',
- width: 15,
- meterBorde: 1,
- meterFillColor: '#FFFFFF',
- activeBgColor: '#000000',
- activeBgOpacity: 0.08,
- linearType: 'custom',
- barBorderCircle: true,
- seriesGap: 2,
- categoryGap: 2
- }
- }
- },
- // status状态: 0 接单中 1 订单饱和 2 停止接单
- // work状态: 0 正常班次 1 值班班次
- tableData: [
- {
- name: '张三',
- type: '电工',
- status: 0,
- work: ['正常班次', '值班班次']
- },
- {
- name: '张三三',
- type: '泥工',
- status: 1,
- work: ['值班班次']
- },
- {
- name: '张三',
- type: '电工',
- status: 2,
- work: ['正常班次']
- },
- {
- name: '张三三',
- type: '泥工',
- status: 0,
- work: ['值班班次']
- },
- {
- name: '张三',
- type: '电工',
- status: 1,
- work: ['值班班次']
- },
- {
- name: '张三三',
- type: '泥工',
- status: 2,
- work: ['正常班次']
- }
- ]
- }
- },
- mounted() {},
- methods: {
- // 是否值班弹窗确定按钮回调
- handlePopConfirm() {
- uni.showModal({
- title: '提示',
- content: '确定修改是否值班状态吗?',
- success: (res) => {
- if (res.confirm) {
- this.tableData[this.changeIndex].work = this.defaultIndex
- console.log('用户点击确定')
- } else if (res.cancel) {
- console.log('用户点击取消')
- }
- }
- })
- this.$refs.popup_work.close()
- },
- // 点击值班状态回调
- handleChange(item, index) {
- this.$refs.popup_work.open('bottom')
- this.changeIndex = index
- this.defaultIndex = JSON.parse(JSON.stringify(item.work))
- },
- // 切换值班状态回调
- handleChangeWork(item) {
- if (this.defaultIndex.includes(item)) {
- const temIndex = this.defaultIndex.indexOf(item)
- this.defaultIndex.splice(temIndex, 1)
- } else {
- this.defaultIndex.push(item)
- }
- },
- // 切换排班状态回调
- bindPickerChange(e, item) {
- uni.showModal({
- title: '提示',
- content: '确定修改状态吗?',
- success: (res) => {
- if (res.confirm) {
- item.status = e.detail.value
- console.log('用户点击确定')
- } else if (res.cancel) {
- console.log('用户点击取消')
- }
- }
- })
- },
- // 点击悬浮按钮回调
- handleGoMsg() {
- uni.navigateTo({
- url: '/pagesRepairs/message/message'
- })
- },
- // 顶部分段器切换回调
- onClickItem(e) {
- if (this.current != e.currentIndex) {
- this.current = e.currentIndex
- console.log(this.current)
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- width: 100vw;
- height: calc(100vh - 152rpx);
- overflow-y: auto;
- .top_bg {
- height: 165rpx;
- background-color: #6fb6b8;
- }
- .top_types {
- display: flex;
- justify-content: space-evenly;
- margin: auto;
- margin-top: -100rpx;
- width: 690rpx;
- height: 188rpx;
- border-radius: 10rpx;
- box-shadow: 0px 0px 4rpx rgba(0, 0, 0, 0.25);
- background-color: #fff;
- .types_box {
- flex: 1;
- 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;
- }
- }
- }
- .top_types2 {
- box-sizing: border-box;
- margin: auto;
- margin-top: -100rpx;
- padding: 0 30rpx;
- width: 690rpx;
- height: 282rpx;
- 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;
- justify-content: space-evenly;
- height: 170rpx;
- .bottom_box {
- flex: 1;
- 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;
- }
- }
- }
- }
- .watch {
- box-sizing: border-box;
- margin: 20rpx auto;
- padding: 0 30rpx;
- width: 690rpx;
- border-radius: 10rpx;
- box-shadow: 0px 0px 4rpx rgba(0, 0, 0, 0.25);
- .watch_title {
- display: flex;
- align-items: center;
- height: 95rpx;
- font-size: 36rpx;
- border-bottom: 1rpx solid #e6e6e6;
- img {
- margin-right: 14rpx;
- width: 44rpx;
- height: 44rpx;
- }
- }
- .watch_color {
- color: #6fb6b8;
- }
- .watch_color2 {
- color: #1e7dfb;
- }
- .watch_color3 {
- color: #ff5733;
- }
- .watch_td {
- display: flex;
- }
- .watch_pop {
- width: 100%;
- height: 575rpx;
- overflow-y: auto;
- background-color: #fff;
- .poop_title {
- box-sizing: border-box;
- padding: 0 30rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 100rpx;
- font-size: 34rpx;
- border-bottom: 1rpx solid #f5f5f5;
- .cancel {
- color: #888888;
- }
- .confirm {
- color: #1e7dfb;
- }
- }
- .poop_body {
- margin-top: 50rpx;
- .body_item {
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100rpx;
- border-bottom: 1rpx solid #f5f5f5;
- .body_item_info {
- }
- .body_item_icon {
- position: absolute;
- top: 30rpx;
- right: 85rpx;
- color: #1e7dfb;
- }
- }
- }
- }
- }
- .rank {
- position: relative;
- box-sizing: border-box;
- margin: 0 auto 100rpx;
- padding: 0 30rpx;
- width: 690rpx;
- height: 745rpx;
- border-radius: 10rpx;
- box-shadow: 0px 0px 4rpx rgba(0, 0, 0, 0.25);
- .rank_title {
- display: flex;
- align-items: center;
- height: 95rpx;
- font-size: 36rpx;
- border-bottom: 1rpx solid #e6e6e6;
- img {
- margin-right: 14rpx;
- width: 41rpx;
- height: 41rpx;
- }
- }
- .rank_charts {
- position: absolute;
- bottom: 0;
- width: 100%;
- height: 650rpx;
- }
- }
- .fixed {
- z-index: 2;
- position: fixed;
- right: 0;
- bottom: 155rpx;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- width: 252rpx;
- height: 123rpx;
- border-radius: 150rpx 0 0 150rpx;
- box-shadow: 0px 0px 7rpx rgba(0, 0, 0, 0.15);
- background-color: #fff;
- img {
- width: 76rpx;
- height: 76rpx;
- }
- .img {
- width: 88rpx;
- height: 88rpx;
- }
- }
- }
- </style>
|