123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- <template>
- <el-dialog
- v-loading="loading"
- :title="'申请议价'"
- :center="true"
- align="left"
- top="10vh"
- width="900px"
- :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-top: -20px">
- <el-form
- ref="ruleForm"
- :model="ruleForm"
- status-icon
- :size="'mini'"
- :rules="rulesThis"
- label-width="75px"
- class="demo-ruleForm"
- >
- <el-row>
- <el-col :span="3">
- <el-form-item label="图片" style="margin: 0" label-width="44px">
- <img
- class="hover"
- v-viewer
- :src="show_sitem.good_img"
- alt=""
- v-if="show_sitem && show_sitem.good_img"
- style="width: 35px; height: 35px"
- />
- </el-form-item>
- </el-col>
- <el-col :span="4">
- <el-form-item label="单位" label-width="50px">
- <el-input v-if="show_sitem" maxlength="10" v-model="show_sitem.unit" disabled />
- </el-form-item>
- </el-col>
- <el-col :span="17">
- <el-form-item label="商品名称">
- <el-input
- v-if="show_sitem"
- v-model="show_sitem.good_name"
- maxlength="100"
- disabled
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item
- label="议价原因"
- prop="result_info_id"
- label-width="88px"
- >
- <abnormal-cause
- :value="ruleForm.result_info_id"
- :placeholder="'议价原因'"
- :type="'7'"
- :disabled="false"
- :size="'mini'"
- @searchChange="select_change"
- />
- </el-form-item>
- </el-col>
- <el-col :span="7">
- <el-form-item label="当前售价">
- <el-input
- v-if="show_sitem"
- v-model="show_sitem.sale_price"
- maxlength="20"
- disabled
- />
- </el-form-item>
- </el-col>
- <el-col :span="9">
- <el-form-item
- label="期望售价"
- prop="bargain_price"
- label-width="88px"
- >
- <digital-input
- :values="ruleForm.bargain_price"
- :name="'ruleForm.bargain_price'"
- :placeholder="'期望售价'"
- :min="0"
- :disabled="sitem.is_gold_price == 0 ? false : true"
- :max="100000000000"
- :position="'right'"
- :precision="2"
- :size="'mini'"
- :controls="false"
- :append="'元'"
- @reschange="number_change($event, 'bargain_price')"
- />
- </el-form-item>
- </el-col>
- <!-- 需修改字段 -->
- <el-col :span="12">
- <el-form-item label="当前工艺费" label-width="108px">
- <el-input
- v-if="show_sitem"
- v-model="show_sitem.sale_price"
- maxlength="20"
- disabled
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item
- label="期望工艺费"
- prop="bargain_price"
- label-width="108px"
- >
- <digital-input
- :values="ruleForm.bargain_price"
- :name="'ruleForm.bargain_price'"
- :placeholder="'期望工艺费'"
- :min="0"
- :disabled="sitem.is_gold_price == 1 ? false : true"
- :max="100000000000"
- :position="'right'"
- :precision="2"
- :size="'mini'"
- :controls="false"
- :append="'元'"
- @reschange="number_change($event, 'bargain_price')"
- />
- </el-form-item>
- </el-col>
- <el-col :span="18">
- <el-form-item
- label="议价备注:"
- prop="bargain_remark"
- label-width="88px"
- >
- <el-input
- type="textarea"
- :rows="2"
- maxlength="250"
- show-word-limit
- placeholder="议价备注"
- v-model="ruleForm.bargain_remark"
- >
- </el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6" style="text-align: right">
- <el-button @click="showModelThis = false" :size="'mini'">{{
- isDetail ? "关 闭" : "取 消"
- }}</el-button>
- <el-button
- v-if="!isDetail"
- type="primary"
- :size="'mini'"
- @click="submitForm"
- >保 存
- </el-button>
- </el-col>
- </el-row>
- </el-form>
- </el-card>
- </el-dialog>
- </template>
- <script>
- import asyncRequest from "@/apis/service/sellOut/bargainList";
- import resToken from "@/mixins/resToken";
- export default {
- name: "Account",
- props: ["showModel", "sitem"],
- mixins: [resToken],
- data() {
- const validate_num = (rule, value, callback) => {
- if (value === "") {
- callback(new Error("不能为空!"));
- } else if (
- value === "0" ||
- value === "0." ||
- value === "0.0" ||
- value === "0.00"
- ) {
- callback(new Error("期望售价不能为零!"));
- } else {
- callback();
- }
- };
- return {
- roleList: [],
- loading: false,
- title: "添加账号",
- organizeList: [],
- showModelThis: this.showModel,
- ruleForm: {
- result_info_id: "",
- bargain_price: "0",
- result_info_id_name: "",
- bargain_remark: "",
- },
- show_sitem: null,
- rulesThis: this.rules,
- rules: {
- result_info_id: [
- {
- required: true,
- message: "请选择议价原因!",
- trigger: "change",
- },
- ],
- bargain_price: [
- {
- required: true,
- validator: validate_num,
- trigger: "blur",
- },
- ],
- bargain_remark: [
- {
- required: true,
- message: "议价备注不能为空!",
- trigger: "blur",
- },
- ],
- },
- };
- },
- watch: {
- showModel: function (val) {
- this.showModelThis = val;
- if (val) {
- this.initForm();
- }
- },
- showModelThis(val) {
- if (!val) {
- this.$emit("cancel");
- }
- },
- },
- mounted() {
- console.log("11111111111111111",this.sitem.is_gold_price)
- },
- methods: {
- itemidChange(e) {
- this.ruleForm.itemid = e;
- this.$refs.ruleForm.validateField("itemid");
- },
- async initForm() {
- this.loading = true;
- this.rulesThis = this.rules;
- await this.resetForm();
- this.loading = false;
- },
- number_change(e, key) {
- this.ruleForm[key] = e + "" || "0";
- this.$refs.ruleForm.validateField(key);
- },
- async resetForm() {
- // 重置
- await this.$nextTick(() => {
- this.show_sitem = JSON.parse(JSON.stringify(this.sitem));
- const { sale_price, specinfo } = this.sitem;
- if (specinfo && specinfo.length > 0) {
- specinfo.forEach((a, ai) => {
- this.show_sitem.good_name += `${ai === 0 ? "_" : "-"}${
- a.spec_name
- }[${a.spec_value_name}]`;
- });
- }
- if (this.$refs.ruleForm) {
- this.$refs.ruleForm.resetFields();
- this.$refs.ruleForm.clearValidate();
- this.ruleForm = {
- bargain_price: sale_price || "0",
- result_info_id: "",
- bargain_remark: "",
- result_info_id_name: "",
- };
- }
- });
- },
- select_change(e) {
- const { code, label } = e;
- this.ruleForm.result_info_id = code || "";
- this.ruleForm.result_info_id_name = label || "";
- this.$refs.ruleForm.validateField("result_info_id");
- },
- async submitForm() {
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- this.loading = true;
- const { bargain_price, result_info_id, bargain_remark } = JSON.parse(
- JSON.stringify(this.ruleForm)
- );
- const { bidNo, sale_price } = this.sitem;
- if (sale_price * 100 === bargain_price * 100) {
- this.$message.warning("期望售价不能等于当前售价!");
- this.loading = false;
- return;
- }
- const model = {
- bidNo: bidNo,
- bargain_price: bargain_price, // 账号
- result_info_id,
- bargain_remark,
- };
- let res = await asyncRequest.bargain_add(model);
- this.loading = false;
- if (res && res.code === 0) {
- this.$notify.success({
- title: "议价流程创建成功!",
- message: "",
- });
- this.showModelThis = false;
- // 刷新
- this.$emit("refresh");
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .account {
- }
- </style>
|