system-clients 3.2.105-yzxt → 3.2.107-yzxt
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/package.json +1 -1
- package/src/components/Main.vue +14 -14
- package/src/components/server/Login.vue +0 -14
package/package.json
CHANGED
package/src/components/Main.vue
CHANGED
|
@@ -202,19 +202,19 @@ import vue from 'vue'
|
|
|
202
202
|
import co from 'co'
|
|
203
203
|
import {HttpResetClass} from "vue-client";
|
|
204
204
|
|
|
205
|
-
let getwartermakr = async function (self) {
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
}
|
|
205
|
+
// let getwartermakr = async function (self) {
|
|
206
|
+
// let param = {
|
|
207
|
+
// tablename: 't_singlevalue',
|
|
208
|
+
// condition: " 1=1 and name=\'水印内容\'"
|
|
209
|
+
// };
|
|
210
|
+
// let result = await self.$resetpost('rs/sql/saleSingleTable', {data: param}, {resolveMsg: null, rejectMsg: null});
|
|
211
|
+
// if (result && result.data.length > 0) {
|
|
212
|
+
// self.showwatermakeflag = true;
|
|
213
|
+
// createWaterMark(`${result.data[0].value}${self.$login.f.ename}`);
|
|
214
|
+
// } else {
|
|
215
|
+
// self.showwatermakeflag = false;
|
|
216
|
+
// }
|
|
217
|
+
// }
|
|
218
218
|
|
|
219
219
|
let createWaterMark = function (userName) {
|
|
220
220
|
let style;
|
|
@@ -296,7 +296,7 @@ let createWaterMark = function (userName) {
|
|
|
296
296
|
}
|
|
297
297
|
},
|
|
298
298
|
ready() {
|
|
299
|
-
getwartermakr(this);
|
|
299
|
+
// getwartermakr(this);
|
|
300
300
|
let component = this.$login.getUrlCompileParames('component')
|
|
301
301
|
if (component) {
|
|
302
302
|
this.isManger = true
|
|
@@ -265,20 +265,6 @@ export default {
|
|
|
265
265
|
this.titleShow = this.$appdata.getSingleValue('关于我们')
|
|
266
266
|
window.versionTime = window.versionTime ? window.versionTime : new Date().getTime()
|
|
267
267
|
this.vTime = this.format(new Date(window.versionTime));
|
|
268
|
-
try{
|
|
269
|
-
let http = new HttpResetClass()
|
|
270
|
-
let res = await http.load('POST', 'rs/sql/singleTable',
|
|
271
|
-
{data:{
|
|
272
|
-
tablename: 't_changedeclare',
|
|
273
|
-
condition: ` f_type ='变更通知' `
|
|
274
|
-
}
|
|
275
|
-
}, {resolveMsg: null, rejectMsg: null})
|
|
276
|
-
if(res.data.length>0){
|
|
277
|
-
console.log("---------------获取通知",res.data[0].f_change_message)
|
|
278
|
-
this.notice=res.data[0].f_change_message
|
|
279
|
-
}
|
|
280
|
-
}catch(e){}
|
|
281
|
-
|
|
282
268
|
this.loginother();
|
|
283
269
|
$('#login-button').click(function (event) {
|
|
284
270
|
event.preventDefault()
|