Browse Source

Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev

fix_bug_pro20231227
13208366016 2 years ago
parent
commit
ab2b390d2f
  1. 30
      src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView.vue
  2. 4
      vite.config.js

30
src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView.vue

@ -202,8 +202,7 @@
</template>
</el-dialog>
<!-- 上架 -->
<el-dialog
<el-dialog
v-model="isshowupt"
:title="
'请选择' +
@ -329,6 +328,20 @@
</span>
</template> -->
</el-dialog>
<el-dialog
v-model="isshowConfirmedListing"
:title="
'确定上架'
"
width="50%"
center
>
<div style="text-align: center;">
<el-button type="primary" @click="confirmedListing">确定</el-button>
<el-button @click="isshowConfirmedListing = false">取消</el-button>
</div>
</el-dialog>
<!-- 下架 -->
<el-dialog
v-model="isshowdow"
@ -507,6 +520,8 @@ let details = reactive({
contenarr: [],
isshowcon: false,
isshowupt: false,
isshowConfirmedListing: false,
addhuojData: {},
checkite: {},
loading: false,
currentPage: 1,
@ -2010,10 +2025,16 @@ const showdown = async value => {
searchbutdown();
};
const addhuoj = async scope => {
details.addhuojData = scope
details.isshowConfirmedListing = true
console.log(scope.row);
};
//
const confirmedListing = async () => {
let data = {
allocationId: details.checkite.id,
};
const scope = details.addhuojData
let url = '';
switch (details.isshowupt) {
case 1:
@ -2051,6 +2072,8 @@ const addhuoj = async scope => {
break;
}
let response = await posturl(url, data);
//
details.isshowConfirmedListing = false
if (response.data.code == 200) {
console.log(response.data);
proxy.$message({
@ -2066,7 +2089,7 @@ const addhuoj = async scope => {
message: response.data.msg,
});
}
};
}
async function allup() {
// console.log(scope.row);
let data = {
@ -2210,6 +2233,7 @@ const {
loading,
checkregionse,
isshowupt,
isshowConfirmedListing,
columnList,
isshowcon,
arrlist,

4
vite.config.js

@ -14,8 +14,8 @@ export default ({ mode, command }) => {
'/api': {
// target: 'http://192.168.10.126:8889',
// target: 'http://192.168.10.48:8888',
// target: 'http://192.168.10.123:8889',
target: 'http://192.168.10.101:8888',
target: 'http://192.168.10.123:8889',
// target: 'http://192.168.10.101:8888',
// target: 'http://192.168.10.101:8888',
// target: 'http://192.168.10.29:13000',
// target: 'http://test.api.huitongys.com',

Loading…
Cancel
Save