component-l-e 1.0.11 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/component-l-e.common.js
CHANGED
|
@@ -41402,7 +41402,7 @@ if (typeof window !== 'undefined') {
|
|
|
41402
41402
|
// Indicate to webpack that this file can be concatenated
|
|
41403
41403
|
/* harmony default export */ var setPublicPath = (null);
|
|
41404
41404
|
|
|
41405
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/deliveryPlatformProject/src/LEProjectIndex.vue?vue&type=template&id=
|
|
41405
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/deliveryPlatformProject/src/LEProjectIndex.vue?vue&type=template&id=6503fe35&scoped=true
|
|
41406
41406
|
var render = function render() {
|
|
41407
41407
|
var _vm = this,
|
|
41408
41408
|
_c = _vm._self._c;
|
|
@@ -41430,6 +41430,7 @@ var render = function render() {
|
|
|
41430
41430
|
"table-data": _vm.projectData,
|
|
41431
41431
|
"isPagination": true,
|
|
41432
41432
|
"table-col-check": _vm.tableColCheck,
|
|
41433
|
+
"isOpenNewSearch": true,
|
|
41433
41434
|
"page": _vm.page
|
|
41434
41435
|
},
|
|
41435
41436
|
on: {
|
|
@@ -43833,13 +43834,26 @@ var loading_load_namespaceObject = "data:image/gif;base64,R0lGODlh0QCwAPcwAOFbZO
|
|
|
43833
43834
|
filterDownEnum: {
|
|
43834
43835
|
type: Object,
|
|
43835
43836
|
default: () => {
|
|
43836
|
-
return {
|
|
43837
|
+
return {
|
|
43838
|
+
'rawDataStatus': {
|
|
43839
|
+
'无': 'NO_DATA',
|
|
43840
|
+
'未释放': 'NOT_RELEASED',
|
|
43841
|
+
'链接释放': 'LINK_RELEASED',
|
|
43842
|
+
'硬盘释放': 'HDD_RELEASED'
|
|
43843
|
+
}
|
|
43844
|
+
};
|
|
43837
43845
|
}
|
|
43838
43846
|
},
|
|
43839
43847
|
// 操作按钮权限配置 { change: true, share: true, delete: true } 或函数 (record) => ({ change: true })
|
|
43840
43848
|
operationPermit: {
|
|
43841
43849
|
type: [Array, Function],
|
|
43842
43850
|
default: () => []
|
|
43851
|
+
},
|
|
43852
|
+
noUseNewSearchKey: {
|
|
43853
|
+
type: Array,
|
|
43854
|
+
default: () => {
|
|
43855
|
+
return ['rawDataStatus', 'analystName', 'customerName', 'salesName'];
|
|
43856
|
+
}
|
|
43843
43857
|
}
|
|
43844
43858
|
},
|
|
43845
43859
|
components: {
|
|
@@ -43874,7 +43888,8 @@ var loading_load_namespaceObject = "data:image/gif;base64,R0lGODlh0QCwAPcwAOFbZO
|
|
|
43874
43888
|
bsContractChEn: bsContractChEn,
|
|
43875
43889
|
loading: false,
|
|
43876
43890
|
filterDownKey: [],
|
|
43877
|
-
rawDataStatusIconList: rawDataStatusIconList
|
|
43891
|
+
rawDataStatusIconList: rawDataStatusIconList,
|
|
43892
|
+
isOpenNewSearch: true
|
|
43878
43893
|
};
|
|
43879
43894
|
},
|
|
43880
43895
|
computed: {
|
|
@@ -43922,12 +43937,17 @@ var loading_load_namespaceObject = "data:image/gif;base64,R0lGODlh0QCwAPcwAOFbZO
|
|
|
43922
43937
|
params['page.current'] = 1;
|
|
43923
43938
|
params['page.size'] = 10;
|
|
43924
43939
|
}
|
|
43925
|
-
let sendData = {
|
|
43940
|
+
let sendData = {
|
|
43941
|
+
'query#platform': this.platName
|
|
43942
|
+
};
|
|
43926
43943
|
let length = this.searchConditionTag.length;
|
|
43927
43944
|
if (length) {
|
|
43928
43945
|
this.searchConditionTag.forEach(item => {
|
|
43929
43946
|
let newSearchKey = item.newSearchKey;
|
|
43930
43947
|
let key = item.key;
|
|
43948
|
+
if (this.noUseNewSearchKey.includes(key)) {
|
|
43949
|
+
newSearchKey = key;
|
|
43950
|
+
}
|
|
43931
43951
|
if (this.filterDownKey?.length > 0 && this.filterDownKey.includes(key)) {
|
|
43932
43952
|
sendData[newSearchKey] = this.filterDownEnum[key][item.value];
|
|
43933
43953
|
} else {
|
|
@@ -44028,10 +44048,10 @@ var loading_load_namespaceObject = "data:image/gif;base64,R0lGODlh0QCwAPcwAOFbZO
|
|
|
44028
44048
|
async updateProject(data) {
|
|
44029
44049
|
let res;
|
|
44030
44050
|
if (data.form.hasOwnProperty('customerRemark')) {
|
|
44031
|
-
let value = Object.values(data.form)[0]?.value || '';
|
|
44051
|
+
let value = Object.values(data.form)[0]?.value || ' ';
|
|
44032
44052
|
res = await requestProjectEditCustomerRemark(data.projectId, value);
|
|
44033
44053
|
} else {
|
|
44034
|
-
let value = Object.values(data.form)[0]?.value || '';
|
|
44054
|
+
let value = Object.values(data.form)[0]?.value || ' ';
|
|
44035
44055
|
res = await requestProjectEditRemark(data.projectId, value);
|
|
44036
44056
|
}
|
|
44037
44057
|
if (res?.code === 200) {
|
|
@@ -44061,10 +44081,10 @@ var loading_load_namespaceObject = "data:image/gif;base64,R0lGODlh0QCwAPcwAOFbZO
|
|
|
44061
44081
|
});
|
|
44062
44082
|
;// ./packages/deliveryPlatformProject/src/LEProjectIndex.vue?vue&type=script&lang=js
|
|
44063
44083
|
/* harmony default export */ var src_LEProjectIndexvue_type_script_lang_js = (LEProjectIndexvue_type_script_lang_js);
|
|
44064
|
-
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/deliveryPlatformProject/src/LEProjectIndex.vue?vue&type=style&index=0&id=
|
|
44084
|
+
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/deliveryPlatformProject/src/LEProjectIndex.vue?vue&type=style&index=0&id=6503fe35&prod&scoped=true&lang=css
|
|
44065
44085
|
// extracted by mini-css-extract-plugin
|
|
44066
44086
|
|
|
44067
|
-
;// ./packages/deliveryPlatformProject/src/LEProjectIndex.vue?vue&type=style&index=0&id=
|
|
44087
|
+
;// ./packages/deliveryPlatformProject/src/LEProjectIndex.vue?vue&type=style&index=0&id=6503fe35&prod&scoped=true&lang=css
|
|
44068
44088
|
|
|
44069
44089
|
;// ./packages/deliveryPlatformProject/src/LEProjectIndex.vue
|
|
44070
44090
|
|
|
@@ -44081,7 +44101,7 @@ var LEProjectIndex_component = normalizeComponent(
|
|
|
44081
44101
|
staticRenderFns,
|
|
44082
44102
|
false,
|
|
44083
44103
|
null,
|
|
44084
|
-
"
|
|
44104
|
+
"6503fe35",
|
|
44085
44105
|
null
|
|
44086
44106
|
|
|
44087
44107
|
)
|