|
@@ -105,7 +105,7 @@
|
105
|
105
|
{{ getGoodUnit(scope.row.good_unit) }}
|
106
|
106
|
</template>
|
107
|
107
|
</el-table-column> -->
|
108
|
|
- <el-table-column label="零售价" width="60" align="center">
|
|
108
|
+ <el-table-column label="零售价" width="100" align="center">
|
109
|
109
|
<template slot-scope="scope">
|
110
|
110
|
{{ scope.row.retail_price }}
|
111
|
111
|
</template>
|
|
@@ -124,18 +124,18 @@
|
124
|
124
|
|
125
|
125
|
</el-table-column>
|
126
|
126
|
|
127
|
|
- <el-table-column prop="date" label="操作" width="300" align="center">
|
|
127
|
+ <el-table-column prop="date" label="操作" width="320" align="center">
|
128
|
128
|
<template slot-scope="scope">
|
129
|
129
|
<el-button @click="handleGoodInfoEdit(scope.$index, scope.row)" type="primary" size="small">编辑</el-button>
|
130
|
130
|
<!--<el-button type="primary" size="small" @click="clickSelfPayment(scope.row.id)">自付比例</el-button>-->
|
131
|
131
|
<el-button type="danger" size="small" @click="handleGoodInfoDelete(scope.$index, scope.row)">删除</el-button>
|
132
|
132
|
|
133
|
|
- <el-button type="primary" size="small" icon="el-icon-refresh-left" @click="toReturn(scope.row.id,scope.row.is_mark)" v-if="$store.getters.xt_user.org_id == 9504 || $store.getters.xt_user.org_id == 10028 || $store.getters.xt_user.org_id == 10138">
|
|
133
|
+ <el-button type="primary" size="small" @click="toReturn(scope.row.id,scope.row.is_mark)" v-if="$store.getters.xt_user.org_id == 9504 || $store.getters.xt_user.org_id == 10028 || $store.getters.xt_user.org_id == 10138">
|
134
|
134
|
<span v-if="scope.row.is_mark == 0">备案</span>
|
135
|
135
|
<span v-if="scope.row.is_mark == 1">撤销</span>
|
136
|
136
|
</el-button>
|
137
|
137
|
|
138
|
|
- <el-button type="primary" size="small" icon="el-icon-refresh-left" v-if="$store.getters.xt_user.org_id != 9504 && $store.getters.xt_user.org_id != 10028">
|
|
138
|
+ <el-button type="primary" size="small" v-if="$store.getters.xt_user.org_id != 9504 && $store.getters.xt_user.org_id != 10028">
|
139
|
139
|
<span v-if="scope.row.is_mark == 0 || scope.row.is_mark == 2" @click="putOnRecord(scope.row.id)" >目录对照</span>
|
140
|
140
|
<span v-if="scope.row.is_mark == 1" @click="putOnUnRecord(scope.row.id)" >撤消对照</span>
|
141
|
141
|
</el-button>
|