|
@@ -33,25 +33,25 @@
|
|
|
disabled
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <div style="display:flex">
|
|
|
+ <div style="display: flex">
|
|
|
<el-form-item label="起订量" prop="moq_num" label-width="80px">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.moq_num"
|
|
|
- disabled
|
|
|
- placeholder="起订量"
|
|
|
- maxlength="100"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="成本单价" prop="cost_price" label-width="80px">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.cost_price"
|
|
|
- disabled
|
|
|
- placeholder="成本单价"
|
|
|
- maxlength="100"
|
|
|
- >
|
|
|
- <template slot="append">元</template></el-input
|
|
|
- >
|
|
|
- </el-form-item>
|
|
|
+ <el-input
|
|
|
+ v-model="ruleForm.moq_num"
|
|
|
+ disabled
|
|
|
+ placeholder="起订量"
|
|
|
+ maxlength="100"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="成本单价" prop="cost_price" label-width="80px">
|
|
|
+ <el-input
|
|
|
+ v-model="ruleForm.cost_price"
|
|
|
+ disabled
|
|
|
+ placeholder="成本单价"
|
|
|
+ maxlength="100"
|
|
|
+ >
|
|
|
+ <template slot="append">元</template></el-input
|
|
|
+ >
|
|
|
+ </el-form-item>
|
|
|
</div>
|
|
|
<el-form-item label="非活动价" prop="sale_price" label-width="80px">
|
|
|
<el-input
|
|
@@ -66,29 +66,29 @@
|
|
|
<el-form-item label="是否使用结算单价" prop="is_activity">
|
|
|
<el-select
|
|
|
v-model="ruleForm.is_activity"
|
|
|
- style="width:100%"
|
|
|
- placeholder="是否使用活动单价"
|
|
|
+ style="width: 100%"
|
|
|
+ placeholder="是否使用结算单价"
|
|
|
maxlength="100"
|
|
|
>
|
|
|
- <el-option value="0" label="否" />
|
|
|
- <el-option value="1" label="是" />
|
|
|
- </el-select>
|
|
|
+ <el-option value="0" label="否" />
|
|
|
+ <el-option value="1" label="是" />
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="结算单价" prop="settle_price" label-width="80px">
|
|
|
<digital-input
|
|
|
- :disabled="ruleForm.is_activity === '0'"
|
|
|
- :values="ruleForm.is_activity === '0' ? '0' : ruleForm.settle_price"
|
|
|
- :placeholder="'结算单价'"
|
|
|
- :min="0"
|
|
|
- :max="100000000000"
|
|
|
- :position="'right'"
|
|
|
- :precision="2"
|
|
|
- :size="'large'"
|
|
|
- :controls="false"
|
|
|
- :append="'元'"
|
|
|
- @reschange="budget_total_change"
|
|
|
- />
|
|
|
+ :disabled="ruleForm.is_activity === '0'"
|
|
|
+ :values="ruleForm.is_activity === '0' ? '0' : ruleForm.settle_price"
|
|
|
+ :placeholder="'结算单价'"
|
|
|
+ :min="0"
|
|
|
+ :max="100000000000"
|
|
|
+ :position="'right'"
|
|
|
+ :precision="2"
|
|
|
+ :size="'large'"
|
|
|
+ :controls="false"
|
|
|
+ :append="'元'"
|
|
|
+ @reschange="budget_total_change"
|
|
|
+ />
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="活动价" prop="activity_price" label-width="80px">
|
|
@@ -142,8 +142,8 @@ export default {
|
|
|
cost_price: "",
|
|
|
sale_price: "",
|
|
|
activity_price: "",
|
|
|
- is_activity:'1',
|
|
|
- settle_price:''
|
|
|
+ is_activity: "1",
|
|
|
+ settle_price: "",
|
|
|
},
|
|
|
rulesThis: this.rules,
|
|
|
rules: {
|
|
@@ -171,8 +171,8 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
- budget_total_change(e){
|
|
|
- this.ruleForm.settle_price = e + ''
|
|
|
+ budget_total_change(e) {
|
|
|
+ this.ruleForm.settle_price = e + "";
|
|
|
},
|
|
|
async initForm() {
|
|
|
this.loading = true;
|
|
@@ -215,7 +215,8 @@ export default {
|
|
|
// 刷新
|
|
|
this.$emit("refresh", {
|
|
|
...model,
|
|
|
- settle_price:this.ruleForm.is_activity === '0' ? '0' : this.ruleForm.settle_price
|
|
|
+ settle_price:
|
|
|
+ this.ruleForm.is_activity === "0" ? "0" : this.ruleForm.settle_price,
|
|
|
});
|
|
|
}
|
|
|
} else {
|
|
@@ -228,7 +229,7 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
- <style lang="scss" scoped>
|
|
|
+<style lang="scss" scoped>
|
|
|
.sort {
|
|
|
}
|
|
|
</style>
|