| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- <template>
- <view>
- <uni-nav-bar
- fixed="true"
- statusBar="true"
- left-icon="back"
- title="检查中"
- @clickLeft="back"
- >
- </uni-nav-bar>
- <view class="check-content">
- <view class="title"
- >{{ equiName }} <text>{{ equiCode }}</text></view
- >
- <view class="check-list">
- <CheckCard
- v-for="(item, index) in equipList"
- :item="item"
- class="mb20"
- :index="index"
- ></CheckCard>
- </view>
- <view class="footer">
- <view class="btn" @click="back"> 返回 </view>
- <view class="btn primary" @click="handleSave"> 保存 </view>
- </view>
- </view>
-
- <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 { post, postJ } from '@/utils/api.js'
- import CheckCard from './components/CheckCard.vue'
- export default {
- components: { CheckCard },
- data () {
- return {
- pageId: '',
- page: 1,
- equipList: [],
- isEnd: false,
- equiName: '',
- equiCode: '',
- workOrderId: '',
- workOrderCode:''
- }
- },
- onLoad (options) {
- this.pageId = options.id
- this.equiName = options.equiName
- this.equiCode = options.equiCode
- this.workOrderId = +options.workOrderId
- this.workOrderCode = options.workOrderCode
- this.getList()
- },
- onReachBottom () {
- if (this.isEnd) return
- this.page++
- this.getList()
- },
- methods: {
- back () {
- uni.navigateBack({
- delta: 1
- })
- },
- handleSave () {
- 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()
- }
- })
- },
- getList () {
- 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>
- .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;
- }
- }
- </style>
|