123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <template>
- <el-form
- v-loading="loading"
- ref="ruleForm"
- :model="ruleForm"
- status-icon
- :rules="rulesThis"
- :label-width="labelWidth || '110px'"
- class="demo-ruleForm-goodsOnline"
- :size="'mini'"
- >
- <el-row>
- <el-col :span="12"
- ><el-form-item label="审核状态" prop="state">
- <el-radio-group
- v-model="ruleForm.state"
- placeholder="请选择审核状态"
- style="width: 100%"
- :size="size || 'medium'"
- @change="stateChange"
- >
- <el-radio
- v-for="item in stateList"
- :key="item.value"
- :label="item.value"
- >{{ item.label }}</el-radio
- >
- </el-radio-group>
- </el-form-item>
- </el-col>
- <el-col :span="12" class="tr">
- <el-form-item
- label="审核备注"
- v-if="ruleForm.state === '0'"
- prop="remark"
- >
- <el-input
- type="textarea"
- placeholder="审核备注"
- v-model="ruleForm.remark"
- :disabled="disabled"
- maxlength="250"
- show-word-limit
- :autosize="{ minRows: 3, maxRows: 3 }"
- />
- </el-form-item>
- <el-form-item class="fr" v-if="ruleForm.state === '1'" >
- <el-button
- :size="'mini'"
- type="primary"
- @click="submitForm('6')"
- >保 存
- </el-button>
- </el-form-item>
- <el-form-item class="fr" v-if="ruleForm.state === '0'" >
- <el-button
- :size="'mini'"
- type="primary"
- @click="submitForm('')"
- >驳回重新审核
- </el-button>
- </el-form-item>
- <!-- <el-form-item class="fr" v-if="ruleForm.state === '0'" >
- <el-button
- :size="'mini'"
- type="danger"
- @click="submitForm('8')"
- >驳回并下线
- </el-button>
- </el-form-item> -->
- </el-col>
- <el-col :span="24" v-if="ruleForm.state === '1'"
- ><el-form-item label="平台商品编码" prop="plat_code" >
- <el-input
- v-model="ruleForm.plat_code"
- placeholder="平台商品编码"
- maxlength="100"
- ></el-input>
- </el-form-item>
- </el-col>
-
- </el-row>
- </el-form>
- </template>
- <script>
- import costFormAddEdit from "./costFormAddEdit";
- import asyncRequest from "@/apis/service/goodStore/goodsOnline";
- export default {
- name: "exam-form",
- props: [
- "size",
- "statusList",
- "disabled",
- "isMust",
- "labelWidth",
- "id",
- "code",
- ],
- components: {
- costFormAddEdit,
- },
- /**
- * 属性集合
- * @param {String} size : 组件大小 非必填
- * @param {Array} statusList : 驳回至备选项 必填
- * @param {Boolean} disabled : 是否禁用 必填
- * @param {Boolean} isMust : 是否需要展示驳回节点 必填
- *
- *
- */
- /**
- * 事件集合
- * @searchChange : 选中值变化调用 抛出选中数据
- */
- data() {
- return {
- stateList: [
- {
- value: "1",
- label: "通过",
- },
- {
- value: "0",
- label: "驳回",
- },
- ],
- loading: false,
- showModelThis: this.showModel,
- pickerOptions: {
- disabledDate(time) {
- return time.getTime() < Date.now() - 60 * 60 * 24 * 1000;
- },
- },
- ruleForm: {
- state: "1", // 通过or驳回
- remark: "",
- plat_code: "",
- },
- rulesThis: this.rules,
- rules: {
- plat_code: [
- {
- required: true,
- message: "平台商品编码不能为空",
- trigger: "blur",
- },
-
- ],
- state: [
- {
- required: true,
- message: "请选择审核状态",
- trigger: "change",
- },
- ],
- remark: [
- { required: true, message: "请输入审核备注", trigger: "blur" },
- {
- min: 1,
- max: 250,
- message: "长度在 1 到 250 个字符",
- trigger: "blur",
- },
- ],
- },
- };
- },
- newTime: function (val) {
- if (val) {
- this.initForm();
- }
- },
- mounted() {
- this.initForm();
- },
- methods: {
- 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 = {
- plat_code: this.code || "",
- state: "1", // 通过or驳回
- remark: "",
- };
- }
- });
- },
- async submitForm(numStatus) {
- this.ruleForm.numStatus = numStatus;
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- let model = JSON.parse(JSON.stringify(this.ruleForm));
- // 刷新
- this.$emit("resSuccess", model);
- // this.routeReGoto("goodsOnline", {});
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .demo-ruleForm-goodsOnline {
- .shangchuan-ul {
- li {
- position: relative;
- width: 100%;
- &.tupian {
- }
- }
- }
- }
- </style>
|