|
@@ -8,9 +8,9 @@
|
|
|
:process-status="finishStatus"
|
|
|
>
|
|
|
<el-step
|
|
|
- icon="el-icon-success"
|
|
|
v-for="(item, index) in options"
|
|
|
:key="item.time + index"
|
|
|
+ icon="el-icon-success"
|
|
|
:finish-status="finishStatus"
|
|
|
:process-status="finishStatus"
|
|
|
style="margin: 0 0 0 150px; position: relative"
|
|
@@ -23,9 +23,9 @@
|
|
|
</div>
|
|
|
|
|
|
<div
|
|
|
+ v-if="index + 1 !== options.length"
|
|
|
slot="description"
|
|
|
style="padding: 20px 0 0 0"
|
|
|
- v-if="index + 1 !== options.length"
|
|
|
>
|
|
|
<p class="name">
|
|
|
操 作 人 :
|
|
@@ -35,6 +35,10 @@
|
|
|
账号来源:
|
|
|
{{ item.source + "" === "2" ? "供应商端" : "采销平台" }}
|
|
|
</p>
|
|
|
+ <p class="item">
|
|
|
+ 账号等级:
|
|
|
+ {{ item.level + "" === "1" ? "超管" : item.level + "" === "2" ? "业务公司" : "供应商" }}
|
|
|
+ </p>
|
|
|
<p class="time">
|
|
|
{{ item.addtime }}
|
|
|
</p>
|
|
@@ -45,48 +49,48 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import asyncRequest from "@/apis/components/process-time-line";
|
|
|
-import resToken from "@/mixins/resToken";
|
|
|
+import asyncRequest from '@/apis/components/process-time-line'
|
|
|
+import resToken from '@/mixins/resToken'
|
|
|
export default {
|
|
|
- name: "processTimeLine",
|
|
|
- props: ["type", "orderCode", "newTime"],
|
|
|
+ name: 'ProcessTimeLine',
|
|
|
mixins: [resToken],
|
|
|
+ props: ['type', 'orderCode', 'newTime'],
|
|
|
data() {
|
|
|
return {
|
|
|
options: [],
|
|
|
- loading: false,
|
|
|
- };
|
|
|
+ loading: false
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
- newTime: function (val) {
|
|
|
+ newTime: function(val) {
|
|
|
if (val) {
|
|
|
- this.getList();
|
|
|
+ this.getList()
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.getList();
|
|
|
+ this.getList()
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
async getList() {
|
|
|
if (!this.loading) {
|
|
|
- this.loading = true;
|
|
|
- this.options = [];
|
|
|
+ this.loading = true
|
|
|
+ this.options = []
|
|
|
const res = await asyncRequest.list({
|
|
|
type: this.type,
|
|
|
- orderCode: this.orderCode,
|
|
|
- });
|
|
|
+ orderCode: this.orderCode
|
|
|
+ })
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
- this.options = res.data;
|
|
|
+ this.options = res.data
|
|
|
} else {
|
|
|
- this.options = [];
|
|
|
+ this.options = []
|
|
|
}
|
|
|
- this.loading = false;
|
|
|
+ this.loading = false
|
|
|
}
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
<style lang="scss">
|
|
|
.date-picker.el-input {
|