cloud-web-corejs 1.0.54-dev.24 → 1.0.54-dev.26
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.
@@ -7,7 +7,7 @@
|
|
7
7
|
{{ dataId ? $t1('查看用户') : $t1('新增用户') }}
|
8
8
|
</div>
|
9
9
|
<div class="fr">
|
10
|
-
|
10
|
+
<temp-storage-button :option="tempStorageOption" v-if="!dataId"></temp-storage-button>
|
11
11
|
<base-input-export :option="exportOption" :parent-target="_self" v-if="dataId"/>
|
12
12
|
<el-button type="primary" plain class="button-sty" icon="el-icon-unlock" @click="unlock" v-if="user.locked"
|
13
13
|
v-hasPermi="'user:unlock'">{{ $t1('解锁') }}
|
@@ -297,7 +297,7 @@
|
|
297
297
|
|
298
298
|
<script>
|
299
299
|
import xeUtils from "xe-utils";
|
300
|
-
|
300
|
+
import tempStorageButton from "@base/components/tempStorage/index.vue";
|
301
301
|
|
302
302
|
|
303
303
|
export default {
|
@@ -307,8 +307,8 @@ export default {
|
|
307
307
|
companyDialog: () => import('../../../views/user/company_info/dialog.vue'),
|
308
308
|
saleOrgDialog: () => import('../../../views/user/sale_org/dialog.vue'),
|
309
309
|
positionDialog: () => import('../../../views/user/position/dialog.vue'),
|
310
|
-
countryDialog: () => import('../../../views/user/country/dialog.vue')
|
311
|
-
tempStorageButton
|
310
|
+
countryDialog: () => import('../../../views/user/country/dialog.vue'),
|
311
|
+
tempStorageButton
|
312
312
|
},
|
313
313
|
props: ['_dataId', 'userType', 'flag'],
|
314
314
|
data() {
|