|
@@ -6,7 +6,7 @@
|
|
|
class="box-header with-border"
|
|
|
style="background-color:#d3dce6;margin-bottom:20px;"
|
|
|
>
|
|
|
- <h3 class="box-title">项目统计</h3>
|
|
|
+ <h2 class="box-title">项目统计</h2>
|
|
|
<div class="box-tools pull-right">
|
|
|
<button type="button" class="btn btn-box-tool" data-widget="collapse">
|
|
|
<i class="fa fa-minus"></i>
|
|
@@ -161,7 +161,7 @@
|
|
|
ref="backupSettingForm"
|
|
|
:rules="rules"
|
|
|
label-position="right"
|
|
|
- label-width="80px"
|
|
|
+ label-width="90px"
|
|
|
>
|
|
|
<el-tabs v-model="eachPkgTab">
|
|
|
<el-tab-pane name="first">
|
|
@@ -173,6 +173,7 @@
|
|
|
<el-input
|
|
|
v-model="backupSettingForm.eachPkgPercent"
|
|
|
:disabled="!backupSettingForm.needEachPkg"
|
|
|
+ class="w300"
|
|
|
><template slot="append"
|
|
|
>%</template
|
|
|
></el-input
|
|
@@ -182,6 +183,7 @@
|
|
|
<el-input
|
|
|
v-model="backupSettingForm.eachPkgMax"
|
|
|
:disabled="!backupSettingForm.needEachPkg"
|
|
|
+ class="w300"
|
|
|
><template slot="append"
|
|
|
>%</template
|
|
|
></el-input
|
|
@@ -191,6 +193,7 @@
|
|
|
<el-input
|
|
|
v-model="backupSettingForm.eachPkgMin"
|
|
|
:disabled="!backupSettingForm.needEachPkg"
|
|
|
+ class="w300"
|
|
|
><template slot="append"
|
|
|
>%</template
|
|
|
></el-input
|
|
@@ -210,6 +213,7 @@
|
|
|
v-model="backupSettingForm.groupType"
|
|
|
:disabled="!backupSettingForm.needAlonePkg"
|
|
|
placeholder="请选择"
|
|
|
+ class="w300"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in groupTypeList"
|
|
@@ -223,6 +227,7 @@
|
|
|
<el-input
|
|
|
v-model="backupSettingForm.alonePkgPercent"
|
|
|
:disabled="!backupSettingForm.needAlonePkg"
|
|
|
+ class="w300"
|
|
|
><template slot="append"
|
|
|
>%</template
|
|
|
>
|
|
@@ -232,6 +237,7 @@
|
|
|
<el-input
|
|
|
v-model="backupSettingForm.alonePkgMax"
|
|
|
:disabled="!backupSettingForm.needAlonePkg"
|
|
|
+ class="w300"
|
|
|
><template slot="append"
|
|
|
>%</template
|
|
|
></el-input
|
|
@@ -241,6 +247,7 @@
|
|
|
<el-input
|
|
|
v-model="backupSettingForm.alonePkgMin"
|
|
|
:disabled="!backupSettingForm.needAlonePkg"
|
|
|
+ class="w300"
|
|
|
><template slot="append"
|
|
|
>%</template
|
|
|
></el-input
|
|
@@ -260,7 +267,7 @@
|
|
|
<!-- 其它事项弹窗 -->
|
|
|
<el-dialog
|
|
|
title="其它事项"
|
|
|
- width="750px"
|
|
|
+ width="500px"
|
|
|
:visible.sync="otherSettingDialog"
|
|
|
@close="closeOtherSettingDialog"
|
|
|
>
|
|
@@ -269,13 +276,14 @@
|
|
|
ref="otherSettingForm"
|
|
|
:rules="rules"
|
|
|
label-position="right"
|
|
|
- label-width="110px"
|
|
|
+ label-width="90px"
|
|
|
>
|
|
|
<el-form-item label="事项内容" prop="remark">
|
|
|
<el-input
|
|
|
type="textarea"
|
|
|
:rows="8"
|
|
|
v-model="otherSettingForm.remark"
|
|
|
+ class="w300"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
@@ -806,4 +814,7 @@ export default {
|
|
|
.pull-left {
|
|
|
float: left;
|
|
|
}
|
|
|
+.w300 {
|
|
|
+ width: 300px;
|
|
|
+}
|
|
|
</style>
|