Browse Source

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

fix_bug_pro20231227
pref_mail@163.com 1 year ago
parent
commit
d58792de4e
  1. 8
      src/api/basic/basicPda.js
  2. 4
      src/components/basic-container/main.vue
  3. 5
      src/components/tablecmt/tablecmt.vue
  4. 1
      src/css/common.css
  5. 16
      src/router/page/index.js
  6. 1
      src/styles/common.scss
  7. 82
      src/views/basic/pda/basicPda.vue
  8. 1
      src/views/basic/printTemplate/basicPrintTemplateFrom.vue
  9. 30
      src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue
  10. 206
      src/views/datadetail/ToolUpdate.vue
  11. 17
      vite.config.js

8
src/api/basic/basicPda.js

@ -11,7 +11,13 @@ export const getList = (current, size, params) => {
}
})
}
export const $_TableList = (params) => {
return request({
url: '/api/logpm-basic/pda/list',
method: 'GET',
params,
});
};
export const getDetail = (id) => {
return request({
url: '/api/logpm-basic/pda/detail',

4
src/components/basic-container/main.vue

@ -34,8 +34,8 @@ export default {
</script>
<style lang="scss">
.basic-container {
padding: 10px 6px;
.basic-container {
height:100%;
box-sizing: border-box;
&--block {

5
src/components/tablecmt/tablecmt.vue

@ -160,6 +160,9 @@
<el-text class="mx-1 tabtitles" @click.stop @dblclick.stop="copyalls(column)">{{
column.label
}}</el-text>
<el-icon v-if="column.type == 1 || column.type == 2 || column.type == 3"
><DocumentCopy
/></el-icon>
</div>
</div>
</template>
@ -184,7 +187,7 @@ onMounted(() => {
function getWinHight() {
var windowHight = 0;
if (document.body.clientHeight && document.documentElement.clientHeight) {
windowHight =
windowHight =
document.body.clientHeight < document.documentElement.clientHeight
? document.body.clientHeight
: document.documentElement.clientHeight;

1
src/css/common.css

@ -70,7 +70,6 @@ a {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
margin-bottom: 10px;
}
.avue-view {

16
src/router/page/index.js

@ -73,6 +73,22 @@ export default [
},
],
},
// 重构演示页面
{
path: '/datadetail/ToolUpdate',
component: Layout,
redirect: '/reservation/order_listFroms',
children: [
{
path: '',
name: '表格重构',
meta: {
i18n: 'dict',
},
component: () => import('@/views/datadetail/ToolUpdate.vue'),
},
],
},
{
path: '/',
name: '主页',

1
src/styles/common.scss

@ -101,7 +101,6 @@ a {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
margin-bottom: 10px;
}
.avue-view {

82
src/views/basic/pda/basicPda.vue

@ -23,12 +23,7 @@
@on-load="onLoad"
>
<template #menu-left>
<el-button
type="danger"
icon="el-icon-delete"
plain
v-if="permission.basicdataPda_delete"
@click="handleDelete"
<el-button type="danger" icon="el-icon-delete" plain v-if="permission.basicdataPda_delete" @click="handleDelete"
>
</el-button>
<el-button type="primary" @click="viewrepairs()">查看维修记录</el-button>
@ -38,11 +33,12 @@
<el-button type="primary" text icon="el-icon-view" @click="handleview(row)">查看</el-button>
</template>
</avue-crud>
<basic-pdaform v-if="!edit" @returnpda="returnpda" :pdaformdata="pdaformdata" />
<!-- <basic-pdaform v-if="!edit" @returnpda="returnpda" :pdaformdata="pdaformdata" /> -->
</basic-container>
</template>
<script>
<script>
import { getList, getDetail, add, update, remove } from '@/api/basic/basicPda';
import option from '@/option/basic/basicPda';
import { mapGetters } from 'vuex';
@ -149,6 +145,7 @@ export default {
console.log('返回>>>>', str);
this.edit = true;
},
//
rowSave(row, done, loading) {
add(row).then(
() => {
@ -165,6 +162,7 @@ export default {
}
);
},
//
rowUpdate(row, index, done, loading) {
update(row).then(
() => {
@ -181,6 +179,7 @@ export default {
}
);
},
//
rowDel(row) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
@ -264,16 +263,19 @@ export default {
}
done();
},
//
searchReset() {
this.query = {};
this.onLoad(this.page);
},
//
searchChange(params, done) {
this.query = params;
this.page.currentPage = 1;
this.onLoad(this.page, params);
done();
},
//
selectionChange(list) {
this.selectionList = list;
},
@ -281,15 +283,20 @@ export default {
this.selectionList = [];
this.$refs.crud.toggleSelection();
},
//
currentChange(currentPage) {
this.page.currentPage = currentPage;
},
//
sizeChange(pageSize) {
this.page.pageSize = pageSize;
},
//
refreshChange() {
this.onLoad(this.page, this.query);
console.log('点击刷新');
},
//
onLoad(page, params = {}) {
this.loading = true;
@ -316,49 +323,36 @@ export default {
};
getList(page.currentPage, page.pageSize, values).then(res => {
console.log(res.data.data.records, 'res');
const data = res.data.data;
this.page.total = data.total;
console.log(data.total, 'sss');
this.data = data.records;
console.log(this.data, 'this.data');
this.loading = false;
this.selectionClear();
});
},
},
};
</script>
<!-- setup -->
<script setup>
</script>
<style scoped lang="scss">
// .el-form-item__label {
// width: auto !important;
// letter-spacing: 2px; /* 2 */
// padding-right: 0px !important;
// }
// .avue-form__row {
// margin-right: 10px !important;
// }
// .avue-form__menu:last-child {
// display: flex;
// margin-left: -30px !important;
// width: 50px !important;
// justify-content: flex-end;
// }
:deep(.el-form-item__content) {
div:first-child {
width:auto;
width: auto;
}
}
:deep(.el-form-item__label) {
width: 90px !important;
justify-content: flex-start;
}
// .avue-form__group{
// .avue-form__menu:last-child {
// /* */
// }
// }
:deep(.avue-form__menu) {
width: 120px !important;
}
@ -387,23 +381,23 @@ div:last-child {
.avue-form__menu--center {
margin-left: auto !important;
}
:deep(.el-form-item__label){
width:auto !important;
}
:deep(.avue-form__row){
max-width:270px !important;
margin-right:2px;
:deep(.el-form-item__label) {
width: auto !important;
}
:deep(.avue-form__row){
.el-form-item{
margin-right:0;
:deep(.avue-form__row) {
max-width: 270px !important;
margin-right: 2px;
}
:deep(.avue-form__row) {
.el-form-item {
margin-right: 0;
}
}
:deep(.avue-form__group--flex){
:deep(.avue-form__group--flex) {
justify-content: space-between;
}
:deep(.el-form-item__label){
padding-right: 8px;
:deep(.el-form-item__label) {
padding-right: 8px;
}
</style>

1
src/views/basic/printTemplate/basicPrintTemplateFrom.vue

@ -430,7 +430,6 @@ export default {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
margin-bottom: 10px;
background-color: white;
}
</style>

30
src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue

@ -313,6 +313,9 @@ export default {
search: true,
multiple: true,
span: 12,
expand: true,
maxHeight: '100',
overHidden: true, //
placeholder: '省/市/区',
dicUrl: '/blade-system/region/lazy-listAll',
checkStrictly: true,
@ -1176,26 +1179,25 @@ export default {
}
</style>
<style scoped lang='scss'>
:deep(.avue-form__row){
max-width:300px!important;
<style scoped lang="scss">
:deep(.avue-form__row) {
max-width: 300px !important;
}
:deep(.el-form-item__label){
width:auto !important;
:deep(.el-form-item__label) {
width: auto !important;
}
:deep(.no-print){
:deep(.no-print) {
// margin-left:auto;
max-width:300px !important;
max-width: 300px !important;
margin-left: inherit;
.el-button{
margin-right:0;
.el-button {
margin-right: 0;
}
}
:deep(.el-form-item){
margin-right:0 !important;
:deep(.el-form-item) {
margin-right: 0 !important;
}
:deep(.avue-form__group--flex) {
justify-content: space-between;
justify-content: space-between;
}
</style>
</style>

206
src/views/datadetail/ToolUpdate.vue

@ -0,0 +1,206 @@
<template>
<!-- 表格组件 -->
<div class='el-content-el' ref='TabHeight'>
<!-- 顶部开始 -->
<div class="el-Cart-button">
<!-- 表格顶部左侧按钮 -->
<div class="el-Cart-button-left">
<el-button type="primary" @click="handleAdd"><el-icon><Plus /></el-icon> </el-button>
<el-button @click="handleDelete"><el-icon><Delete /></el-icon> </el-button>
<el-button @click="handleDelete"><el-icon><Edit /></el-icon></el-button>
</div>
<!-- 表格顶部右侧按钮 -->
<div class="el-Cart-button-right">
<!-- 刷新按钮 -->
<button>
<el-icon color="#ccc"><Refresh /></el-icon>
</button>
<!-- 功能按钮 -->
<button>
<el-icon color="#ccc"><Operation /></el-icon>
</button>
<!-- 搜索按钮 -->
<button>
<el-icon color="#ccc"><Search /></el-icon>
</button>
</div>
</div>
<!-- 顶部结束 -->
<div class='el-Cart'>
<!-- 表格列开始 -->
<el-table :data="data" border :height="TabHeight+'px'" style="width: 100%; ">
<el-table-column type="selection" width="55" fixed="left"/>
<el-table-column type="index" fixed="left" width="50" height="100" label="#" align="center"/>
<el-table-column prop="name" label="产品名称" width="180" align="center " sortable/>
<el-table-column prop="model" label="型号" width="180" align="center " />
<el-table-column prop="purchaseAmount" label="购买金额" width="180" align="center "/>
<el-table-column prop="state" label="状态" width="180" align="center "/>
<el-table-column prop="currentUsageWarehouse" label="当前使用仓" width="180" align="center "/>
<el-table-column prop="user" label="使用人" width="180" align="center " />
<el-table-column prop="deviceSerialNumber" label="设备序列号S/N" width="180" align="center "/>
<el-table-column prop="userPosition" label="使用人岗位" width="180" align="center "/>
<el-table-column prop="isDeposit" label="是否收取押金" width="180" align="center "/>
<el-table-column prop="deposit" label="押金金额(元)" width="180" align="center "/>
<el-table-column prop="purchasingCompany" label="采购公司" width="180" align="center "/>
<el-table-column prop="buyingTime" label="购买时间" width="180" align="center "/>
<el-table-column prop="warrantyPeriodEndTime" label="保修截止时间" width="180" align="center "/>
<el-table-column prop="notes" label="备注" width="180" align="center "/>
<el-table-column label="商品图片" width="180" align="center" >
<template #default="props">
<img :src="props.row.photo" class='el-Img'>
</template>
</el-table-column>
<el-table-column fixed="right" label="操作" width="280" align="center ">
<template #default>
<el-button link type="primary" icon="el-icon-delete" @click="handleDelete">删除</el-button>
<el-button link type="primary" icon="el-icon-view" @click="handleEdit(row)">编辑</el-button>
<el-button link type="primary" icon="el-icon-view" @click="handleview(row)">查看</el-button>
</template>
</el-table-column>
</el-table>
<!-- 表格翻页功能 -->
<div class="demo-pagination-block">
<el-pagination
v-model:current-page="currentPage"
v-model:page-size="pageSize"
:page-sizes="pageList"
:small="small"
:disabled="disabled"
:background="background"
layout="total, sizes, prev, pager, next, jumper"
:total="2"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
/>
</div>
</div>
</div>
</template>
<script setup>
import { ref, reactive,onMounted } from 'vue';
import { getList, getDetail, add, update, remove,$_TableList } from '@/api/basic/basicPda'; //API
const currentPage = ref(1); //
const pageSize = ref(30); //
const pageList = ref([5, 10, 50, 100, 200]); //
const small = ref(false);
const background = ref(true); //
const disabled = ref(false); // 使
const data = ref([]); //
const TabHeight = ref();//
//
function onLoad(){
// API$_TableList
$_TableList({ current:currentPage.value, size: pageSize.value }).then(res=>{
console.log(res.data.data.records);
//
data.value=res.data.data.records
})
}
// DOM
onMounted(() => {
// 86
TabHeight.value = TabHeight.value.offsetHeight-88;
// DOM
onLoad()
})
</script>
<style scoped lang='scss'>
// IDV
.el-content-el {
padding: 0 8px;
padding-top:8px;
background-color: #fff;
height: 100%;
box-sizing: border-box;
//
:deep(.el-Cart-button) {
margin-bottom: 5px;
display: flex;
justify-content: space-between;
}
//
.el-Cart-button-left,.el-Cart-button-right{
display: flex;
margin: 0 0px;
justify-content: space-between;
}
.el-Cart-button-left{
:deep( button){
padding: 0 7px;
min-width: 70px;
display: flex;
span{
width: 100%;
display: inline-flex;
align-items: center;
justify-content: space-between;
i{
margin-right: 6px;
}
}
}
}
.el-Cart-button-right {
display: flex;
margin: 0 0px;
justify-content: space-between;
button {
background-color: transparent;
border-radius: 50%;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #ccc;
margin-right: 8px;
&:hover {
background-color: #172e601f;
i {
color: #0e2549;
}
}
//
&:last-child {
margin-right: 0;
}
}
}
.el-Cart {
//
:deep(.el-table__header) {
th {
background-color: #fafafa;
color: #000;
}
}
//
//
.demo-pagination-block {
display: flex;
justify-content: flex-end;
margin-top: 6px;
}
//
:deep(.el-table__row) {
height: 60px;
}
//
.el-Img {
width: 100%;
height: 40px;
img {
width: 100%;
height: 100%;
}
}
}
}
</style>

17
vite.config.js

@ -16,14 +16,15 @@ export default ({ mode, command }) => {
// hy
// target: 'http://192.168.10.48:8888',
// lmy
// target: 'http://192.168.10.123:8889',
// target: 'http://192.168.10.123:8889',
// caoge
// target: 'http://192.168.10.101:8888',
// cyz
// target: 'http://192.168.10.75:8777',
target: 'http://192.168.10.75:8777',
// tjj
target: 'http://192.168.10.29:13000',
// target: 'http://192.168.10.29:13000',
// target: 'http://test.api.huitongys.com',
// target: 'http://h5uapi.huitongys.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, ''),
},
@ -45,16 +46,12 @@ export default ({ mode, command }) => {
output: {
// 分包
manualChunks(id) {
if (id.includes("node_modules")) {
return id
.toString()
.split("node_modules/")[1]
.split("/")[0]
.toString();
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0].toString();
}
},
},
},
}
},
});
};

Loading…
Cancel
Save