cloud-web-corejs 1.0.59 → 1.0.61
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/excelImport/index.js +13 -13
- package/src/components/excelImport/index.vue +9 -6
- package/src/components/excelImport/mixins.js +1 -1
- package/src/components/fileLibrary/fileObjNotifyEdit.vue +4 -4
- package/src/components/onlineTalk/index.vue +327 -5
- package/src/components/onlineTalk/mixins.js +1 -1
- package/src/components/table/index.js +1 -1
- package/src/components/tempStorage/tempStorageDialog.vue +2 -2
- package/src/utils/vab.js +1 -1
- package/src/views/user/company_info/edit.vue +9 -1
@@ -57,7 +57,7 @@
|
|
57
57
|
</div>
|
58
58
|
</label>
|
59
59
|
<div class="multipleChoice">
|
60
|
-
<el-tooltip :enterable="false" effect="dark" content="全部删除" placement="top"><a
|
60
|
+
<el-tooltip :enterable="false" effect="dark" :content="$t1('全部删除')" placement="top"><a
|
61
61
|
class="allDel icon-quanbushanchu" @click="clearChecked()"></a></el-tooltip>
|
62
62
|
<div class="list">
|
63
63
|
<div class="item" v-for="(checkRow, index) in checkRows">
|
@@ -67,7 +67,7 @@
|
|
67
67
|
</div>
|
68
68
|
</div>
|
69
69
|
<span slot="footer" class="dialog-footer">
|
70
|
-
<span class="fl tips" v-if="!selectMulti"
|
70
|
+
<span class="fl tips" v-if="!selectMulti">{{ $t1('注:双击确认选择(单选)') }}</span>
|
71
71
|
<el-button type="primary" plain class="button-sty" @click="dialogClose">
|
72
72
|
<i class="el-icon-close el-icon"></i>
|
73
73
|
取 消
|