askbot-dragon 1.5.94 → 1.5.95
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "askbot-dragon",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.95",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"serve": "vue-cli-service serve",
|
|
6
6
|
"build": "vue-cli-service build",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"babel-eslint": "^10.1.0",
|
|
29
29
|
"element-ui": "^2.15.10",
|
|
30
30
|
"eslint": "^6.7.2",
|
|
31
|
+
"vue-markdown": "^2.2.4",
|
|
31
32
|
"eslint-plugin-vue": "^6.2.2",
|
|
32
33
|
"less": "^3.12.2",
|
|
33
34
|
"less-loader": "^7.0.2",
|
|
@@ -240,7 +240,7 @@ export default {
|
|
|
240
240
|
"content": {
|
|
241
241
|
"images": [{ url: 'https://static.guoranbot.com/images/knowledge/e0f6898c6b0d47fa98e8f71ceab1bde8/安全标志--禁止标志.png' }],
|
|
242
242
|
"actionType": "answer_doc_knowledge",
|
|
243
|
-
"text": "
|
|
243
|
+
"text": "**票据管理规定**\n\n### 车票报销\n- **注意事项**:\n - 车票需注意日期与行程相符。\n - 如所附车票没有标注起止地点的,需自行注明。\n - 非同一次乘车出现票号相连的,不予报销。\n\n### 不予报销的票据\n- **国内白条及非财政部门监制的收据**:一律不予报销。\n- **预存性质的票据**:如预存话费、预存公交车费、购物卡、油卡等,原则上不予报销。\n - 确有客观需求并经部门负责人、财务负责人事先同意的,预存时需获取预付款增值税普通发票。\n - 后续每次实际消费时需取得注明预付卡卡号的消费小票,并在消费完预付卡内余额后及时进行一次性报销。\n - 无法取得消费小票的,请及时与财务同事沟通与确认解决方案。\n\n### 发票要求\n- **字迹不清或压线错格**:应重新开票。\n- **无法取得发票的费用**:公司不予报销,不允许用其他发票替代报销。\n\n### 报销单整理\n- 报销单影像审批完成进入核票流程后,报销人应将该张报销单的票据按照时间顺序分类整理,平铺、整齐的粘贴在A4纸上,票据与票据之间不能重叠遮挡,与报销单一同交到财务部。\n- 驻外人员邮寄回公司本部门的内勤人员,由部门内勤人员代为转交至财务部。\n- 财务收到单据后在汇联易系统中进行核票,纸质票据影像必须与实物一致,符合标准的单据完成审批流程后,进入待付款流程。\n\n### 出差报销\n- 员工出差必须先填写出差申请单,经审批后才能出行。\n- 若有紧急出差的情况,应填写出差申请单后,联系上级领导人进行加急审批。\n- 未填出差申请单,自行购票出行,公司有权不予报销。",
|
|
244
244
|
"list": [
|
|
245
245
|
{
|
|
246
246
|
"owner": null,
|
|
@@ -319,8 +319,9 @@ export default {
|
|
|
319
319
|
"previewImage": "https://askbot-pdf-all.oss-cn-zhangjiakou.aliyuncs.com/31623ccfe9dd4957bbd59c5823878bbe/2023/12/27/03/39/08/658b9c477cf604285f7cb81d/pdf-image-1913302477976388839.png"
|
|
320
320
|
}
|
|
321
321
|
],
|
|
322
|
-
"renderType":
|
|
323
|
-
"type": 1
|
|
322
|
+
"renderType": 2,
|
|
323
|
+
"type": 1,
|
|
324
|
+
"isHistory": true
|
|
324
325
|
},
|
|
325
326
|
"type": "answer_doc_knowledge"
|
|
326
327
|
},
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div @click="lookImage">
|
|
3
|
-
<vue-markdown
|
|
4
|
-
class="mark_down"
|
|
5
|
-
:source="typedContent"
|
|
6
|
-
:ref="'markdown' + msgId"
|
|
7
|
-
>
|
|
3
|
+
<vue-markdown class="mark_down" :source="typedContent" :ref="'markdown' + msgId">
|
|
8
4
|
</vue-markdown>
|
|
9
5
|
<div v-if="showPreview">
|
|
10
6
|
<img-view :url-list="imgList" @closeViewer="closeViewer"></img-view>
|
|
@@ -57,11 +53,12 @@ export default {
|
|
|
57
53
|
// showCursor: false
|
|
58
54
|
// })
|
|
59
55
|
// }
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
56
|
+
this.typedContent = this.chainValues;
|
|
57
|
+
// if (this.isHistory) {
|
|
58
|
+
// this.typedContent = this.chainValues;
|
|
59
|
+
// } else {
|
|
60
|
+
// this.startTypingEffect();
|
|
61
|
+
// }
|
|
65
62
|
});
|
|
66
63
|
},
|
|
67
64
|
methods: {
|
|
@@ -105,24 +102,63 @@ export default {
|
|
|
105
102
|
|
|
106
103
|
<style scoped lang="less">
|
|
107
104
|
.mark_down {
|
|
108
|
-
line-height:
|
|
105
|
+
line-height: 24px;
|
|
106
|
+
|
|
109
107
|
/deep/p {
|
|
110
108
|
margin-bottom: 14px;
|
|
109
|
+
font-size: 16px;
|
|
111
110
|
}
|
|
111
|
+
|
|
112
112
|
/deep/p:only-child {
|
|
113
113
|
margin: 0 !important;
|
|
114
114
|
}
|
|
115
|
+
|
|
115
116
|
/deep/p:last-child {
|
|
116
117
|
margin-bottom: 0 !important;
|
|
117
118
|
}
|
|
118
|
-
|
|
119
|
-
ul {
|
|
119
|
+
|
|
120
|
+
/deep/ul {
|
|
121
|
+
margin-bottom: 16px ;
|
|
122
|
+
li {
|
|
123
|
+
margin: 7px 0 !important;
|
|
124
|
+
font-size: 16px;
|
|
125
|
+
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/deep/ ol {
|
|
120
130
|
li {
|
|
121
|
-
margin:
|
|
131
|
+
margin: 7px 0 !important;
|
|
132
|
+
font-size: 16px;
|
|
122
133
|
}
|
|
123
134
|
}
|
|
135
|
+
|
|
124
136
|
/deep/img {
|
|
125
137
|
max-width: 400px;
|
|
126
138
|
}
|
|
139
|
+
|
|
140
|
+
/deep/h3,
|
|
141
|
+
/deep/h2,
|
|
142
|
+
/deep/h1,
|
|
143
|
+
/deep/h4,
|
|
144
|
+
/deep/h5,
|
|
145
|
+
/deep/h6 {
|
|
146
|
+
color: #000000;
|
|
147
|
+
font-weight: 500;
|
|
148
|
+
line-height: 26px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/deep/h3 {
|
|
152
|
+
font-size: 20px;
|
|
153
|
+
}
|
|
154
|
+
/deep/h2 {
|
|
155
|
+
font-size: 22px;
|
|
156
|
+
}
|
|
157
|
+
/deep/h1 {
|
|
158
|
+
font-size: 24px;
|
|
159
|
+
}
|
|
160
|
+
/deep/h3 {
|
|
161
|
+
font-size: 20px;
|
|
162
|
+
}
|
|
127
163
|
}
|
|
128
164
|
</style>
|