|
@@ -15,8 +15,7 @@
|
|
|
<!-- <p>orderCode{{ sitem }}</p> -->
|
|
|
<!-- <p>outCode{{ outCode }}</p> -->
|
|
|
|
|
|
-
|
|
|
- <el-card style="margin-top: -20px" v-loading="loading">
|
|
|
+ <el-card v-loading="loading" style="margin-top: -20px">
|
|
|
<add-edit-form-a
|
|
|
v-if="showModel"
|
|
|
:id="id"
|
|
@@ -30,60 +29,60 @@
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import addEditFormA from "./addEditFormA";
|
|
|
+import addEditFormA from './addEditFormA'
|
|
|
export default {
|
|
|
- name: "handover",
|
|
|
- props: ["showModel", "id", "isDetail", "sitem"],
|
|
|
+ name: 'Handover',
|
|
|
components: {
|
|
|
- addEditFormA,
|
|
|
+ addEditFormA
|
|
|
},
|
|
|
+ props: ['showModel', 'id', 'isDetail', 'sitem'],
|
|
|
data() {
|
|
|
return {
|
|
|
sitem: null,
|
|
|
- title: "",
|
|
|
- showModelThis: this.showModel,
|
|
|
- };
|
|
|
+ title: '',
|
|
|
+ showModelThis: this.showModel
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
- showModel: function (val) {
|
|
|
- this.showModelThis = val;
|
|
|
+ showModel: function(val) {
|
|
|
+ this.showModelThis = val
|
|
|
if (val) {
|
|
|
- this.initForm();
|
|
|
+ this.initForm()
|
|
|
}
|
|
|
},
|
|
|
showModelThis(val) {
|
|
|
if (!val) {
|
|
|
- this.$emit("cancel");
|
|
|
+ this.$emit('cancel')
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
-
|
|
|
+
|
|
|
async initForm() {
|
|
|
- this.loading = true;
|
|
|
- if (this.id === "add") {
|
|
|
- this.title = "新建售后申请";
|
|
|
- this.rulesThis = this.rules;
|
|
|
+ this.loading = true
|
|
|
+ if (this.id === 'add') {
|
|
|
+ this.title = '新建售后申请'
|
|
|
+ this.rulesThis = this.rules
|
|
|
} else {
|
|
|
if (this.isDetail) {
|
|
|
- this.rulesThis = {};
|
|
|
+ this.rulesThis = {}
|
|
|
} else {
|
|
|
- this.rulesThis = this.rules;
|
|
|
+ this.rulesThis = this.rules
|
|
|
}
|
|
|
}
|
|
|
- this.loading = false;
|
|
|
+ this.loading = false
|
|
|
},
|
|
|
handClick(e) {
|
|
|
- console.log(e);
|
|
|
- this.showModelThis = e;
|
|
|
+ console.log(e)
|
|
|
+ this.showModelThis = e
|
|
|
},
|
|
|
refresh(e) {
|
|
|
- console.log(e);
|
|
|
- this.showModelThis = e;
|
|
|
- this.$emit("refresh", true);
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
+ console.log(e)
|
|
|
+ this.showModelThis = e
|
|
|
+ this.$emit('refresh', true)
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|