askbot-dragon 0.9.18 → 0.9.20

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": "0.9.18",
3
+ "version": "0.9.20",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -11,10 +11,11 @@
11
11
  </div>
12
12
  <div v-if="device==='PC'&&content.multiple===true" class="clickBtn">
13
13
  <div class="preBtn" @click="preClick" style="display: flex">
14
- <i class="el-icon-arrow-left" style="font-size: 0.3rem;font-weight:800;align-self: center;margin: auto"></i>
15
- </div>
14
+ <i class="el-icon-arrow-left" style="font-size: 18px;font-weight:800;align-self: center;margin: auto"></i>
15
+ </div>
16
16
  <div class="nextBtn" @click="nextClick" style="display: flex">
17
- <i class="el-icon-arrow-right" style="font-size: 0.3rem;font-weight:800;align-self: center;margin: auto" ></i></div>
17
+ <i class="el-icon-arrow-right" style="font-size: 18px;font-weight:800;align-self: center;margin: auto" ></i>
18
+ </div>
18
19
  </div>
19
20
  <div class="bullet" :class="{isPhoneClass:isPhone===true,isPcClass:isPc===true,isAndroidClass:isAndroid===true,isIosClass:isIos===true}">
20
21
  <div
@@ -1,15 +1,13 @@
1
1
  <template>
2
2
  <div class="">
3
3
  <span v-if="messagePlateform == 'IM'">
4
- IM人工 <span class="text_color">{{payload.newSession.receiverDisplayInfo.name}}</span>将为您服务
4
+ IM人工&nbsp;&nbsp;<span class="text_color">{{payload.newSession.receiverDisplayInfo.name}}</span>&nbsp;&nbsp;将为您服务
5
5
  </span>
6
6
  <span v-if="messagePlateform == 'BOT'">
7
- <span class="text_color">{{payload.newSession.receiverDisplayInfo.name}}</span>将为您服务
7
+ <span class="text_color">{{payload.newSession.receiverDisplayInfo.name}}</span>&nbsp;&nbsp;将为您服务
8
8
  </span>
9
9
  <span v-if="messagePlateform == 'Transfer'">
10
- <span class="text_color">{{payload.oldSession.receiverDisplayInfo.name}}</span>
11
- 将会话转接给
12
- <span class="text_color">{{payload.newSession.receiverDisplayInfo.name}}</span>
10
+ <span class="text_color">{{payload.oldSession.receiverDisplayInfo.name}}</span>&nbsp;&nbsp;将会话转接给&nbsp;&nbsp;<span class="text_color">{{payload.newSession.receiverDisplayInfo.name}}</span>
13
11
  </span>
14
12
  </div>
15
13
  </template>