centaline-data-driven-v3 0.0.65 → 0.0.67
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/dist/centaline-data-driven-v3.umd.js +64 -64
- package/package.json +2 -2
- package/src/assets/commonWeb.css +4 -45
- package/src/components/common/video.vue +2 -2
- package/src/components/web/Button.vue +57 -1
- package/src/components/web/ComboBox.vue +29 -4
- package/src/components/web/Form.vue +11 -2
- package/src/components/web/FormList.vue +69 -51
- package/src/components/web/RadioButton.vue +9 -2
- package/src/components/web/SearchList/Tablecurrency.vue +4 -3
- package/src/components/web/SearchScreen.vue +10 -6
- package/src/components/web/SensitiveEye.vue +3 -2
- package/src/components/web/TextBox.vue +11 -5
- package/src/loader/src/Button.js +6 -6
- package/src/loader/src/Form.js +1 -0
- package/src/loader/src/SearchTable.js +5 -2
- package/src/main.js +2 -2
|
@@ -598,6 +598,9 @@ function loadSearchTableModel(source, searchModel, defaultSearchData, action, se
|
|
|
598
598
|
get dataDictionary() {
|
|
599
599
|
return rtn._dataDictionary;
|
|
600
600
|
},
|
|
601
|
+
get rowColorColumn() { //行字体颜色列
|
|
602
|
+
return source.content.rowColorColumn;
|
|
603
|
+
},
|
|
601
604
|
//设置行样式
|
|
602
605
|
setRow(rows) {
|
|
603
606
|
rtn.setStyleRow(rows);
|
|
@@ -610,10 +613,10 @@ function loadSearchTableModel(source, searchModel, defaultSearchData, action, se
|
|
|
610
613
|
row.rowStyle = "";
|
|
611
614
|
}
|
|
612
615
|
if (rtn.rowColorColumn && row[rtn.rowColorColumn]) {
|
|
613
|
-
|
|
616
|
+
row.rowStyle = row.rowStyle + ";color:" + row[rtn.rowColorColumn] + ";";
|
|
614
617
|
}
|
|
615
618
|
if (row.flagDrag && row.flagDrag == '1') {
|
|
616
|
-
|
|
619
|
+
row.rowStyle = row.rowStyle + "cursor:move;";
|
|
617
620
|
}
|
|
618
621
|
});
|
|
619
622
|
},
|
package/src/main.js
CHANGED
|
@@ -26,7 +26,7 @@ app.use(centaline, {
|
|
|
26
26
|
//baseUrl: "http://10.1.245.50:38735/max-uplink-api/",
|
|
27
27
|
//baseUrl: "http://10.1.245.111:38028/",
|
|
28
28
|
flagRouterSelf: true,
|
|
29
|
-
flagApp:
|
|
29
|
+
flagApp: false,//是否app端
|
|
30
30
|
zindex: 999,
|
|
31
31
|
showRequestSuccessMessage: true,
|
|
32
32
|
showRequestErrorMessage: true,
|
|
@@ -64,7 +64,7 @@ app.use(centaline, {
|
|
|
64
64
|
//authObject: '{token:"aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjsOwjAQBe-ydVay1xvvOl3sJA2HiPIxElSIJBIIcXdAQEfPFK-YZt4Nlm2EChqtDafOYWqpRG6kxLoTxZhUTSRxHLUPH_DHfOmt5SDWt1gHScieHapNiol94q5pXYoNFJAvJ6isGHWmNMYVcBjWtyCr_iW2JZ93-fqPc8f18MwGIqFRCIO1GXmWGYd9npCZJ6N5JjYZ7g8AAAD__w.HgtNKtHWooj8c9Hy_vB8CfKq-qOeHMp0irnW0DfXtHo"}',
|
|
65
65
|
//oldToken: 'd92d4a3b-2274-42e8-96f0-100ffb579b6e',
|
|
66
66
|
//authObject: '{token:"1-a7289bb2-9f1e-4a04-9016-1e555bf39188"}',
|
|
67
|
-
authObject: '{EmpID:"
|
|
67
|
+
authObject: '{EmpID:"Token_00f32936-8123-45d4-b1b2-2206150ab06e",MachineCode:"e1f39b75-7069-4c4f-b5d5-c590da2d9aa2",SSO_Token:"SSOToken_00f32936-8123-45d4-b1b2-2206150ab06e",Platform:"WEB"}',
|
|
68
68
|
};
|
|
69
69
|
},
|
|
70
70
|
// 请求完成事件,可判断是否登录过期执行响应操作
|