123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <template>
- <el-dialog
- v-loading="loading"
- :title="'编辑活动信息'"
- :center="true"
- align="left"
- top="12vh"
- width="600px"
- :size="'mini'"
- :close-on-click-modal="false"
- :visible.sync="showModelThis"
- element-loading-text="拼命加载中"
- element-loading-spinner="el-icon-loading"
- element-loading-background="rgba(0, 0, 0, 0.8)"
- @close="showModelThis = false"
- >
- <el-card style="margin: -20px 0 0 0">
- <el-row :gutter="10">
- <el-col :span="24">
- <el-form
- ref="ruleForm"
- :model="ruleForm"
- status-icon
- :rules="rulesThis"
- label-width="130px"
- class="demo-ruleForm"
- >
- <el-form-item label="商品编号" prop="skuCode" label-width="80px">
- <el-input
- v-model="ruleForm.skuCode"
- placeholder="商品编号"
- maxlength="100"
- disabled
- />
- </el-form-item>
- <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>
- </div>
- <el-form-item label="非活动价" prop="sale_price" label-width="80px">
- <el-input
- v-model="ruleForm.sale_price"
- disabled
- placeholder="非活动价"
- maxlength="100"
- >
- <template slot="append">元</template></el-input
- >
- </el-form-item>
- <el-form-item label="是否使用结算单价" prop="is_activity">
- <el-select
- v-model="ruleForm.is_activity"
- style="width:100%"
- placeholder="是否使用活动单价"
- maxlength="100"
- >
- <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"
- />
- </el-form-item>
- <el-form-item label="活动价" prop="activity_price" label-width="80px">
- <digital-input
- :values="ruleForm.activity_price"
- :placeholder="'活动价'"
- :min="0"
- :max="100000000000"
- :position="'right'"
- :precision="2"
- :size="'large'"
- :controls="false"
- :append="'元'"
- @reschange="activity_price_change"
- />
- </el-form-item>
- </el-form>
- </el-col>
- <el-col :span="24" style="text-align: right">
- <el-button v-if="id !== '007'" type="primary" @click="submitForm"
- >保 存
- </el-button>
- <el-button @click="showModelThis = false">{{
- id == "007" ? "关 闭" : "取 消"
- }}</el-button>
- </el-col>
- </el-row>
- </el-card>
- </el-dialog>
- </template>
- <script>
- export default {
- name: "editMinorderForm",
- props: ["showModel", "sitem"],
- data() {
- const validate_activity_price = (rule, value, callback) => {
- if (value === "") {
- callback(new Error("活动价价不能为空!"));
- } else {
- callback();
- }
- };
- return {
- loading: false,
- showModelThis: this.showModel,
- ruleForm: {
- skuCode: "",
- good_name: "",
- activity_stock: "",
- moq_num: "",
- cost_price: "",
- sale_price: "",
- activity_price: "",
- is_activity:'1',
- settle_price:''
- },
- rulesThis: this.rules,
- rules: {
- activity_price: [
- {
- required: true,
- validator: validate_activity_price,
- trigger: "blur",
- },
- ],
- },
- };
- },
- watch: {
- showModel: function (val) {
- this.showModelThis = val;
- if (val) {
- this.initForm();
- }
- },
- showModelThis(val) {
- if (!val) {
- this.$emit("cancel");
- }
- },
- },
- methods: {
- budget_total_change(e){
- this.ruleForm.settle_price = e + ''
- },
- async initForm() {
- this.loading = true;
- this.rulesThis = this.rules;
- await this.resetForm();
- this.loading = false;
- },
- async resetForm() {
- // 重置
- await this.$nextTick(() => {
- if (this.$refs.ruleForm) {
- this.$refs.ruleForm.resetFields();
- this.$refs.ruleForm.clearValidate();
- this.ruleForm = this.sitem
- ? JSON.parse(JSON.stringify(this.sitem))
- : {
- skuCode: "",
- good_name: "",
- activity_stock: "",
- moq_num: "",
- cost_price: "",
- sale_price: "",
- activity_price: "",
- };
- }
- });
- },
- activity_price_change(e) {
- this.ruleForm.activity_price = e + "";
- this.$refs.ruleForm.validateField("activity_price");
- },
- async submitForm() {
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- if (!this.loading) {
- this.loading = true;
- let model = JSON.parse(JSON.stringify(this.ruleForm));
- this.showModelThis = false;
- // 刷新
- this.$emit("refresh", {
- ...model,
- settle_price:this.ruleForm.is_activity === '0' ? '0' : this.ruleForm.settle_price
- });
- }
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .sort {
- }
- </style>
|