apply-clients 3.3.77 → 3.3.81
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/build/dev-server-app.js +76 -76
- package/build/dev-server.js +127 -130
- package/package.json +1 -1
- package/src/App.vue +1 -1
- package/src/applyAndroid.js +34 -34
- package/src/components/android/AppServiceView.vue +683 -662
- package/src/components/android/AppSign.vue +142 -151
- package/src/components/android/AppTakePic.vue +143 -144
- package/src/components/android/Process/AppExplorationUser.vue +492 -492
- package/src/components/android/Process/AppServiceControl.vue +1348 -1341
- package/src/components/android/Process/Processes/AppSupplementalAgreement.vue +1 -0
- package/src/components/android/Process/Processes/selectApply.vue +1 -1
- package/src/components/android/Process/Processes/selectUserinfo.vue +1 -1
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +311 -311
- package/src/components/product/Function/InstallInfoSelect.vue +320 -320
- package/src/components/product/ServiceView.vue +23 -2
- package/src/components/product/Supervisory/SupervisoryList.vue +316 -316
- package/src/main.js +28 -27
- package/yarn.lock +9013 -0
- package/.project +0 -17
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div style="margin-bottom: 20px" class="form-group select-overspread">
|
|
3
3
|
<label class="control-label-justify control-label col-sm-3">选择项目</label>
|
|
4
|
-
<div class="col-sm-
|
|
4
|
+
<div class="col-sm-5" >
|
|
5
5
|
<button class="button_search button_spacing" type="button" style="width: max-content;position: absolute" @click="openSelect" :disabled="mark === 1">选择</button>
|
|
6
6
|
</div>
|
|
7
7
|
</div>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div style="margin-bottom: 20px" class="form-group select-overspread">
|
|
3
3
|
<label class="control-label-justify control-label col-sm-3">选择用户</label>
|
|
4
|
-
<div class="col-sm-
|
|
4
|
+
<div class="col-sm-5" >
|
|
5
5
|
<button class="button_search button_spacing" type="button" style="width: max-content;position: absolute" @click="openSelect" :disabled="mark === 1">选择</button>
|
|
6
6
|
</div>
|
|
7
7
|
</div>
|