| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630 |
- <template>
- <view>
- <uni-nav-bar
- fixed="true"
- statusBar="true"
- left-icon="back"
- title="检查中"
- @clickLeft="back"
- ></uni-nav-bar>
- <!-- <view class="top-wrapper">
- <uni-section>
- <uni-easyinput prefixIcon="search" style="width: 460rpx" v-model="keyWords" placeholder="请输入">
- </uni-easyinput>
- </uni-section>
- <button class="search_btn" @click="doSearch">搜索</button>
- <image class="menu_icon" src="~@/static/pda/menu.svg"></image>
- </view> -->
- <view class="check-content">
- <view class="title">
- {{ equiName }}
- <text>{{ equiCode }}</text>
- </view>
- <!-- 选择状态栏 -->
- <view class="select-bar" v-if="showSelectBar">
- <view class="select-actions">
- <view class="select-all" @click="selectAll">
- <checkbox :checked="allSelected" color="#157a2c" />
- <text>{{ allSelected ? "取消全选" : "全选" }}</text>
- </view>
- <view class="selected-count">
- <text>已选择 {{ selectedCount }} 项</text>
- </view>
- </view>
- <view
- class="batch-btn"
- @click="openBatchDialog"
- :class="{ disabled: selectedCount === 0 }"
- >
- <text>批量操作</text>
- </view>
- <view class="close-select" @click="closeSelectBar">
- <text>取消选择</text>
- </view>
- </view>
- <view class="batch-trigger" @click="openSelectBar" v-if="!showSelectBar">
- <text>批量操作</text>
- </view>
- <view class="check-list" ref="scrollContainer">
- <view v-for="(item, index) in filterList">
- <CheckCard
- :item="item"
- class="mb20"
- :index="index"
- ref="CheckCardRef"
- ></CheckCard>
- </view>
- </view>
- <view class="footer">
- <view class="btn" @click="back">返回</view>
- <view class="btn primary" @click="handleSave">保存</view>
- </view>
- </view>
- <!-- 批量操作弹窗 -->
- <uni-popup ref="batchPopup" type="bottom">
- <view class="batch-popup-content">
- <view class="popup-header">
- <text class="header-title">批量操作</text>
- <view class="close-btn" @click="closeBatchPopup">
- <text class="close-icon">×</text>
- </view>
- </view>
- <view class="popup-body">
- <view class="select-info">
- <text>已选择 {{ selectedCount }} 项</text>
- </view>
- <view class="action-btn status-btn" @click="batchSetStatus(1)">
- <text class="status-icon normal-icon">✓</text>
- <text>批量设为正常</text>
- </view>
- <view class="action-btn status-btn" @click="batchSetStatus(-1)">
- <text class="status-icon abnormal-icon">✗</text>
- <text>批量设为异常</text>
- </view>
- </view>
- </view>
- </uni-popup>
- <uni-popup ref="inputDialog" type="dialog">
- <uni-popup-dialog
- ref="inputClose"
- mode="input"
- title="您当前已超出计划完成时间,请填写原因"
- placeholder="请输入内容"
- :before-close="true"
- @close="handleClose"
- @confirm="timeoutCauseConfirm"
- ></uni-popup-dialog>
- </uni-popup>
- </view>
- </template>
- <script>
- import { getDeviceInfo, mattersChecked } from "@/api/myTicket/index.js";
- import { post, postJ } from "@/utils/api.js";
- import CheckCard from "./components/CheckCard.vue";
- export default {
- components: {
- CheckCard,
- },
- data() {
- return {
- keyWords: "",
- id: "",
- pageId: "",
- page: 1,
- equipList: [],
- filterList: [],
- isEnd: false,
- equiName: "",
- equiCode: "",
- workOrderId: "",
- workOrderCode: "",
- showSelectBar: false,
- allSelected: false,
- };
- },
- computed: {
- selectedCount() {
- return this.equipList.filter((item) => item.checked).length;
- },
- },
- onLoad(options) {
- this.id = options.id;
- this.keyWords = options.codes;
- this.getList();
- // this.pageId = options.id
- // this.equiName = options.equiName
- // this.equiCode = options.equiCode
- // this.workOrderId = +options.workOrderId
- // this.workOrderCode = options.workOrderCode
- },
- // onReachBottom() {
- // if (this.isEnd) return
- // this.page++
- // this.getList()
- // },
- methods: {
- back() {
- uni.navigateBack({
- delta: 1,
- });
- },
- doSearch() {
- if (!this.keyWords) {
- this.filterList = this.equipList;
- } else {
- this.filterList = this.equipList.filter((item) =>
- item.categoryCode.includes(this.keyWords),
- );
- }
- },
- handleSave() {
- let isAllPass = true;
- isAllPass = this.equipList.every((item) => item.status > -1);
- let params = {
- id: this.equipList[0].id,
- executeStatus: isAllPass ? 1 : 2,
- isAbnormal: isAllPass ? 1 : 0,
- workItems: this.equipList.map((item) => {
- return {
- content: item.content,
- name: item.name,
- norm: item.norm,
- operationGuide: item.operationGuide,
- result: item.result,
- serialNum: item.serialNum,
- status: item.status == -1 ? -1 : 1,
- photoList: item.photoList || [],
- };
- }),
- };
- mattersChecked(params).then((data) => {
- uni.showToast({
- duration: 2000,
- title: "保存成功!",
- });
- this.back();
- });
- // let _this = this
- // const params = {
- // itemList: this.equipList,
- // planEquiId: this.pageId,
- // workOrderId: +this.workOrderId,
- // workOrderType: 1
- // }
- // postJ(this.apiUrl + `/workOrder/itemsInspect`, params, true).then(res => {
- // if (res?.success) {
- // if (res.data) {
- // uni.showModal({
- // title: '提示',
- // content: '所有设备已执行完,是否报工?',
- // cancelText: '取消', // 取消按钮的文字
- // confirmText: '报工', // 确认按钮的文字
- // showCancel: true, // 是否显示取消按钮,默认为 true
- // success: res => {
- // if (res.confirm) {
- // _this._report()
- // } else {
- // _this.back()
- // }
- // }
- // })
- // } else {
- // uni.showToast({
- // duration: 2000,
- // title: '保存成功!'
- // })
- // this.back()
- // }
- // }
- // })
- },
- handleClose() {
- this.$refs.inputDialog.close();
- },
- timeoutCauseConfirm(value) {
- if (!value) {
- uni.showToast({
- title: "请输入超时原因",
- icon: "none",
- });
- return;
- }
- this.$refs.inputDialog.close();
- this._report(value);
- },
- _report(timeoutCause = "") {
- let _this = this;
- post(
- this.apiUrl + "/workOrder/reportWork",
- {
- workOrderId: this.workOrderId,
- timeoutCause,
- },
- true,
- false,
- )
- .then((res) => {
- if (res?.success) {
- let data = res.data;
- if (data.length) {
- uni.showModal({
- title: "提示",
- content: `有${data.length}台设备被标记为缺陷,是否要报修?`,
- cancelText: "取消", // 取消按钮的文字
- confirmText: "报修", // 确认按钮的文字
- showCancel: true, // 是否显示取消按钮,默认为 true
- success: (res) => {
- if (res.confirm) {
- if (data.length > 1) {
- uni.navigateTo({
- url: `/pages/tour_tally/detail/detail?workOrderCode=${this.workOrderCode}&id=${this.workOrderId}&chooseTab=true`,
- });
- } else {
- uni.navigateTo({
- url: `/pages/repair/repair/index?source=5&workOrderCode=${this.workOrderCode}&equiCode=${data[0].equiCode}&equiId=${data[0].equiId}&workOrderId=${this.pageId}&equiName=${data[0].equiName}&equiModel=${data[0].equiModel}&equiLocation=${data[0].equiLocation}`,
- });
- }
- } else {
- _this.back();
- }
- },
- });
- } else {
- uni.showToast({
- icon: "success",
- title: "操作成功!",
- duration: 2000,
- });
- _this.back();
- }
- }
- })
- .catch((res) => {
- if (res.code === "4444") {
- this.$refs.inputDialog.open();
- }
- });
- },
- // 打开选择栏
- openSelectBar() {
- this.showSelectBar = true;
- },
- // 关闭选择栏
- closeSelectBar() {
- this.showSelectBar = false;
- this.equipList.forEach((item) => {
- item.checked = false;
- });
- this.allSelected = false;
- },
- // 全选/取消全选
- selectAll() {
- this.allSelected = !this.allSelected;
- this.equipList.forEach((item) => {
- item.checked = this.allSelected;
- });
- },
- // 打开批量操作弹窗
- openBatchDialog() {
- if (this.selectedCount === 0) {
- uni.showToast({
- title: "请先选择要操作的项目",
- icon: "none",
- });
- return;
- }
- this.$refs.batchPopup.open();
- },
- // 关闭批量操作弹窗
- closeBatchPopup() {
- this.$refs.batchPopup.close();
- },
- // 批量设置状态
- batchSetStatus(status) {
- const statusText = status === 1 ? "正常" : "异常";
- uni.showModal({
- title: "确认提示",
- content: `确认将选中的 ${this.selectedCount} 项设置为${statusText}吗?`,
- success: (res) => {
- if (res.confirm) {
- this.equipList.forEach((item) => {
- if (item.checked) {
- item.status = status;
- item.result = statusText;
- }
- });
- uni.showToast({
- title: "批量设置成功",
- icon: "success",
- });
- this.closeBatchPopup();
- this.closeSelectBar();
- }
- },
- });
- },
- getList() {
- getDeviceInfo({
- id: this.id,
- }).then((data) => {
- this.equiName = data.name;
- this.equiCode = data.code;
- this.equipList = data.workItems.map((item) => {
- return {
- ...item,
- id: data.id,
- status: 1,
- result: "正常",
- executeStatus: 1,
- checked: false,
- };
- });
- this.doSearch();
- });
- // const { page } = this
- // post(this.apiUrl + `/workOrder/getEquipmentItemsListApp?size=10&page=${page}`, { planEquiId: +this.pageId, workOrderId: this.workOrderId }, true).then(res => {
- // if (res?.success) {
- // res.data.records.forEach(item => {
- // item.isNormal = item.isNormal === null || item.isNormal === undefined ? 1 : item.isNormal
- // })
- // if (page === 1) {
- // this.equipList = res.data.records
- // } else {
- // this.equipList.push(...res.data.records)
- // }
- // this.isEnd = this.equipList.length >= res.data.total
- // }
- // })
- },
- },
- };
- </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;
- }
- }
- .check-content {
- box-sizing: border-box;
- // height: calc(100vh - 88rpx);
- display: flex;
- flex-direction: column;
- padding-bottom: 100rpx;
- .title {
- line-height: 80rpx;
- display: flex;
- justify-content: space-between;
- padding: 0 30rpx;
- }
- .check-list {
- flex: 1;
- overflow: auto;
- padding: 0 30rpx 30rpx;
- }
- .footer {
- height: 100rpx;
- display: flex;
- border: 1rpx solid $j-primary-border-green;
- position: fixed;
- bottom: 0;
- width: 100vw;
- background: #fff;
- .btn {
- display: flex;
- flex: 1;
- justify-content: center;
- align-items: center;
- border-radius: 0;
- &.primary {
- background-color: $j-primary-border-green;
- color: #fff;
- }
- }
- }
- .mb20 {
- margin-bottom: 20rpx;
- }
- .batch-trigger {
- padding: 20rpx 30rpx;
- text-align: right;
- text {
- background-color: #157a2c;
- color: #fff;
- padding: 10rpx 30rpx;
- border-radius: 8rpx;
- font-size: 28rpx;
- }
- }
- .select-bar {
- background-color: #f5f5f5;
- padding: 20rpx 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1rpx solid #e0e0e0;
- .select-actions {
- display: flex;
- align-items: center;
- flex: 1;
- .select-all {
- display: flex;
- align-items: center;
- margin-right: 20rpx;
- text {
- margin-left: 10rpx;
- font-size: 28rpx;
- }
- }
- .selected-count {
- font-size: 28rpx;
- color: #666;
- }
- }
- .batch-btn {
- background-color: #157a2c;
- color: #fff;
- padding: 10rpx 30rpx;
- border-radius: 8rpx;
- font-size: 28rpx;
- margin: 0 10rpx;
- &.disabled {
- background-color: #ccc;
- opacity: 0.6;
- }
- }
- .close-select {
- padding: 10rpx 20rpx;
- background-color: #fff;
- border-radius: 8rpx;
- font-size: 28rpx;
- }
- }
- }
- .batch-popup-content {
- background-color: #fff;
- border-radius: 20rpx 20rpx 0 0;
- padding: 30rpx;
- z-index: 1000;
- .popup-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-bottom: 30rpx;
- border-bottom: 1rpx solid #e0e0e0;
- .header-title {
- font-size: 36rpx;
- font-weight: bold;
- color: #333;
- }
- .close-btn {
- width: 60rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- .close-icon {
- font-size: 60rpx;
- color: #999;
- line-height: 1;
- }
- }
- }
- .popup-body {
- padding: 30rpx 0;
- .select-info {
- padding: 20rpx 0;
- text-align: center;
- color: #666;
- font-size: 28rpx;
- }
- .action-btn {
- display: flex;
- align-items: center;
- padding: 25rpx 30rpx;
- margin: 0 0 20rpx 0;
- background-color: #f5f5f5;
- border-radius: 12rpx;
- font-size: 30rpx;
- &:active {
- background-color: #e0e0e0;
- }
- text {
- margin-left: 20rpx;
- }
- }
- .status-btn {
- .status-icon {
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
- color: #fff;
- margin-left: 0;
- }
- .normal-icon {
- background-color: #157a2c;
- }
- .abnormal-icon {
- background-color: #ff4444;
- }
- }
- }
- }
- </style>
|