diff --git a/src/api/financialsector/index.js b/src/api/financialsector/index.js
index aa7e485c..30675f57 100644
--- a/src/api/financialsector/index.js
+++ b/src/api/financialsector/index.js
@@ -74,7 +74,7 @@ export const $_tempDelpriceTemplate = params => {
export const $_getexport= params => {
return request({
- url: '/api/logpm-basicdata/basicdataPrice/export',
+ url: '/api/logpm-basicdata/basicdataPrice//export/v2',
method: 'get',
params,
responseType: 'blob',
diff --git a/src/option/Pricesystem/index.js b/src/option/Pricesystem/index.js
index 5d191dce..81c88c8b 100644
--- a/src/option/Pricesystem/index.js
+++ b/src/option/Pricesystem/index.js
@@ -91,17 +91,17 @@ export const columnList = [
sortable: true,
head: false,
},
- {
- prop: 'expiryTime',
- label: '到期时间',
- type: 4,
- values: '',
- width: '150',
- checkarr: [],
- fixed: false,
- sortable: true,
- head: false,
- },
+ // {
+ // prop: 'expiryTime',
+ // label: '到期时间',
+ // type: 4,
+ // values: '',
+ // width: '150',
+ // checkarr: [],
+ // fixed: false,
+ // sortable: true,
+ // head: false,
+ // },
{
prop: 'templateName',
label: '模板名称',
@@ -157,8 +157,8 @@ export const HistoricalList = [
head: false,
},
{
- prop: 'effectiveStatus',
- label: '状态',
+ prop: 'maintenanceStatus',
+ label: '维护状态',
type: 1,
values: '',
width: '80',
@@ -179,8 +179,8 @@ export const HistoricalList = [
head: false,
},
{
- prop: 'expiryTime',
- label: '过期时间',
+ prop: 'effectiveStatus',
+ label: '生效状态',
type: 1,
values: '',
width: '90',
@@ -189,6 +189,17 @@ export const HistoricalList = [
sortable: true,
head: false,
},
+ // {
+ // prop: 'expiryTime',
+ // label: '过期时间',
+ // type: 1,
+ // values: '',
+ // width: '90',
+ // checkarr: [],
+ // fixed: false,
+ // sortable: true,
+ // head: false,
+ // },
{
prop: 'createUserName',
diff --git a/src/option/distribution/VehicleArrivalManagement.js b/src/option/distribution/VehicleArrivalManagement.js
index b7a9d81b..8d3df916 100644
--- a/src/option/distribution/VehicleArrivalManagement.js
+++ b/src/option/distribution/VehicleArrivalManagement.js
@@ -360,7 +360,7 @@ export const columnList = [
label: '操作',
type: 6,
values: '',
- width: '250',
+ width: '300',
checkarr: [],
fixed: 'right',
sortable: false,
diff --git a/src/utils/exportData.js b/src/utils/exportData.js
index 2ef66adb..cd68b0a9 100644
--- a/src/utils/exportData.js
+++ b/src/utils/exportData.js
@@ -9,17 +9,25 @@ export function exportExcel(columnList = [], listData = [], name = 'excel') {
const blackArr = ['序号', '复选框', '操作', '全选'];
+ const _columnData = columnList.filter(item => !blackArr.includes(item.label));
+
const data = [];
+ const marginList = [];
+
for (let j = 0; j < listData.length; j++) {
const item = listData[j];
const arr = [];
- for (let i = 0; i < columnList.length; i++) {
- const val = columnList[i];
+ for (let i = 0; i < _columnData.length; i++) {
+ const val = _columnData[i];
if (blackArr.includes(val.label) || val.head) continue;
+ if (val.isColumnMerge && isNumber(item.mergeColumnIndex) && item.mergeColumnIndex > 1) {
+ marginList.push({ s: { r: j, c: i }, e: { r: j + item.mergeColumnIndex, c: i } });
+ }
+
if (j === 0) headers.push(val.label);
arr.push(item[val.prop] || item[val.prop] === 0 ? item[val.prop] : '');
}
@@ -56,7 +64,7 @@ export function exportExcel(columnList = [], listData = [], name = 'excel') {
let valueWidth = 0;
if (value)
if (/.*[\u4e00-\u9fa5]+.*$/.test(value)) {
- valueWidth = parseFloat(value.trim().toString().length * 2.1) + 4;
+ valueWidth = parseFloat(value.trim().toString().length * 1.5) + 4;
} else {
valueWidth = parseFloat(value.toString().length * 1.1) + 4;
}
@@ -75,9 +83,9 @@ export function exportExcel(columnList = [], listData = [], name = 'excel') {
// 3.对比每列最大值
let aotuWidth = [];
- rowsWidth.map((row, index) => {
+ rowsWidth.forEach((row, index) => {
let maxWidth = [];
- row.map((value, i) => {
+ row.forEach((value, i) => {
if (index === 0) {
maxWidth.push({
wch: value,
@@ -94,6 +102,7 @@ export function exportExcel(columnList = [], listData = [], name = 'excel') {
// 4.给excel设置自适应宽度
ws['!cols'] = aotuWidth;
+ ws['!merges'] = marginList;
const excludes = ['!cols', '!fullref', '!merges', '!ref', '!rows'];
console.log('ws :>> ', ws);
for (let key in ws) {
@@ -102,7 +111,7 @@ export function exportExcel(columnList = [], listData = [], name = 'excel') {
ws[key].s = {
alignment: {
// horizontal: 'center', //水平居中对齐
- // vertical: 'center', // 垂直居中
+ vertical: 'center', // 垂直居中
wrapText: true,
},
border: {
diff --git a/src/views/Pricesystem/ListOfPriceSystems.vue b/src/views/Pricesystem/ListOfPriceSystems.vue
index 6e0894c5..ce5c5be9 100644
--- a/src/views/Pricesystem/ListOfPriceSystems.vue
+++ b/src/views/Pricesystem/ListOfPriceSystems.vue
@@ -21,6 +21,9 @@
导入价格
+
+ 更 新导入价格
新增
@@ -116,16 +119,17 @@
prop="effectiveTime"
>
+
-
-
+ -->
-
+
+
+
{
};
// 导入模板
const ImportTemplate = () => {
+ uptitle.value='导入模板'
+ importaction.value='/api/logpm-basicdata/basicdataPrice/upload/v2'
dialogTemp.value = true;
};
+const updateImportTemplate=()=>{
+ uptitle.value='更新导入模板'
+ importaction.value='/api/logpm-basicdata/basicdataPrice/upload/upload/v3'
+ dialogTemp.value = true;
+}
/** 生效时间 -- 生效时间不能大于到期时间 */
const time1 = time => {
if (!details.form.expiryTime) return false;
@@ -505,7 +520,7 @@ const onLoad = async () => {
...details.page,
...details.query,
};
-
+ details.loadingObj.list=true;
const res = await getBasicdataPrice(submitData);
const { code, data } = res.data;
@@ -751,6 +766,7 @@ const handleSubmitBasic = () => {
}
ElMessage.success(msg);
+ Historicalversion(HistoriBt.value)
onLoad();
} catch (error) {
console.log('error :>> ', error);
diff --git a/src/views/basic/forklift/basicForklift.vue b/src/views/basic/forklift/basicForklift.vue
index a4e77591..de58a784 100644
--- a/src/views/basic/forklift/basicForklift.vue
+++ b/src/views/basic/forklift/basicForklift.vue
@@ -46,76 +46,64 @@
-
-
-
-
-
-
-
- 查看
- 编辑
- 删除
-
-
-
-
-
+
+
+
+
+ 查看
+ 编辑
+ 删除
+
+
+
+
-
-