yc-ui2 0.2.2-beta2 → 0.2.2-beta4
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/.env +0 -7
- package/babel.config.js +0 -5
- package/jsconfig.json +0 -19
- package/public/favicon.ico +0 -0
- package/public/index.html +0 -20
- package/src/App.vue +0 -70
- package/src/api/customerService.js +0 -56
- package/src/assets/ca/ca-bg.png +0 -0
- package/src/assets/ca/caBg.png +0 -0
- package/src/assets/customerService/admin.jpg +0 -0
- package/src/assets/customerService/chatTop.png +0 -0
- package/src/assets/customerService/ellipticalWenh.png +0 -0
- package/src/assets/customerService/enlarge.png +0 -0
- package/src/assets/customerService/personal.jpg +0 -0
- package/src/assets/customerService/personal1.jpg +0 -0
- package/src/assets/customerService/personal2.jpg +0 -0
- package/src/assets/slideVerify/1.jpg +0 -0
- package/src/assets/slideVerify/2.jpg +0 -0
- package/src/assets/slideVerify/3.jpg +0 -0
- package/src/assets/slideVerify/4.jpg +0 -0
- package/src/assets/slideVerify/5.jpg +0 -0
- package/src/assets/slideVerify/6.jpg +0 -0
- package/src/assets/slideVerify/7.jpg +0 -0
- package/src/assets/slideVerify/8.jpg +0 -0
- package/src/components/YcCA/index.vue +0 -536
- package/src/components/YcCustomerService/chat.vue +0 -337
- package/src/components/YcCustomerService/chatMixin.js +0 -128
- package/src/components/YcCustomerService/index.vue +0 -272
- package/src/components/YcQuestion/index.vue +0 -535
- package/src/components/YcSlideVerify/index.vue +0 -104
- package/src/main.js +0 -19
- package/src/packages/index.js +0 -29
- package/src/router/index.js +0 -20
- package/src/utils/auth.js +0 -6
- package/src/utils/mTokenPlugin/base64.js +0 -148
- package/src/utils/mTokenPlugin/base64_backups.js +0 -146
- package/src/utils/mTokenPlugin/hunca_mToken_core.js +0 -1447
- package/src/utils/mTokenPlugin/hunca_mToken_core2.js +0 -1455
- package/src/utils/mTokenPlugin/hunca_mToken_core_backups.js +0 -1425
- package/src/utils/mTokenPlugin/mToken.js +0 -3211
- package/src/utils/mTokenPlugin/mToken_backups.js +0 -3202
- package/src/utils/mTokenPluginBeijin/formateTime.js +0 -10
- package/src/utils/mTokenPluginBeijin/xtxasyn.js +0 -1156
- package/src/utils/request.js +0 -50
- package/src/views/question.vue +0 -32
- package/vue.config.js +0 -41
@@ -1,10 +0,0 @@
|
|
1
|
-
// 过滤时间
|
2
|
-
export function formateTime(dateStr) {
|
3
|
-
let year = dateStr.slice(0, 4);
|
4
|
-
let month = dateStr.slice(4, 6);
|
5
|
-
let date = dateStr.slice(6, 8);
|
6
|
-
let hours = dateStr.slice(8, 10);
|
7
|
-
let minute = dateStr.slice(10, 12);
|
8
|
-
let second = dateStr.slice(12);
|
9
|
-
return `${year}-${month}-${date} ${hours}:${minute}:${second}`;
|
10
|
-
}
|