123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393 |
- <template>
- <view>
- <view v-if="!isCreate">
- <uni-section title="">
- <view class="example">
- <uni-forms ref="form" :modelValue="item" labelWidth="80px" :rules="rules">
- <uni-forms-item label="装箱单号" name="FBillNo">
- <uni-easyinput v-model="item['FENCHASENUM.LT']" disabled>
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item label="调拨数量" name="FQty">
- <uni-easyinput v-model="item['FQty']" />
- </uni-forms-item>
- </uni-forms>
- <button type="primary" @click="submit()">确认</button>
- </view>
- </uni-section>
- </view>
- <view class="table-container" v-else>
- <!-- 查询框 -->
- <view class="container">
- <view class="search-container">
- <uni-easyinput prefixIcon="search" v-model="stockLocNum" placeholder="请输入仓位"
- style="margin-right: 5px;">
- </uni-easyinput>
- <button class="search-button" @click="search">查询</button>
- </view>
- <!-- <view style="padding:0 5px 2px 5px;">
- <uni-datetime-picker v-model="range" type="daterange" @maskClick="maskClick" />
- </view> -->
- </view>
- <!-- 表格容器 -->
- <scroll-view class="table-scroll" scroll-y @scroll="onScroll">
- <!-- 表头 -->
- <view class="table-header" ref="tableHeader">
- <view class="table-cell1">仓位编号</view>
- </view>
- <!-- 表格内容 -->
- <view class="table-body">
- <view class="table-row" v-for="(item, index) in stockList" :key="item.FStockLocNum">
- <view class="checkbox-container">
- <checkbox :value="item.FStockLocNum" :checked="item.checked"
- @tap="handleCheckboxClick(item.FStockLocNum)" />
- <view style="display: flex; justify-content: center; align-items: center;">
- {{ item.FStockLocNum}}({{item.FQty}})
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- <!-- 底部按钮 -->
- <view class="bottom-bar">
- <button class="mini-btn button" type="primary" size="default" @click="stockSubmit">确定</button>
- <button class="mini-btn button" type="warn" size="default" @click="goBack">取消</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- getInfoByBarcode,
- getStockInfo,
- Querylocation
- } from '../../api/production_replenishment';
- import modal from '../../plugins/modal';
- import {
- playVoice,
- audioUrls
- } from '@/utils/audio.js'
- // import modal from '../../uni_modules/uview-ui/libs/config/props/modal';
- export default {
- onLoad(option) {
- this.formId = uni.getStorageSync("formId")
- const isCreate = JSON.parse(decodeURIComponent(option.isCreate))
- const item = JSON.parse(decodeURIComponent(option.item))
- const index = JSON.parse(decodeURIComponent(option.index))
- console.log(item)
- console.log(index)
-
- this.isCreate = isCreate
- this.item = item
- this.index = index
- },
- data() {
- return {
- isCreate: false,
- stockList: [],
- selectedItemId: '',
- stockLocNum: '',
- formId: '',
- item: {},
- index: '',
- isReplace: false,
- rules: {
- FQty: {
- rules: [{
- required: true,
- errorMessage: '请输入调拨数量',
- },
- ]
- },
- },
- };
- },
- computed: {
- },
- methods: {
- handleError(error) {
- playVoice(audioUrls.failVoiceUrl)
- console.error('操作失败:', error);
- modal.confirm(error).then(res => {
- if (res) {} else {}
- })
- },
- submit() {
- console.log(this.item)
- this.$refs.form.validate().then(res => {
- this.item["index"] = this.index
- let self = this
- uni.navigateBack({
- success: function() {
- // 传递数据给上一页
- uni.$emit('item', self.item);
- }
- });
- }).catch(err => {
- console.log(err);
- })
- },
- async stockSubmit() {
- if (this.selectedItemId == null) {
- modal.msgError("请选择仓位")
- playVoice(audioUrls.failVoiceUrl)
- return
- }
- this.item['FDestStockId.FNumber'] = this.item["FStockId.FNumber"]
- this.item['FDestStockLocId.FF102029.FNumber'] = this.selectedItemId
- let self = this
- console.log(self.item)
- uni.navigateBack({
- success: () => {
- uni.$emit('selectStock', self.item);
- }
- });
- },
- goBack() {
- uni.navigateBack();
- },
- search() {
- modal.loading('获取数据中,请耐心等待...')
- let data = {
- usertoken: "99302b4923aa42298c5922b7b68bcff9",
- stockNum: this.item["FStockId.FNumber"],
- stockLocNum: this.stockLocNum
- }
- Querylocation(data).then(res => {
- console.log(res);
- this.handleResponse(res)
- })
- },
- onScroll(e) {
- const scrollLeft = e.detail.scrollLeft;
- this.headerLeft = -scrollLeft; // 更新表头左侧位置,实现横向滚动时的对齐效果
- },
- checkboxChange: function(e) {
- console.log(e)
- var items = this.BillList,
- values = e.detail.value;
- console.log(values)
- this.selected = values
- console.log(this.selected)
- for (var i = 0, lenI = items.length; i < lenI; ++i) {
- const item = items[i]
- if (values.includes(item.FID)) {
- this.$set(item, 'checked', true)
- } else {
- this.$set(item, 'checked', false)
- }
- }
- console.log(items)
- },
- handleResponse(res) {
- // 关闭加载提示
- modal.closeLoading();
- // 检查响应是否为空
- if (res.length === 0) {
- modal.msg("请确认输入条件有效!");
- playVoice(audioUrls.failVoiceUrl);
- return;
- }
- // 处理数据去重并更新状态
- this.updateStockList(res);
- },
- updateStockList(data) {
-
- this.stockList = data.results;
- console.log(this.stockList)
- },
- handleCheckboxClick(itemId) {
- console.log(itemId)
- // 取消之前选中的项
- if (this.selectedItemId === itemId) {
- this.selectedItemId = null;
- this.stockList.forEach(item => {
- item.checked = false;
- });
- console.log(this.stockList)
- } else {
- // 更新选中项
- this.selectedItemId = itemId;
- this.stockList.forEach(item => {
- item.checked = (item.FStockLocNum === itemId);
- });
- console.log(this.stockList)
- }
- console.log(this.selectedItemId)
- this.$forceUpdate()
- },
- }
- };
- </script>
- <style>
- /deep/ .is-disabled {
- background-color: #ffffff !important;
- color: #0d0d0d !important;
- }
- .example {
- padding-left: 10px;
- padding-right: 10px;
- background-color: #fff;
- }
- .segmented-control {
- margin-bottom: 15px;
- }
- .button-group {
- margin-top: 15px;
- display: flex;
- justify-content: space-around;
- }
- .form-item {
- display: flex;
- align-items: center;
- }
- .button {
- display: flex;
- align-items: center;
- height: 35px;
- margin-left: 10px;
- }
- .table-container {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .search-container {
- display: flex;
- /* justify-content: flex-start; */
- flex-direction: row;
- align-items: center;
- padding: 5px;
- /* border-bottom: 1px solid #ccc; */
- flex-wrap: wrap;
- }
- .search-button {
- /* padding: 8px 16px; */
- border: none;
- border-radius: 4px;
- background-color: #007bff;
- color: #fff;
- cursor: pointer;
- }
- .table-scroll {
- /* position: absolute; */
- flex: 1;
- overflow-x: auto;
- overflow-y: hidden;
- }
- .table-header {
- position: sticky;
- top: 0;
- background-color: #f0f0f0;
- font-weight: bold;
- border-bottom: 1px solid #ccc;
- display: flex;
- z-index: 1;
- /* 确保表头在内容之上 */
- }
- .table-cell1 {
- width: 100%;
- padding: 10px;
- text-align: center;
- border-right: 1px solid #ccc;
- }
- .table-cell1-1 {
- min-width: 150px;
- padding: 10px;
- text-align: left;
- border-right: 1px solid #ccc;
- }
- .table-cell {
- min-width: 100px;
- padding: 10px;
- text-align: center;
- border-right: 1px solid #ccc;
- }
- .header-cell {
- border-right: none;
- /* 取消最后一列的右边框 */
- }
- .table-body {
- flex: 1;
- /* width: fit-content; */
- /* 使内容宽度适应内容的宽度 */
- }
- .table-row {
- width: 100%;
- /* display: flex; */
- border-bottom: 1px solid #ccc;
- }
- .checkbox {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .bottom-bar {
- display: flex;
- /* justify-content: center; */
- justify-content: flex-end;
- /* 将按钮靠右对齐 */
- align-items: center;
- /* padding: 10px; */
- padding: 3px;
- background-color: #f0f0f0;
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* 可选:添加阴影效果 */
- z-index: 1000; /* 确保按钮组在其他内容之上 */
- }
- .button {
- margin: 0 10px;
- /* padding: 10px 20px; */
- }
- .checkbox-container {
- width: 100%;
- padding: 10px;
- /* text-align: center; */
- border-right: 1px solid #ccc;
- display: flex;
- align-items: center;
- /* margin-left: 10px;
- margin-right: 10px; */
- /* 可根据需要调整间距 */
- }
- </style>
|