| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521 |
- <template>
- <view>
- <uni-nav-bar
- fixed="true"
- statusBar="true"
- left-icon="back"
- title="备品备件登记"
- @clickLeft="back"
- right-icon="scan"
- @clickRight="handlscanCheck"
- >
- </uni-nav-bar>
- <view class="check-content">
- <uni-easyinput type="text" v-model="searchKey" placeholder="搜索关键字" />
- <view class="content-number">
- <span class="number-box">共 {{ allNumber }}</span>
- <span class="number-box">已选 {{ chooseNumber }}</span>
- </view>
- <checkbox-group
- v-for="(item, index) in showList"
- :key="index"
- @change="e => selectVal(e, item, index)"
- >
- <view class="groupbox">
- <view class="listBox">
- <view class="listBox-con">
- <view class="con-line">
- <view class="line-name">备件编码</view>
- <view class="line-value">{{ item.assetCode }}</view>
- </view>
- <view class="con-line">
- <view class="line-name">备件名称</view>
- <view class="line-value">{{ item.informationName }}</view>
- </view>
- <view class="con-line">
- <view class="line-name">单位</view>
- <view class="line-value">{{
- item.isUnpack ? item.unit : item.minPackUnit
- }}</view>
- </view>
- <view class="con-line" v-if="!item.isUnpack">
- <view class="line-name">包装单元</view>
- <view class="line-value">
- <uni-easyinput
- type="number"
- v-model.number="item.num"
- ></uni-easyinput
- >{{ item.unit }}/{{ item.minPackUnit }}</view
- >
- </view>
- <view class="con-line" v-if="!item.isUnpack">
- <view class="line-name">剩余</view>
- <view class="line-value">
- {{ item.unusedNum }}
- {{ item.unit }}</view
- >
- </view>
- <view class="con-line">
- <view class="line-name">规格/型号</view>
- <view class="line-value"
- >{{ item.specification }}/{{ item.modelType }}</view
- >
- </view>
- <view class="con-line" v-if="item.selfDefinedParameter">
- <view
- class="con-line"
- v-for="(ite, ind) in JSON.parse(item.selfDefinedParameter)"
- :key="ind"
- >
- <view class="line-name">{{ ite.key }}</view>
- <view class="line-value">{{ ite.value }}</view>
- </view>
- </view>
- </view>
- <view class="listBox-sel">
- <checkbox
- class="sel-checbox"
- :checked="item.status"
- color="#fff"
- />
- </view>
- </view>
- </view>
- </checkbox-group>
- </view>
- <view class="footer">
- <view class="btn" @click="back"> 取消 </view>
- <view class="btn primary" @click="handleSave"> 保存 </view>
- </view>
- <!-- <ScanCode @scancodedate="cbScancodedate" :model="'uni'"></ScanCode> -->
- </view>
- </template>
- <script>
- import { get, post, postJ } from '@/utils/api.js'
- import ScanCode from '@/components/ScanCode.vue'
- export default {
- components: {
- ScanCode
- },
- data () {
- return {
- searchKey: '',
- listData: [],
- workOrderCode: '',
- workOrderId: '',
- equipmentCode: '',
- allNumber: 0,
- memoList: [],
- requestStatus: false,
- timer: null,
- originList: [],
- from: ''
- }
- },
- computed: {
- chooseNumber () {
- return this.memoList.length || 0
- },
- showList () {
- return this.listData.filter(
- ({ specification, modelType, assetCode, informationName }) => {
- if (this.searchKey) {
- return (
- (specification && specification.indexOf(this.searchKey) > -1) ||
- (modelType && modelType.indexOf(this.searchKey) > -1) ||
- (assetCode && assetCode.indexOf(this.searchKey) > -1) ||
- (informationName && informationName.indexOf(this.searchKey) > -1)
- )
- }
- return true
- }
- )
- }
- },
- onLoad (options) {
- this.from = options.from
- this.workOrderCode = options.workOrderCode
- this.workOrderId = options.workOrderId
- this.equipmentCode = options.equipmentCode
- },
- async onShow () {
- let _this = this
- if (this.from === 'maintain_service') {
- // 维修跳转
- await this.getUsedList()
- } else {
- this.originList = JSON.parse(
- this.$store.state.maintenance.sparePartsJson || '[]'
- ).map(item => {
- item.status = true
- return item
- })
- console.log(this.originList)
- this.memoList = uni.$u.deepClone(this.originList)
- }
- _this.getList()
- uni.$off('scancodedate') // 每次进来先 移除全局自定义事件监听器
- uni.$on('scancodedate', function (data) {
- _this.cbScancodedate(data)
- })
- // 如果有定时器,清除定时器
- if (this.timer) {
- clearTimeout(this.timer)
- this.timer = null
- }
- },
- onHide () {
- uni.$off('scancodedate')
- },
- onUnload () {
- uni.$off('scancodedate')
- },
- methods: {
- // 获取备品备件
- getUsedList () {
- let par = {
- sourceCode: this.workOrderCode
- }
- if (this.equipmentCode) {
- par.equipmentCode = this.equipmentCode
- }
- return postJ(
- this.apiUrl + `/sparePartsApply/getSparePartsExpendList`,
- par
- ).then(res => {
- if (res?.success) {
- this.originList = res.data.map(item => {
- item.status = true
- if (!item.isUnpack) {
- item.num = item.measurementUnit - item.unusedNum
- }
- return item
- })
- console.log(this.originList)
- this.memoList = uni.$u.deepClone(this.originList)
- }
- })
- },
- //勾选
- selectVal (e, val, index) {
- this.showList[index].status = !this.showList[index].status
- const idx = this.memoList.findIndex(
- item => item.assetCode === this.showList[index].assetCode
- )
- if (this.showList[index].status) {
- if (idx === -1) {
- this.memoList.push(this.showList[index])
- }
- } else {
- if (idx > -1) {
- this.memoList.splice(idx, 1)
- }
- }
- },
- handleSave () {
- let flag = false
- // 计算剩余
- const sparePartsExpendList = uni.$u
- .deepClone(this.listData)
- .map((item, index) => {
- item.status = !!this.memoList.find(i => i.id === item.id)
- if (!item.isUnpack) {
- if (item.status) {
- if (!item.num) {
- // 拆包输入
- uni.showToast({
- title: `请输入${item.assetCode}登记数量`,
- icon: 'none'
- })
- flag = true
- return false
- }
- item.unusedNum = item.unusedNum - item.num
- if (item.unusedNum < 0) {
- // 拆包输入
- uni.showToast({
- title: `${item.assetCode}登记数量不能大院剩余数量`,
- icon: 'none'
- })
- flag = true
- return false
- }
- item.status = item.unusedNum === 0
- } else {
- item.num = 0
- const obj = this.originList.find(i => i.id === item.id)
- if (obj) {
- // 保存过数据 退回
- item.unusedNum += obj.num
- }
- }
- }
- return item
- })
- if (flag) {
- return
- }
- this.memoList = sparePartsExpendList
- .filter(item => item.status || item.num)
- .map(item => {
- item.equipmentCode = this.equipmentCode
- return item
- })
- const params = {
- sparePartsExpendEquiList: [
- {
- equipmentCode: this.equipmentCode,
- sparePartsJson: JSON.stringify(this.memoList),
- workOrderId: +this.workOrderId
- }
- ],
- sparePartsExpendList
- }
- if (flag) {
- return
- }
- postJ(
- this.apiUrl + `/sparePartsApply/updateSparePartsExpend`,
- params
- ).then(res => {
- if (res?.success) {
- this.$store.commit(
- 'maintenance/SET_SPAREPARTSJSON',
- params.sparePartsExpendEquiList[0].sparePartsJson
- )
- this.back()
- }
- })
- },
- back () {
- uni.navigateBack({
- delta: 1
- })
- },
- // 扫码
- /* HandlScanCode() {
- uni.navigateTo({
- url: '/pages/ScanCode/ScanCode'
- })
- //uni.$emit('scancode',{code:'null/w05000000130012/锤锤专用05-不拆-逐个/规格01/null/成型/null@_@0'})
- }, */
- // 扫码枪扫码
- cbScancodedate (data) {
- this.Scancodedate(data.code)
- },
- // 相机扫码
- handlscanCheck () {
- let _this = this
- uni.scanCode({
- success: function (res) {
- _this.Scancodedate(res.result)
- }
- })
- },
- Scancodedate (code) {
- this.qrContent = code.trim()
- //this.qrContent = 'null/w05000000130014/锤锤专用05-不拆-逐个/规格01/null/成型/null@_@0'
- this.barType = this.setBarType(this.qrContent)
- this.getData()
- //let res = await this.getScanCheckMate()
- },
- // 设置barType
- setBarType (val) {
- let arr = val.split('@_@')
- return (arr && arr[1]) || 0
- },
- // 根据条码请求设备数据
- getData () {
- let par = {
- barType: this.barType,
- qrContent: this.qrContent
- }
- console.log(par, 'par------------------')
- if (this.requestStatus) return
- postJ(this.apiUrl + '/scan/getAssetInfo', par).then(res => {
- let data = res.data
- let result = this.showList.find(item => {
- return item.assetCode == data.assetCode
- })
- console.log('匹配result', result)
- if (result) {
- if (result.status) {
- uni.showToast({
- title: '已选定,不可重复扫码!',
- icon: 'none',
- duration: 2000
- })
- } else {
- uni.showToast({
- title: '选定成功',
- icon: 'none',
- duration: 2000
- })
- result.status = true
- this.memoList.push(result)
- }
- } else {
- uni.showToast({
- title: '列表中无此备件!',
- icon: 'none',
- duration: 2000
- })
- }
- this.requestStatus = true
- this.timer = setTimeout(() => {
- this.requestStatus = false
- }, 500)
- })
- },
- getList (key) {
- let par = {
- sourceCode: this.workOrderCode
- // status: false ,
- // searchKey: key
- // equipmentCode: this.equipmentCode
- }
- postJ(this.apiUrl + `/sparePartsApply/getSparePartsExpend`, par).then(
- res => {
- if (res?.success) {
- this.listData = res.data
- .filter(i => !i.status)
- .map(i => {
- const obj = this.memoList.find(itm => itm.id == i.id)
- if (!i.isUnpack) {
- return {
- ...i,
- num: obj?.num || '',
- unusedNum: obj?.num ? i.unusedNum + obj?.num : i.unusedNum,
- status: !!obj
- }
- }
- return i
- })
- this.memoList.forEach(ele => {
- if (!this.listData.find(i => i.id === ele.id)) {
- this.listData.push({
- ...ele,
- unusedNum: ele.num,
- num: ele.num
- })
- }
- })
- this.allNumber = res.data.length
- // this.listData.map(item => {
- // if (item.status) {
- // //this.chooseNumber = this.chooseNumber + 1
- // this.memoList.push(item)
- // }
- // })
- }
- }
- )
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .check-content {
- box-sizing: border-box;
- // height: calc(100vh - 88rpx);
- display: flex;
- flex-direction: column;
- padding: 20rpx 20rpx 120rpx;
- .content-number {
- width: 96%;
- text-align: right;
- margin: 16rpx auto;
- font-size: 28rpx;
- .number-box {
- display: inline-block;
- margin-left: 30rpx;
- }
- }
- .groupbox {
- border: 1rpx solid #ccc;
- display: block;
- padding: 20rpx 10rpx 20rpx 30rpx;
- margin-bottom: 20rpx;
- }
- .listBox {
- display: flex;
- justify-content: flex-start;
- position: relative;
- .listBox-sel {
- position: absolute;
- top: 0;
- right: 0;
- }
- .sel-checbox {
- zoom: 200%;
- }
- .listBox-con {
- width: 100%;
- .con-line {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- width: 100%;
- font-size: 28rpx;
- color: #666;
- .line-name {
- width: 180rpx;
- text-align: right;
- margin-right: 30rpx;
- }
- .uni-easyinput {
- display: inline-block;
- width: 200rpx;
- margin: 0 10rpx;
- }
- }
- .con-line:first-child {
- color: #000;
- }
- }
- }
- }
- .footer {
- height: 100rpx;
- display: flex;
- position: fixed;
- bottom: 0;
- width: 100vw;
- border: 1rpx solid $j-primary-border-green;
- 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;
- }
- }
- }
- </style>
|