cloud-web-corejs 1.1.0-dev.16 → 1.1.0-dev.18

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.
@@ -91,7 +91,9 @@
91
91
  </div>
92
92
  <div v-show="!importLoading" class="import-box" style="margin-bottom: 30px;">
93
93
  <div class="tips">
94
- {{ $t2('导入中,请勿关闭当前窗口', 'components.excelImport.tip2') }}
94
+ {{ backendValidating
95
+ ? $t1('后台校验中,请勿关闭当前窗口')
96
+ : $t2('导入中,请勿关闭当前窗口', 'components.excelImport.tip2') }}
95
97
  <!-- <span class="fr">耗时:<em class="time-txt">0 时 0 分 0 秒 </em></span> -->
96
98
  </div>
97
99
  <el-progress :text-inside="true" :stroke-width="26" :percentage="percentageNum"
@@ -112,15 +114,18 @@
112
114
  </div>
113
115
  <div slot="footer" class="dialog-footer" center="true">
114
116
  <div class="fl import-count" v-show="!importLoading">
115
- <span class="f-red doneNum">0</span>
117
+ <span class="f-red doneNum">{{ doneNum }}</span>
116
118
  /
117
- <span class="dataSize">0</span>
119
+ <span class="dataSize">{{ dataSize }}</span>
118
120
  </div>
119
- <el-button type="primary" plain class="button-sty" @click="dialogClose2" v-if="!param.importOption.hideCancelButton">
121
+ <el-button type="primary" plain class="button-sty" @click="dialogClose2"
122
+ :disabled="backendValidating"
123
+ v-if="!param.importOption.hideCancelButton">
120
124
  <i class="el-icon-close el-icon"></i>
121
125
  {{ $t2('取 消', 'system.button.cancel2') }}
122
126
  </el-button>
123
- <el-button type="primary" class="button-sty" @click="dialogPrimary2">
127
+ <el-button type="primary" class="button-sty" @click="dialogPrimary2"
128
+ :disabled="backendValidating">
124
129
  <i class="el-icon-check el-icon"></i>
125
130
  {{ $t2('确 定', 'system.button.confirm2') }}
126
131
  </el-button>